Dual boot /w Win, want to change my Xubuntu to Ubuntu
![Creative The name of the picture](https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgO9GURib1T8z7lCwjOGLQaGtrueEthgQ8LO42ZX8cOfTqDK4jvDDpKkLFwf2J49kYCMNW7d4ABih_XCb_2UXdq5fPJDkoyg7-8g_YfRUot-XnaXkNYycsNp7lA5_TW9td0FFpLQ2APzKcZ/s1600/1.jpg)
![Creative The name of the picture](https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhYQ0N5W1qAOxLP7t7iOM6O6AzbZnkXUy16s7P_CWfOb5UbTQY_aDsc727chyphenhyphen5W4IppVNernMMQeaUFTB_rFzAd95_CDt-tnwN-nBx6JyUp2duGjPaL5-VgNO41AVsA_vu30EJcipdDG409/s400/Clash+Royale+CLAN+TAG%2523URR8PPP.png)
up vote
1
down vote
favorite
Dual boot /w Win, want to change my Xubuntu to Ubuntu.
What would be the most convenient way to do that? I want the system to be as bloat-free as possible, so I went as far as thinking about formatting Xubuntu completely just to install Ubuntu from scratch.
Also, how would I do that without destroying my Win partitions, and keeping the Grub intact?
Edit:
And what if all I'm doing is changing the DE, does purging xfce4 really removes everything that is unnecessary?
dual-boot grub2 partitioning xubuntu
add a comment |Â
up vote
1
down vote
favorite
Dual boot /w Win, want to change my Xubuntu to Ubuntu.
What would be the most convenient way to do that? I want the system to be as bloat-free as possible, so I went as far as thinking about formatting Xubuntu completely just to install Ubuntu from scratch.
Also, how would I do that without destroying my Win partitions, and keeping the Grub intact?
Edit:
And what if all I'm doing is changing the DE, does purging xfce4 really removes everything that is unnecessary?
dual-boot grub2 partitioning xubuntu
add a comment |Â
up vote
1
down vote
favorite
up vote
1
down vote
favorite
Dual boot /w Win, want to change my Xubuntu to Ubuntu.
What would be the most convenient way to do that? I want the system to be as bloat-free as possible, so I went as far as thinking about formatting Xubuntu completely just to install Ubuntu from scratch.
Also, how would I do that without destroying my Win partitions, and keeping the Grub intact?
Edit:
And what if all I'm doing is changing the DE, does purging xfce4 really removes everything that is unnecessary?
dual-boot grub2 partitioning xubuntu
Dual boot /w Win, want to change my Xubuntu to Ubuntu.
What would be the most convenient way to do that? I want the system to be as bloat-free as possible, so I went as far as thinking about formatting Xubuntu completely just to install Ubuntu from scratch.
Also, how would I do that without destroying my Win partitions, and keeping the Grub intact?
Edit:
And what if all I'm doing is changing the DE, does purging xfce4 really removes everything that is unnecessary?
dual-boot grub2 partitioning xubuntu
asked May 21 at 10:04
Ereus
62
62
add a comment |Â
add a comment |Â
1 Answer
1
active
oldest
votes
up vote
0
down vote
It's quite easy to switch from Xubuntu to regular Ubuntu desktop. You don't need to format anything, neither to mess with grub
, so there's any risk.
The core system is the same, so there's no reason to remove it and put it there again.
You just need to install the ubuntu-desktop
package, and then remove the xubuntu-desktop
package and its dependencies.
Switching from one desktop environment to the other
Here's how you can do it (replace apt
with apt-get
if running a release prior of Ubuntu 16.04):
Open a terminal, and type (it may take a lot of time, since it needs to download and install several packages):
sudo apt install ubuntu-desktop
Once it's done, remove
xubuntu-desktop
and its dependencies:sudo apt purge xubuntu-desktop
sudo apt autoremoveIf everything went fine, run
sudo apt clean
to recover some space and then reboot, so the system will run the new login manager.
With a plain, unmodified system, this should be enough.
Dealing with manually installed packages
Anyways usually you install some more packages to add functionalities to your desktop, and you may don't need them any more after the switch to ubuntu-desktop
.
Packages that depended on Xfce should already be removed with it, but may be a few packages independent of the desktop environment that you may want to remove.
You can see a list of manually installed packages with the command:
apt-mark showmanual
Give a look at this list, and if you spot something you remember you installed when using Xubuntu and that you think won't need any more, remove it and its dependencies with something like:
sudo apt purge packagename
sudo apt autoremove
Obviously, don't remove packages if apt
tells you that they are dependencies of the ubuntu-desktop
package.
If you don't remember what a package does, you can get a description with:
apt show packagename
If unsure, leave a package as it is. If unused, it won't do any harm, apart from taking a little space on your drive.
Isn'tapt
the older package manager of the two? I tried running the commands but for some reason, even after rebooting the system, I still have Xubuntu (even though trying to purge it again tells me I have no such package). Very strange!
â Ereus
May 21 at 14:53
Oh, I just change to "Other" and it let me to login, with the same login, but this time into Ubuntu! Unfortunately, I still see Xubuntu icons on login, though. I guess a clean install is my only chance...
â Ereus
May 21 at 15:29
Probably some of the files related to your previous sessions are still there. Don't worry, they won't hurt. Some of them are in your home directory, tracking your last used DE, some of them are system wide.
â gerlos
May 21 at 16:32
As said above, it's also possible that some Xfce related packages were marked as "manually installed". Give a look atapt-mark showmanual
and remove some of them. You can also try to remove some packages required by xubuntu-desktop such asxfce4-panel
andxfce4-session
and then useapt autoremove
to trigger the removal of related packages (answer yes when prompted to remove them!). Anyways, those files won't harm your system. Don't be paranoic. There's nothing "dirty". This is not Windows, you don't need to format and reinstall.
â gerlos
May 21 at 16:43
add a comment |Â
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
0
down vote
It's quite easy to switch from Xubuntu to regular Ubuntu desktop. You don't need to format anything, neither to mess with grub
, so there's any risk.
The core system is the same, so there's no reason to remove it and put it there again.
You just need to install the ubuntu-desktop
package, and then remove the xubuntu-desktop
package and its dependencies.
Switching from one desktop environment to the other
Here's how you can do it (replace apt
with apt-get
if running a release prior of Ubuntu 16.04):
Open a terminal, and type (it may take a lot of time, since it needs to download and install several packages):
sudo apt install ubuntu-desktop
Once it's done, remove
xubuntu-desktop
and its dependencies:sudo apt purge xubuntu-desktop
sudo apt autoremoveIf everything went fine, run
sudo apt clean
to recover some space and then reboot, so the system will run the new login manager.
With a plain, unmodified system, this should be enough.
Dealing with manually installed packages
Anyways usually you install some more packages to add functionalities to your desktop, and you may don't need them any more after the switch to ubuntu-desktop
.
Packages that depended on Xfce should already be removed with it, but may be a few packages independent of the desktop environment that you may want to remove.
You can see a list of manually installed packages with the command:
apt-mark showmanual
Give a look at this list, and if you spot something you remember you installed when using Xubuntu and that you think won't need any more, remove it and its dependencies with something like:
sudo apt purge packagename
sudo apt autoremove
Obviously, don't remove packages if apt
tells you that they are dependencies of the ubuntu-desktop
package.
If you don't remember what a package does, you can get a description with:
apt show packagename
If unsure, leave a package as it is. If unused, it won't do any harm, apart from taking a little space on your drive.
Isn'tapt
the older package manager of the two? I tried running the commands but for some reason, even after rebooting the system, I still have Xubuntu (even though trying to purge it again tells me I have no such package). Very strange!
â Ereus
May 21 at 14:53
Oh, I just change to "Other" and it let me to login, with the same login, but this time into Ubuntu! Unfortunately, I still see Xubuntu icons on login, though. I guess a clean install is my only chance...
â Ereus
May 21 at 15:29
Probably some of the files related to your previous sessions are still there. Don't worry, they won't hurt. Some of them are in your home directory, tracking your last used DE, some of them are system wide.
â gerlos
May 21 at 16:32
As said above, it's also possible that some Xfce related packages were marked as "manually installed". Give a look atapt-mark showmanual
and remove some of them. You can also try to remove some packages required by xubuntu-desktop such asxfce4-panel
andxfce4-session
and then useapt autoremove
to trigger the removal of related packages (answer yes when prompted to remove them!). Anyways, those files won't harm your system. Don't be paranoic. There's nothing "dirty". This is not Windows, you don't need to format and reinstall.
â gerlos
May 21 at 16:43
add a comment |Â
up vote
0
down vote
It's quite easy to switch from Xubuntu to regular Ubuntu desktop. You don't need to format anything, neither to mess with grub
, so there's any risk.
The core system is the same, so there's no reason to remove it and put it there again.
You just need to install the ubuntu-desktop
package, and then remove the xubuntu-desktop
package and its dependencies.
Switching from one desktop environment to the other
Here's how you can do it (replace apt
with apt-get
if running a release prior of Ubuntu 16.04):
Open a terminal, and type (it may take a lot of time, since it needs to download and install several packages):
sudo apt install ubuntu-desktop
Once it's done, remove
xubuntu-desktop
and its dependencies:sudo apt purge xubuntu-desktop
sudo apt autoremoveIf everything went fine, run
sudo apt clean
to recover some space and then reboot, so the system will run the new login manager.
With a plain, unmodified system, this should be enough.
Dealing with manually installed packages
Anyways usually you install some more packages to add functionalities to your desktop, and you may don't need them any more after the switch to ubuntu-desktop
.
Packages that depended on Xfce should already be removed with it, but may be a few packages independent of the desktop environment that you may want to remove.
You can see a list of manually installed packages with the command:
apt-mark showmanual
Give a look at this list, and if you spot something you remember you installed when using Xubuntu and that you think won't need any more, remove it and its dependencies with something like:
sudo apt purge packagename
sudo apt autoremove
Obviously, don't remove packages if apt
tells you that they are dependencies of the ubuntu-desktop
package.
If you don't remember what a package does, you can get a description with:
apt show packagename
If unsure, leave a package as it is. If unused, it won't do any harm, apart from taking a little space on your drive.
Isn'tapt
the older package manager of the two? I tried running the commands but for some reason, even after rebooting the system, I still have Xubuntu (even though trying to purge it again tells me I have no such package). Very strange!
â Ereus
May 21 at 14:53
Oh, I just change to "Other" and it let me to login, with the same login, but this time into Ubuntu! Unfortunately, I still see Xubuntu icons on login, though. I guess a clean install is my only chance...
â Ereus
May 21 at 15:29
Probably some of the files related to your previous sessions are still there. Don't worry, they won't hurt. Some of them are in your home directory, tracking your last used DE, some of them are system wide.
â gerlos
May 21 at 16:32
As said above, it's also possible that some Xfce related packages were marked as "manually installed". Give a look atapt-mark showmanual
and remove some of them. You can also try to remove some packages required by xubuntu-desktop such asxfce4-panel
andxfce4-session
and then useapt autoremove
to trigger the removal of related packages (answer yes when prompted to remove them!). Anyways, those files won't harm your system. Don't be paranoic. There's nothing "dirty". This is not Windows, you don't need to format and reinstall.
â gerlos
May 21 at 16:43
add a comment |Â
up vote
0
down vote
up vote
0
down vote
It's quite easy to switch from Xubuntu to regular Ubuntu desktop. You don't need to format anything, neither to mess with grub
, so there's any risk.
The core system is the same, so there's no reason to remove it and put it there again.
You just need to install the ubuntu-desktop
package, and then remove the xubuntu-desktop
package and its dependencies.
Switching from one desktop environment to the other
Here's how you can do it (replace apt
with apt-get
if running a release prior of Ubuntu 16.04):
Open a terminal, and type (it may take a lot of time, since it needs to download and install several packages):
sudo apt install ubuntu-desktop
Once it's done, remove
xubuntu-desktop
and its dependencies:sudo apt purge xubuntu-desktop
sudo apt autoremoveIf everything went fine, run
sudo apt clean
to recover some space and then reboot, so the system will run the new login manager.
With a plain, unmodified system, this should be enough.
Dealing with manually installed packages
Anyways usually you install some more packages to add functionalities to your desktop, and you may don't need them any more after the switch to ubuntu-desktop
.
Packages that depended on Xfce should already be removed with it, but may be a few packages independent of the desktop environment that you may want to remove.
You can see a list of manually installed packages with the command:
apt-mark showmanual
Give a look at this list, and if you spot something you remember you installed when using Xubuntu and that you think won't need any more, remove it and its dependencies with something like:
sudo apt purge packagename
sudo apt autoremove
Obviously, don't remove packages if apt
tells you that they are dependencies of the ubuntu-desktop
package.
If you don't remember what a package does, you can get a description with:
apt show packagename
If unsure, leave a package as it is. If unused, it won't do any harm, apart from taking a little space on your drive.
It's quite easy to switch from Xubuntu to regular Ubuntu desktop. You don't need to format anything, neither to mess with grub
, so there's any risk.
The core system is the same, so there's no reason to remove it and put it there again.
You just need to install the ubuntu-desktop
package, and then remove the xubuntu-desktop
package and its dependencies.
Switching from one desktop environment to the other
Here's how you can do it (replace apt
with apt-get
if running a release prior of Ubuntu 16.04):
Open a terminal, and type (it may take a lot of time, since it needs to download and install several packages):
sudo apt install ubuntu-desktop
Once it's done, remove
xubuntu-desktop
and its dependencies:sudo apt purge xubuntu-desktop
sudo apt autoremoveIf everything went fine, run
sudo apt clean
to recover some space and then reboot, so the system will run the new login manager.
With a plain, unmodified system, this should be enough.
Dealing with manually installed packages
Anyways usually you install some more packages to add functionalities to your desktop, and you may don't need them any more after the switch to ubuntu-desktop
.
Packages that depended on Xfce should already be removed with it, but may be a few packages independent of the desktop environment that you may want to remove.
You can see a list of manually installed packages with the command:
apt-mark showmanual
Give a look at this list, and if you spot something you remember you installed when using Xubuntu and that you think won't need any more, remove it and its dependencies with something like:
sudo apt purge packagename
sudo apt autoremove
Obviously, don't remove packages if apt
tells you that they are dependencies of the ubuntu-desktop
package.
If you don't remember what a package does, you can get a description with:
apt show packagename
If unsure, leave a package as it is. If unused, it won't do any harm, apart from taking a little space on your drive.
answered May 21 at 11:12
gerlos
1,1001015
1,1001015
Isn'tapt
the older package manager of the two? I tried running the commands but for some reason, even after rebooting the system, I still have Xubuntu (even though trying to purge it again tells me I have no such package). Very strange!
â Ereus
May 21 at 14:53
Oh, I just change to "Other" and it let me to login, with the same login, but this time into Ubuntu! Unfortunately, I still see Xubuntu icons on login, though. I guess a clean install is my only chance...
â Ereus
May 21 at 15:29
Probably some of the files related to your previous sessions are still there. Don't worry, they won't hurt. Some of them are in your home directory, tracking your last used DE, some of them are system wide.
â gerlos
May 21 at 16:32
As said above, it's also possible that some Xfce related packages were marked as "manually installed". Give a look atapt-mark showmanual
and remove some of them. You can also try to remove some packages required by xubuntu-desktop such asxfce4-panel
andxfce4-session
and then useapt autoremove
to trigger the removal of related packages (answer yes when prompted to remove them!). Anyways, those files won't harm your system. Don't be paranoic. There's nothing "dirty". This is not Windows, you don't need to format and reinstall.
â gerlos
May 21 at 16:43
add a comment |Â
Isn'tapt
the older package manager of the two? I tried running the commands but for some reason, even after rebooting the system, I still have Xubuntu (even though trying to purge it again tells me I have no such package). Very strange!
â Ereus
May 21 at 14:53
Oh, I just change to "Other" and it let me to login, with the same login, but this time into Ubuntu! Unfortunately, I still see Xubuntu icons on login, though. I guess a clean install is my only chance...
â Ereus
May 21 at 15:29
Probably some of the files related to your previous sessions are still there. Don't worry, they won't hurt. Some of them are in your home directory, tracking your last used DE, some of them are system wide.
â gerlos
May 21 at 16:32
As said above, it's also possible that some Xfce related packages were marked as "manually installed". Give a look atapt-mark showmanual
and remove some of them. You can also try to remove some packages required by xubuntu-desktop such asxfce4-panel
andxfce4-session
and then useapt autoremove
to trigger the removal of related packages (answer yes when prompted to remove them!). Anyways, those files won't harm your system. Don't be paranoic. There's nothing "dirty". This is not Windows, you don't need to format and reinstall.
â gerlos
May 21 at 16:43
Isn't
apt
the older package manager of the two? I tried running the commands but for some reason, even after rebooting the system, I still have Xubuntu (even though trying to purge it again tells me I have no such package). Very strange!â Ereus
May 21 at 14:53
Isn't
apt
the older package manager of the two? I tried running the commands but for some reason, even after rebooting the system, I still have Xubuntu (even though trying to purge it again tells me I have no such package). Very strange!â Ereus
May 21 at 14:53
Oh, I just change to "Other" and it let me to login, with the same login, but this time into Ubuntu! Unfortunately, I still see Xubuntu icons on login, though. I guess a clean install is my only chance...
â Ereus
May 21 at 15:29
Oh, I just change to "Other" and it let me to login, with the same login, but this time into Ubuntu! Unfortunately, I still see Xubuntu icons on login, though. I guess a clean install is my only chance...
â Ereus
May 21 at 15:29
Probably some of the files related to your previous sessions are still there. Don't worry, they won't hurt. Some of them are in your home directory, tracking your last used DE, some of them are system wide.
â gerlos
May 21 at 16:32
Probably some of the files related to your previous sessions are still there. Don't worry, they won't hurt. Some of them are in your home directory, tracking your last used DE, some of them are system wide.
â gerlos
May 21 at 16:32
As said above, it's also possible that some Xfce related packages were marked as "manually installed". Give a look at
apt-mark showmanual
and remove some of them. You can also try to remove some packages required by xubuntu-desktop such as xfce4-panel
and xfce4-session
and then use apt autoremove
to trigger the removal of related packages (answer yes when prompted to remove them!). Anyways, those files won't harm your system. Don't be paranoic. There's nothing "dirty". This is not Windows, you don't need to format and reinstall.â gerlos
May 21 at 16:43
As said above, it's also possible that some Xfce related packages were marked as "manually installed". Give a look at
apt-mark showmanual
and remove some of them. You can also try to remove some packages required by xubuntu-desktop such as xfce4-panel
and xfce4-session
and then use apt autoremove
to trigger the removal of related packages (answer yes when prompted to remove them!). Anyways, those files won't harm your system. Don't be paranoic. There's nothing "dirty". This is not Windows, you don't need to format and reinstall.â gerlos
May 21 at 16:43
add a comment |Â
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1038636%2fdual-boot-w-win-want-to-change-my-xubuntu-to-ubuntu%23new-answer', 'question_page');
);
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password