Can I change my Ubuntu Desktop into a different flavour (like Kubuntu)?
![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
16
down vote
favorite
Can I convert Ubuntu into another form of Ubuntu like Kubuntu or Ubuntu Studio and the system recognize itself as the new form?
UPDATE: After getting an answer and talking with people, I managed to gain a lot of information on this topic. I then wrote an article about converting between Ubuntu systems - Converting between the Ubuntus.
software-installation kubuntu desktop-environments
add a comment |Â
up vote
16
down vote
favorite
Can I convert Ubuntu into another form of Ubuntu like Kubuntu or Ubuntu Studio and the system recognize itself as the new form?
UPDATE: After getting an answer and talking with people, I managed to gain a lot of information on this topic. I then wrote an article about converting between Ubuntu systems - Converting between the Ubuntus.
software-installation kubuntu desktop-environments
2
Related/possible duplicate: askubuntu.com/questions/65083/â¦
â Glutanimate
Jun 10 '13 at 1:20
add a comment |Â
up vote
16
down vote
favorite
up vote
16
down vote
favorite
Can I convert Ubuntu into another form of Ubuntu like Kubuntu or Ubuntu Studio and the system recognize itself as the new form?
UPDATE: After getting an answer and talking with people, I managed to gain a lot of information on this topic. I then wrote an article about converting between Ubuntu systems - Converting between the Ubuntus.
software-installation kubuntu desktop-environments
Can I convert Ubuntu into another form of Ubuntu like Kubuntu or Ubuntu Studio and the system recognize itself as the new form?
UPDATE: After getting an answer and talking with people, I managed to gain a lot of information on this topic. I then wrote an article about converting between Ubuntu systems - Converting between the Ubuntus.
software-installation kubuntu desktop-environments
edited Jun 5 at 16:56
![](https://i.stack.imgur.com/izLpu.png?s=32&g=1)
![](https://i.stack.imgur.com/izLpu.png?s=32&g=1)
Broadsworde
695720
695720
asked Jun 10 '13 at 0:53
Devyn Collier Johnson
7702928
7702928
2
Related/possible duplicate: askubuntu.com/questions/65083/â¦
â Glutanimate
Jun 10 '13 at 1:20
add a comment |Â
2
Related/possible duplicate: askubuntu.com/questions/65083/â¦
â Glutanimate
Jun 10 '13 at 1:20
2
2
Related/possible duplicate: askubuntu.com/questions/65083/â¦
â Glutanimate
Jun 10 '13 at 1:20
Related/possible duplicate: askubuntu.com/questions/65083/â¦
â Glutanimate
Jun 10 '13 at 1:20
add a comment |Â
3 Answers
3
active
oldest
votes
up vote
28
down vote
accepted
The main difference between main Ubuntu, Xubuntu, Kubuntu, and Lubuntu is the Desktop Environment. You can install one of these DEs onto your system with the following commands:
Ubuntu:
sudo apt-get install ubuntu-desktop
Kubuntu:
sudo apt-get install kubuntu-desktop
Xubuntu:
sudo apt-get install xubuntu-desktop
Lubuntu:
sudo apt-get install lubuntu-desktop
Ubuntu GNOME:
sudo apt-get install ubuntu-gnome-desktop
From Ubuntu 17.10 GNOME became the default desktop environment/shell/manager.
So if you're running Ubuntu 17.10 forwards (including current 18.04), you can install the default desktop:
$ sudo apt install ubuntu-desktop
To remove any of these, run the command that you used to install but instead ofinstall
say purge
(i.e., sudo apt-get purge kubuntu-desktop
). Then you also need to run this command to complete the remove:
sudo apt-get autoremove --purge
The autoremove command removes all the packages that were installed. The way these installs work is that there is one meta-package that just depends on every package that is required for that Desktop Environment. Thus the extra packages aren't removed when the meta package is, and you need to remove them with autoremove.
This will install the Desktop Environment and most programs for each of the flavors of Ubuntu, though sometimes there are programs that are not installed by this. An install switched by using these commands will not be the same as a clean install of the Ubuntu flavor, though it should be pretty close. There is also no limit as to having more then one of these Desktop Environments. I personally kept both ubuntu-desktop and ubuntu-gnome-desktop on my computer for a while just to compare.
I do not know about a changing to/from a Ubuntu Studio install, though I am pretty sure it isn't as easy as just changing the Desktop Environment.
add a comment |Â
up vote
3
down vote
You can also keep them all, and choose which one you want to log in to. That's a good way to compare, just switch every time you boot. Every file you're created will be in the same place, every application you installed for one flavor will be available in the others.
Hi, How can I have different ubuntu flavours share the applications installed?
â BKS
Oct 6 '16 at 7:20
add a comment |Â
up vote
2
down vote
Ubuntu Desktop Flavours
https://www.ubuntu.com/download/flavours
Flavours:
Default (Gnome (17.10 - present)) ubuntu-desktop
Budgie (simple/elegant) budgie-desktop
Kubuntu (KDE Plasma) kubuntu-desktop
Kylin (elegant Chinese) ubuntukylin-desktop
Lubuntu (LXQt - light/fast) lubuntu-desktop
MATE (GNOME 2 fork) mate-desktop
Studio (Multimedia) ubuntustudio-desktop
Xubuntu (XFce - light/configurable) xubuntu-desktop
Install Alternative Desktop Flavour:
(you can install multiple Desktop Flavours, then switch them as required)
sudo apt install [flavour]
Example:
sudo apt install budgie-desktop
Reboot after installing new flavour, then choose that new Desktop Flavour by clicking the Ubuntu icon above the password field on the login screen.
If you want to remove old flavours, make sure you're logged into a session that's not using the flavour you want to remove, then:
sudo apt remove --purge [flavour]
Example:
sudo apt remove --purge ubuntu-desktop
add a comment |Â
3 Answers
3
active
oldest
votes
3 Answers
3
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
28
down vote
accepted
The main difference between main Ubuntu, Xubuntu, Kubuntu, and Lubuntu is the Desktop Environment. You can install one of these DEs onto your system with the following commands:
Ubuntu:
sudo apt-get install ubuntu-desktop
Kubuntu:
sudo apt-get install kubuntu-desktop
Xubuntu:
sudo apt-get install xubuntu-desktop
Lubuntu:
sudo apt-get install lubuntu-desktop
Ubuntu GNOME:
sudo apt-get install ubuntu-gnome-desktop
From Ubuntu 17.10 GNOME became the default desktop environment/shell/manager.
So if you're running Ubuntu 17.10 forwards (including current 18.04), you can install the default desktop:
$ sudo apt install ubuntu-desktop
To remove any of these, run the command that you used to install but instead ofinstall
say purge
(i.e., sudo apt-get purge kubuntu-desktop
). Then you also need to run this command to complete the remove:
sudo apt-get autoremove --purge
The autoremove command removes all the packages that were installed. The way these installs work is that there is one meta-package that just depends on every package that is required for that Desktop Environment. Thus the extra packages aren't removed when the meta package is, and you need to remove them with autoremove.
This will install the Desktop Environment and most programs for each of the flavors of Ubuntu, though sometimes there are programs that are not installed by this. An install switched by using these commands will not be the same as a clean install of the Ubuntu flavor, though it should be pretty close. There is also no limit as to having more then one of these Desktop Environments. I personally kept both ubuntu-desktop and ubuntu-gnome-desktop on my computer for a while just to compare.
I do not know about a changing to/from a Ubuntu Studio install, though I am pretty sure it isn't as easy as just changing the Desktop Environment.
add a comment |Â
up vote
28
down vote
accepted
The main difference between main Ubuntu, Xubuntu, Kubuntu, and Lubuntu is the Desktop Environment. You can install one of these DEs onto your system with the following commands:
Ubuntu:
sudo apt-get install ubuntu-desktop
Kubuntu:
sudo apt-get install kubuntu-desktop
Xubuntu:
sudo apt-get install xubuntu-desktop
Lubuntu:
sudo apt-get install lubuntu-desktop
Ubuntu GNOME:
sudo apt-get install ubuntu-gnome-desktop
From Ubuntu 17.10 GNOME became the default desktop environment/shell/manager.
So if you're running Ubuntu 17.10 forwards (including current 18.04), you can install the default desktop:
$ sudo apt install ubuntu-desktop
To remove any of these, run the command that you used to install but instead ofinstall
say purge
(i.e., sudo apt-get purge kubuntu-desktop
). Then you also need to run this command to complete the remove:
sudo apt-get autoremove --purge
The autoremove command removes all the packages that were installed. The way these installs work is that there is one meta-package that just depends on every package that is required for that Desktop Environment. Thus the extra packages aren't removed when the meta package is, and you need to remove them with autoremove.
This will install the Desktop Environment and most programs for each of the flavors of Ubuntu, though sometimes there are programs that are not installed by this. An install switched by using these commands will not be the same as a clean install of the Ubuntu flavor, though it should be pretty close. There is also no limit as to having more then one of these Desktop Environments. I personally kept both ubuntu-desktop and ubuntu-gnome-desktop on my computer for a while just to compare.
I do not know about a changing to/from a Ubuntu Studio install, though I am pretty sure it isn't as easy as just changing the Desktop Environment.
add a comment |Â
up vote
28
down vote
accepted
up vote
28
down vote
accepted
The main difference between main Ubuntu, Xubuntu, Kubuntu, and Lubuntu is the Desktop Environment. You can install one of these DEs onto your system with the following commands:
Ubuntu:
sudo apt-get install ubuntu-desktop
Kubuntu:
sudo apt-get install kubuntu-desktop
Xubuntu:
sudo apt-get install xubuntu-desktop
Lubuntu:
sudo apt-get install lubuntu-desktop
Ubuntu GNOME:
sudo apt-get install ubuntu-gnome-desktop
From Ubuntu 17.10 GNOME became the default desktop environment/shell/manager.
So if you're running Ubuntu 17.10 forwards (including current 18.04), you can install the default desktop:
$ sudo apt install ubuntu-desktop
To remove any of these, run the command that you used to install but instead ofinstall
say purge
(i.e., sudo apt-get purge kubuntu-desktop
). Then you also need to run this command to complete the remove:
sudo apt-get autoremove --purge
The autoremove command removes all the packages that were installed. The way these installs work is that there is one meta-package that just depends on every package that is required for that Desktop Environment. Thus the extra packages aren't removed when the meta package is, and you need to remove them with autoremove.
This will install the Desktop Environment and most programs for each of the flavors of Ubuntu, though sometimes there are programs that are not installed by this. An install switched by using these commands will not be the same as a clean install of the Ubuntu flavor, though it should be pretty close. There is also no limit as to having more then one of these Desktop Environments. I personally kept both ubuntu-desktop and ubuntu-gnome-desktop on my computer for a while just to compare.
I do not know about a changing to/from a Ubuntu Studio install, though I am pretty sure it isn't as easy as just changing the Desktop Environment.
The main difference between main Ubuntu, Xubuntu, Kubuntu, and Lubuntu is the Desktop Environment. You can install one of these DEs onto your system with the following commands:
Ubuntu:
sudo apt-get install ubuntu-desktop
Kubuntu:
sudo apt-get install kubuntu-desktop
Xubuntu:
sudo apt-get install xubuntu-desktop
Lubuntu:
sudo apt-get install lubuntu-desktop
Ubuntu GNOME:
sudo apt-get install ubuntu-gnome-desktop
From Ubuntu 17.10 GNOME became the default desktop environment/shell/manager.
So if you're running Ubuntu 17.10 forwards (including current 18.04), you can install the default desktop:
$ sudo apt install ubuntu-desktop
To remove any of these, run the command that you used to install but instead ofinstall
say purge
(i.e., sudo apt-get purge kubuntu-desktop
). Then you also need to run this command to complete the remove:
sudo apt-get autoremove --purge
The autoremove command removes all the packages that were installed. The way these installs work is that there is one meta-package that just depends on every package that is required for that Desktop Environment. Thus the extra packages aren't removed when the meta package is, and you need to remove them with autoremove.
This will install the Desktop Environment and most programs for each of the flavors of Ubuntu, though sometimes there are programs that are not installed by this. An install switched by using these commands will not be the same as a clean install of the Ubuntu flavor, though it should be pretty close. There is also no limit as to having more then one of these Desktop Environments. I personally kept both ubuntu-desktop and ubuntu-gnome-desktop on my computer for a while just to compare.
I do not know about a changing to/from a Ubuntu Studio install, though I am pretty sure it isn't as easy as just changing the Desktop Environment.
edited Jun 5 at 19:06
![](https://i.stack.imgur.com/izLpu.png?s=32&g=1)
![](https://i.stack.imgur.com/izLpu.png?s=32&g=1)
Broadsworde
695720
695720
answered Jun 10 '13 at 1:06
daboross
1,33011427
1,33011427
add a comment |Â
add a comment |Â
up vote
3
down vote
You can also keep them all, and choose which one you want to log in to. That's a good way to compare, just switch every time you boot. Every file you're created will be in the same place, every application you installed for one flavor will be available in the others.
Hi, How can I have different ubuntu flavours share the applications installed?
â BKS
Oct 6 '16 at 7:20
add a comment |Â
up vote
3
down vote
You can also keep them all, and choose which one you want to log in to. That's a good way to compare, just switch every time you boot. Every file you're created will be in the same place, every application you installed for one flavor will be available in the others.
Hi, How can I have different ubuntu flavours share the applications installed?
â BKS
Oct 6 '16 at 7:20
add a comment |Â
up vote
3
down vote
up vote
3
down vote
You can also keep them all, and choose which one you want to log in to. That's a good way to compare, just switch every time you boot. Every file you're created will be in the same place, every application you installed for one flavor will be available in the others.
You can also keep them all, and choose which one you want to log in to. That's a good way to compare, just switch every time you boot. Every file you're created will be in the same place, every application you installed for one flavor will be available in the others.
answered Jun 10 '13 at 1:54
![](https://i.stack.imgur.com/ObgIF.jpg?s=32&g=1)
![](https://i.stack.imgur.com/ObgIF.jpg?s=32&g=1)
Marc
5,31321127
5,31321127
Hi, How can I have different ubuntu flavours share the applications installed?
â BKS
Oct 6 '16 at 7:20
add a comment |Â
Hi, How can I have different ubuntu flavours share the applications installed?
â BKS
Oct 6 '16 at 7:20
Hi, How can I have different ubuntu flavours share the applications installed?
â BKS
Oct 6 '16 at 7:20
Hi, How can I have different ubuntu flavours share the applications installed?
â BKS
Oct 6 '16 at 7:20
add a comment |Â
up vote
2
down vote
Ubuntu Desktop Flavours
https://www.ubuntu.com/download/flavours
Flavours:
Default (Gnome (17.10 - present)) ubuntu-desktop
Budgie (simple/elegant) budgie-desktop
Kubuntu (KDE Plasma) kubuntu-desktop
Kylin (elegant Chinese) ubuntukylin-desktop
Lubuntu (LXQt - light/fast) lubuntu-desktop
MATE (GNOME 2 fork) mate-desktop
Studio (Multimedia) ubuntustudio-desktop
Xubuntu (XFce - light/configurable) xubuntu-desktop
Install Alternative Desktop Flavour:
(you can install multiple Desktop Flavours, then switch them as required)
sudo apt install [flavour]
Example:
sudo apt install budgie-desktop
Reboot after installing new flavour, then choose that new Desktop Flavour by clicking the Ubuntu icon above the password field on the login screen.
If you want to remove old flavours, make sure you're logged into a session that's not using the flavour you want to remove, then:
sudo apt remove --purge [flavour]
Example:
sudo apt remove --purge ubuntu-desktop
add a comment |Â
up vote
2
down vote
Ubuntu Desktop Flavours
https://www.ubuntu.com/download/flavours
Flavours:
Default (Gnome (17.10 - present)) ubuntu-desktop
Budgie (simple/elegant) budgie-desktop
Kubuntu (KDE Plasma) kubuntu-desktop
Kylin (elegant Chinese) ubuntukylin-desktop
Lubuntu (LXQt - light/fast) lubuntu-desktop
MATE (GNOME 2 fork) mate-desktop
Studio (Multimedia) ubuntustudio-desktop
Xubuntu (XFce - light/configurable) xubuntu-desktop
Install Alternative Desktop Flavour:
(you can install multiple Desktop Flavours, then switch them as required)
sudo apt install [flavour]
Example:
sudo apt install budgie-desktop
Reboot after installing new flavour, then choose that new Desktop Flavour by clicking the Ubuntu icon above the password field on the login screen.
If you want to remove old flavours, make sure you're logged into a session that's not using the flavour you want to remove, then:
sudo apt remove --purge [flavour]
Example:
sudo apt remove --purge ubuntu-desktop
add a comment |Â
up vote
2
down vote
up vote
2
down vote
Ubuntu Desktop Flavours
https://www.ubuntu.com/download/flavours
Flavours:
Default (Gnome (17.10 - present)) ubuntu-desktop
Budgie (simple/elegant) budgie-desktop
Kubuntu (KDE Plasma) kubuntu-desktop
Kylin (elegant Chinese) ubuntukylin-desktop
Lubuntu (LXQt - light/fast) lubuntu-desktop
MATE (GNOME 2 fork) mate-desktop
Studio (Multimedia) ubuntustudio-desktop
Xubuntu (XFce - light/configurable) xubuntu-desktop
Install Alternative Desktop Flavour:
(you can install multiple Desktop Flavours, then switch them as required)
sudo apt install [flavour]
Example:
sudo apt install budgie-desktop
Reboot after installing new flavour, then choose that new Desktop Flavour by clicking the Ubuntu icon above the password field on the login screen.
If you want to remove old flavours, make sure you're logged into a session that's not using the flavour you want to remove, then:
sudo apt remove --purge [flavour]
Example:
sudo apt remove --purge ubuntu-desktop
Ubuntu Desktop Flavours
https://www.ubuntu.com/download/flavours
Flavours:
Default (Gnome (17.10 - present)) ubuntu-desktop
Budgie (simple/elegant) budgie-desktop
Kubuntu (KDE Plasma) kubuntu-desktop
Kylin (elegant Chinese) ubuntukylin-desktop
Lubuntu (LXQt - light/fast) lubuntu-desktop
MATE (GNOME 2 fork) mate-desktop
Studio (Multimedia) ubuntustudio-desktop
Xubuntu (XFce - light/configurable) xubuntu-desktop
Install Alternative Desktop Flavour:
(you can install multiple Desktop Flavours, then switch them as required)
sudo apt install [flavour]
Example:
sudo apt install budgie-desktop
Reboot after installing new flavour, then choose that new Desktop Flavour by clicking the Ubuntu icon above the password field on the login screen.
If you want to remove old flavours, make sure you're logged into a session that's not using the flavour you want to remove, then:
sudo apt remove --purge [flavour]
Example:
sudo apt remove --purge ubuntu-desktop
edited Aug 9 at 4:35
answered Jun 5 at 15:30
![](https://i.stack.imgur.com/izLpu.png?s=32&g=1)
![](https://i.stack.imgur.com/izLpu.png?s=32&g=1)
Broadsworde
695720
695720
add a comment |Â
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%2f306282%2fcan-i-change-my-ubuntu-desktop-into-a-different-flavour-like-kubuntu%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
2
Related/possible duplicate: askubuntu.com/questions/65083/â¦
â Glutanimate
Jun 10 '13 at 1:20