Remove Budgie desktop in 18.04

The name of the pictureThe name of the pictureThe name of the pictureClash 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?







share|improve this question


























    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?







    share|improve this question
























      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?







      share|improve this question














      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?









      share|improve this question













      share|improve this question




      share|improve this question








      edited May 15 at 19:23

























      asked May 15 at 19:05









      kim holder

      219112




      219112




















          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





          share|improve this answer






















          • 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










          Your Answer







          StackExchange.ready(function()
          var channelOptions =
          tags: "".split(" "),
          id: "89"
          ;
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function()
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled)
          StackExchange.using("snippets", function()
          createEditor();
          );

          else
          createEditor();

          );

          function createEditor()
          StackExchange.prepareEditor(
          heartbeatType: 'answer',
          convertImagesToLinks: true,
          noModals: false,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          );



          );








           

          draft saved


          draft discarded


















          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






























          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





          share|improve this answer






















          • 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














          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





          share|improve this answer






















          • 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












          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





          share|improve this answer














          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






          share|improve this answer














          share|improve this answer



          share|improve this answer








          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
















          • 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












           

          draft saved


          draft discarded


























           


          draft saved


          draft discarded














          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













































































          Popular posts from this blog

          How do so many people here on Academia.SE, and in general, afford lavish higher education programs?

          Trouble downloading packages list due to a “Hash sum mismatch” error

          How do I move numbers in filenames, in a batch renaming operation?