Remove Budgie desktop in 18.04

Clash Royale CLAN TAG#URR8PPP up vote
1
down vote
favorite
I have had Budgie installed since 16.10, and now I'd like to remove it. The instructions in the answer to Completely remove Budgie are for a system with several desktops installed. The answer to How to uninstall Budgie Desktop is for a version of Ubuntu before it came with Gnome. I just updated to 18.04.
I'm a simple user. I can follow the logic of the instructions of the 2nd linked question above on how to get to the Grub menu and open a terminal there, and I already looked at an article that explained the first few lines of the code that follows that - mounting the drives so they can be written to, updating.
I get lost at apt-get install --reinstall aptitude deborphan ppa-purge.
Should I follow those previous instructions to remove Budgie and switch to Gnome, or is it different now?
desktop-environments ubuntu-gnome budgie
add a comment |Â
up vote
1
down vote
favorite
I have had Budgie installed since 16.10, and now I'd like to remove it. The instructions in the answer to Completely remove Budgie are for a system with several desktops installed. The answer to How to uninstall Budgie Desktop is for a version of Ubuntu before it came with Gnome. I just updated to 18.04.
I'm a simple user. I can follow the logic of the instructions of the 2nd linked question above on how to get to the Grub menu and open a terminal there, and I already looked at an article that explained the first few lines of the code that follows that - mounting the drives so they can be written to, updating.
I get lost at apt-get install --reinstall aptitude deborphan ppa-purge.
Should I follow those previous instructions to remove Budgie and switch to Gnome, or is it different now?
desktop-environments ubuntu-gnome budgie
add a comment |Â
up vote
1
down vote
favorite
up vote
1
down vote
favorite
I have had Budgie installed since 16.10, and now I'd like to remove it. The instructions in the answer to Completely remove Budgie are for a system with several desktops installed. The answer to How to uninstall Budgie Desktop is for a version of Ubuntu before it came with Gnome. I just updated to 18.04.
I'm a simple user. I can follow the logic of the instructions of the 2nd linked question above on how to get to the Grub menu and open a terminal there, and I already looked at an article that explained the first few lines of the code that follows that - mounting the drives so they can be written to, updating.
I get lost at apt-get install --reinstall aptitude deborphan ppa-purge.
Should I follow those previous instructions to remove Budgie and switch to Gnome, or is it different now?
desktop-environments ubuntu-gnome budgie
I have had Budgie installed since 16.10, and now I'd like to remove it. The instructions in the answer to Completely remove Budgie are for a system with several desktops installed. The answer to How to uninstall Budgie Desktop is for a version of Ubuntu before it came with Gnome. I just updated to 18.04.
I'm a simple user. I can follow the logic of the instructions of the 2nd linked question above on how to get to the Grub menu and open a terminal there, and I already looked at an article that explained the first few lines of the code that follows that - mounting the drives so they can be written to, updating.
I get lost at apt-get install --reinstall aptitude deborphan ppa-purge.
Should I follow those previous instructions to remove Budgie and switch to Gnome, or is it different now?
desktop-environments ubuntu-gnome budgie
edited May 15 at 19:23
asked May 15 at 19:05
kim holder
219112
219112
add a comment |Â
add a comment |Â
1 Answer
1
active
oldest
votes
up vote
1
down vote
accepted
Try this:
Start in text-only mode
Switch on your computer. Wait until the BIOS has finished loading, and press and hold Shift, which will bring up the Grub menu.
Select the line which starts with Advanced options.
Select the line ending with (recovTry this:
Start in text-only mode
Switch on your computer. Wait until the BIOS has finished loading, and press and hold Shift, which will bring up the Grub menu.
Select the line which starts with Advanced options.
Select the line ending with (recovery mode)
Press Return and your machine will begin the boot process.
After a few moments, your PC should display a menu with a number of options, including Drop to root shell prompt. Press Return with this option highlighted.
The PC will start in a terminal.
Run these commands:
Mount partitions in read-write mode
mount -o remount,rw /
mount --all
Edited on 20-05-2018
Start networking:
systemctl enable NetworkManager.service
systemctl start NetworkManager.service
Update repositories
apt update
Install aptitude and deborphan
apt install --reinstall aptitude deborphan
Eliminate the components of budgie that are not necessary in Ubuntu
aptitude remove '?and(?reverse-depends(budgie),?not(?reverse-depends(?exact-name(ubuntu-desktop))))'
Reinstall ubuntu-desktop
apt install --reinstall ubuntu-desktop
Eliminate orphan packages
deborphan
apt --purge remove $(deborphan)
deborphan --libdevel
apt --purge remove $(deborphan --libdevel)
deborphan --find-config
dpkg --purge $(deborphan --find-config)
Remove unnecessary packages
apt autoremove
Remove downloaded packages
apt clean
Restart system
reboot
When restarting, remove the budgie ppa.
sudo ppa-purge ppa:budgie-remix/ppa
or
sudo ppa-purge ppa:ubuntubudgie/backports
Thanks - it helps me out to have an explanation for what is happening. It is easy to follow this way too.
â kim holder
May 16 at 2:12
The system couldn't download anything. Can it normally download in recovery mode?
â kim holder
May 16 at 15:43
1
Run: to start networking - systemctl enable NetworkManager.service - systemctl start NetworkManager.service
â kyodake
May 20 at 15:51
add a comment |Â
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
1
down vote
accepted
Try this:
Start in text-only mode
Switch on your computer. Wait until the BIOS has finished loading, and press and hold Shift, which will bring up the Grub menu.
Select the line which starts with Advanced options.
Select the line ending with (recovTry this:
Start in text-only mode
Switch on your computer. Wait until the BIOS has finished loading, and press and hold Shift, which will bring up the Grub menu.
Select the line which starts with Advanced options.
Select the line ending with (recovery mode)
Press Return and your machine will begin the boot process.
After a few moments, your PC should display a menu with a number of options, including Drop to root shell prompt. Press Return with this option highlighted.
The PC will start in a terminal.
Run these commands:
Mount partitions in read-write mode
mount -o remount,rw /
mount --all
Edited on 20-05-2018
Start networking:
systemctl enable NetworkManager.service
systemctl start NetworkManager.service
Update repositories
apt update
Install aptitude and deborphan
apt install --reinstall aptitude deborphan
Eliminate the components of budgie that are not necessary in Ubuntu
aptitude remove '?and(?reverse-depends(budgie),?not(?reverse-depends(?exact-name(ubuntu-desktop))))'
Reinstall ubuntu-desktop
apt install --reinstall ubuntu-desktop
Eliminate orphan packages
deborphan
apt --purge remove $(deborphan)
deborphan --libdevel
apt --purge remove $(deborphan --libdevel)
deborphan --find-config
dpkg --purge $(deborphan --find-config)
Remove unnecessary packages
apt autoremove
Remove downloaded packages
apt clean
Restart system
reboot
When restarting, remove the budgie ppa.
sudo ppa-purge ppa:budgie-remix/ppa
or
sudo ppa-purge ppa:ubuntubudgie/backports
Thanks - it helps me out to have an explanation for what is happening. It is easy to follow this way too.
â kim holder
May 16 at 2:12
The system couldn't download anything. Can it normally download in recovery mode?
â kim holder
May 16 at 15:43
1
Run: to start networking - systemctl enable NetworkManager.service - systemctl start NetworkManager.service
â kyodake
May 20 at 15:51
add a comment |Â
up vote
1
down vote
accepted
Try this:
Start in text-only mode
Switch on your computer. Wait until the BIOS has finished loading, and press and hold Shift, which will bring up the Grub menu.
Select the line which starts with Advanced options.
Select the line ending with (recovTry this:
Start in text-only mode
Switch on your computer. Wait until the BIOS has finished loading, and press and hold Shift, which will bring up the Grub menu.
Select the line which starts with Advanced options.
Select the line ending with (recovery mode)
Press Return and your machine will begin the boot process.
After a few moments, your PC should display a menu with a number of options, including Drop to root shell prompt. Press Return with this option highlighted.
The PC will start in a terminal.
Run these commands:
Mount partitions in read-write mode
mount -o remount,rw /
mount --all
Edited on 20-05-2018
Start networking:
systemctl enable NetworkManager.service
systemctl start NetworkManager.service
Update repositories
apt update
Install aptitude and deborphan
apt install --reinstall aptitude deborphan
Eliminate the components of budgie that are not necessary in Ubuntu
aptitude remove '?and(?reverse-depends(budgie),?not(?reverse-depends(?exact-name(ubuntu-desktop))))'
Reinstall ubuntu-desktop
apt install --reinstall ubuntu-desktop
Eliminate orphan packages
deborphan
apt --purge remove $(deborphan)
deborphan --libdevel
apt --purge remove $(deborphan --libdevel)
deborphan --find-config
dpkg --purge $(deborphan --find-config)
Remove unnecessary packages
apt autoremove
Remove downloaded packages
apt clean
Restart system
reboot
When restarting, remove the budgie ppa.
sudo ppa-purge ppa:budgie-remix/ppa
or
sudo ppa-purge ppa:ubuntubudgie/backports
Thanks - it helps me out to have an explanation for what is happening. It is easy to follow this way too.
â kim holder
May 16 at 2:12
The system couldn't download anything. Can it normally download in recovery mode?
â kim holder
May 16 at 15:43
1
Run: to start networking - systemctl enable NetworkManager.service - systemctl start NetworkManager.service
â kyodake
May 20 at 15:51
add a comment |Â
up vote
1
down vote
accepted
up vote
1
down vote
accepted
Try this:
Start in text-only mode
Switch on your computer. Wait until the BIOS has finished loading, and press and hold Shift, which will bring up the Grub menu.
Select the line which starts with Advanced options.
Select the line ending with (recovTry this:
Start in text-only mode
Switch on your computer. Wait until the BIOS has finished loading, and press and hold Shift, which will bring up the Grub menu.
Select the line which starts with Advanced options.
Select the line ending with (recovery mode)
Press Return and your machine will begin the boot process.
After a few moments, your PC should display a menu with a number of options, including Drop to root shell prompt. Press Return with this option highlighted.
The PC will start in a terminal.
Run these commands:
Mount partitions in read-write mode
mount -o remount,rw /
mount --all
Edited on 20-05-2018
Start networking:
systemctl enable NetworkManager.service
systemctl start NetworkManager.service
Update repositories
apt update
Install aptitude and deborphan
apt install --reinstall aptitude deborphan
Eliminate the components of budgie that are not necessary in Ubuntu
aptitude remove '?and(?reverse-depends(budgie),?not(?reverse-depends(?exact-name(ubuntu-desktop))))'
Reinstall ubuntu-desktop
apt install --reinstall ubuntu-desktop
Eliminate orphan packages
deborphan
apt --purge remove $(deborphan)
deborphan --libdevel
apt --purge remove $(deborphan --libdevel)
deborphan --find-config
dpkg --purge $(deborphan --find-config)
Remove unnecessary packages
apt autoremove
Remove downloaded packages
apt clean
Restart system
reboot
When restarting, remove the budgie ppa.
sudo ppa-purge ppa:budgie-remix/ppa
or
sudo ppa-purge ppa:ubuntubudgie/backports
Try this:
Start in text-only mode
Switch on your computer. Wait until the BIOS has finished loading, and press and hold Shift, which will bring up the Grub menu.
Select the line which starts with Advanced options.
Select the line ending with (recovTry this:
Start in text-only mode
Switch on your computer. Wait until the BIOS has finished loading, and press and hold Shift, which will bring up the Grub menu.
Select the line which starts with Advanced options.
Select the line ending with (recovery mode)
Press Return and your machine will begin the boot process.
After a few moments, your PC should display a menu with a number of options, including Drop to root shell prompt. Press Return with this option highlighted.
The PC will start in a terminal.
Run these commands:
Mount partitions in read-write mode
mount -o remount,rw /
mount --all
Edited on 20-05-2018
Start networking:
systemctl enable NetworkManager.service
systemctl start NetworkManager.service
Update repositories
apt update
Install aptitude and deborphan
apt install --reinstall aptitude deborphan
Eliminate the components of budgie that are not necessary in Ubuntu
aptitude remove '?and(?reverse-depends(budgie),?not(?reverse-depends(?exact-name(ubuntu-desktop))))'
Reinstall ubuntu-desktop
apt install --reinstall ubuntu-desktop
Eliminate orphan packages
deborphan
apt --purge remove $(deborphan)
deborphan --libdevel
apt --purge remove $(deborphan --libdevel)
deborphan --find-config
dpkg --purge $(deborphan --find-config)
Remove unnecessary packages
apt autoremove
Remove downloaded packages
apt clean
Restart system
reboot
When restarting, remove the budgie ppa.
sudo ppa-purge ppa:budgie-remix/ppa
or
sudo ppa-purge ppa:ubuntubudgie/backports
edited May 20 at 15:50
answered May 16 at 0:24
kyodake
9,22211932
9,22211932
Thanks - it helps me out to have an explanation for what is happening. It is easy to follow this way too.
â kim holder
May 16 at 2:12
The system couldn't download anything. Can it normally download in recovery mode?
â kim holder
May 16 at 15:43
1
Run: to start networking - systemctl enable NetworkManager.service - systemctl start NetworkManager.service
â kyodake
May 20 at 15:51
add a comment |Â
Thanks - it helps me out to have an explanation for what is happening. It is easy to follow this way too.
â kim holder
May 16 at 2:12
The system couldn't download anything. Can it normally download in recovery mode?
â kim holder
May 16 at 15:43
1
Run: to start networking - systemctl enable NetworkManager.service - systemctl start NetworkManager.service
â kyodake
May 20 at 15:51
Thanks - it helps me out to have an explanation for what is happening. It is easy to follow this way too.
â kim holder
May 16 at 2:12
Thanks - it helps me out to have an explanation for what is happening. It is easy to follow this way too.
â kim holder
May 16 at 2:12
The system couldn't download anything. Can it normally download in recovery mode?
â kim holder
May 16 at 15:43
The system couldn't download anything. Can it normally download in recovery mode?
â kim holder
May 16 at 15:43
1
1
Run: to start networking - systemctl enable NetworkManager.service - systemctl start NetworkManager.service
â kyodake
May 20 at 15:51
Run: to start networking - systemctl enable NetworkManager.service - systemctl start NetworkManager.service
â kyodake
May 20 at 15:51
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%2f1036666%2fremove-budgie-desktop-in-18-04%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