Ubuntu sidebar and close button bar does not get displayed

The name of the pictureThe name of the pictureThe name of the pictureClash Royale CLAN TAG#URR8PPP








up vote
0
down vote

favorite












My Ubuntu 16.04 does not display the sidebar (which displays my files, Firefox, Ubuntu software center, etc.) and the close button bar. This started when I was working in terminal and installing some python dependencies and suddenly the terminal was struck. I waited for a long time but it did not get fixed. So I manually restarted my laptop through the power button and the next thing I see is this:



UBUNTU LINUX 16.04



  • Image Credits: Google Images

P.S: I cannot open the terminal by any means. Is there any fix to this error?










share|improve this question



























    up vote
    0
    down vote

    favorite












    My Ubuntu 16.04 does not display the sidebar (which displays my files, Firefox, Ubuntu software center, etc.) and the close button bar. This started when I was working in terminal and installing some python dependencies and suddenly the terminal was struck. I waited for a long time but it did not get fixed. So I manually restarted my laptop through the power button and the next thing I see is this:



    UBUNTU LINUX 16.04



    • Image Credits: Google Images

    P.S: I cannot open the terminal by any means. Is there any fix to this error?










    share|improve this question

























      up vote
      0
      down vote

      favorite









      up vote
      0
      down vote

      favorite











      My Ubuntu 16.04 does not display the sidebar (which displays my files, Firefox, Ubuntu software center, etc.) and the close button bar. This started when I was working in terminal and installing some python dependencies and suddenly the terminal was struck. I waited for a long time but it did not get fixed. So I manually restarted my laptop through the power button and the next thing I see is this:



      UBUNTU LINUX 16.04



      • Image Credits: Google Images

      P.S: I cannot open the terminal by any means. Is there any fix to this error?










      share|improve this question















      My Ubuntu 16.04 does not display the sidebar (which displays my files, Firefox, Ubuntu software center, etc.) and the close button bar. This started when I was working in terminal and installing some python dependencies and suddenly the terminal was struck. I waited for a long time but it did not get fixed. So I manually restarted my laptop through the power button and the next thing I see is this:



      UBUNTU LINUX 16.04



      • Image Credits: Google Images

      P.S: I cannot open the terminal by any means. Is there any fix to this error?







      16.04 command-line unity-dash lts






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Mar 5 at 15:08









      pa4080

      12.3k52256




      12.3k52256










      asked Mar 5 at 13:21









      ZER-0-NE

      32




      32




















          1 Answer
          1






          active

          oldest

          votes

















          up vote
          0
          down vote



          accepted










          1. I suppose that you have mixed the permissions in your home directory. Try to open tty1 by pressing Ctrl+Alt+F1, login and execute the command:



          sudo chown -R $USER:$USER $HOME



          • chown -R will change the ownership of the user's home directory recursively to the current user and its :group;


          • $USER is environment variable that contains the username of the current user.


          • $HOME is environment variable that contains the path of the current user's home directory - execute echo $USER $HOME to check the values.

          • You could try to use Ctrl+Alt+T to open gnome-terminal window instead of tty.

          Then restart the system (sudo systemctl reboot). Or kill all user processes (kill -9 -1), press Ctrl+Alt+F7 and login to see the result.




          2. If this doesn't help you, could try to fix some broken packages. Press Ctrl+Alt+F1 and execute the commands:



          sudo apt update
          sudo apt install -f



          3. If all of the above does not take an effect, you could try to reinstall the desktop environment:



          sudo apt update
          sudo apt-get install --reinstall ubuntu-desktop
          sudo apt-get install --reinstall unity
          sudo apt install -f





          share|improve this answer






















          • I got back the sidebar but the shutdown buttons on the top right corner are still missing and even ctrl+alt+T does not open terminal. I have to manually open it from search. Any fixes for that?
            – ZER-0-NE
            Mar 5 at 14:20










          • @ZER-0-NE: Which from the above suggestions (1, 2 or 3) helped you? Have you restarted the system? Does the problem exist within a Guest Session (if this is enabled)?
            – pa4080
            Mar 5 at 14:32






          • 1




            I managed somehow with this link
            – ZER-0-NE
            Mar 5 at 14:51










          • And before I restarted I ran the command sudo apt update as you mentioned(2). It all came back. Thank you! :)
            – ZER-0-NE
            Mar 5 at 14:52











          • I'm happy to help, @ZER-0-NE. Regards.
            – pa4080
            Mar 5 at 15:09










          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%2f1012070%2fubuntu-sidebar-and-close-button-bar-does-not-get-displayed%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
          0
          down vote



          accepted










          1. I suppose that you have mixed the permissions in your home directory. Try to open tty1 by pressing Ctrl+Alt+F1, login and execute the command:



          sudo chown -R $USER:$USER $HOME



          • chown -R will change the ownership of the user's home directory recursively to the current user and its :group;


          • $USER is environment variable that contains the username of the current user.


          • $HOME is environment variable that contains the path of the current user's home directory - execute echo $USER $HOME to check the values.

          • You could try to use Ctrl+Alt+T to open gnome-terminal window instead of tty.

          Then restart the system (sudo systemctl reboot). Or kill all user processes (kill -9 -1), press Ctrl+Alt+F7 and login to see the result.




          2. If this doesn't help you, could try to fix some broken packages. Press Ctrl+Alt+F1 and execute the commands:



          sudo apt update
          sudo apt install -f



          3. If all of the above does not take an effect, you could try to reinstall the desktop environment:



          sudo apt update
          sudo apt-get install --reinstall ubuntu-desktop
          sudo apt-get install --reinstall unity
          sudo apt install -f





          share|improve this answer






















          • I got back the sidebar but the shutdown buttons on the top right corner are still missing and even ctrl+alt+T does not open terminal. I have to manually open it from search. Any fixes for that?
            – ZER-0-NE
            Mar 5 at 14:20










          • @ZER-0-NE: Which from the above suggestions (1, 2 or 3) helped you? Have you restarted the system? Does the problem exist within a Guest Session (if this is enabled)?
            – pa4080
            Mar 5 at 14:32






          • 1




            I managed somehow with this link
            – ZER-0-NE
            Mar 5 at 14:51










          • And before I restarted I ran the command sudo apt update as you mentioned(2). It all came back. Thank you! :)
            – ZER-0-NE
            Mar 5 at 14:52











          • I'm happy to help, @ZER-0-NE. Regards.
            – pa4080
            Mar 5 at 15:09














          up vote
          0
          down vote



          accepted










          1. I suppose that you have mixed the permissions in your home directory. Try to open tty1 by pressing Ctrl+Alt+F1, login and execute the command:



          sudo chown -R $USER:$USER $HOME



          • chown -R will change the ownership of the user's home directory recursively to the current user and its :group;


          • $USER is environment variable that contains the username of the current user.


          • $HOME is environment variable that contains the path of the current user's home directory - execute echo $USER $HOME to check the values.

          • You could try to use Ctrl+Alt+T to open gnome-terminal window instead of tty.

          Then restart the system (sudo systemctl reboot). Or kill all user processes (kill -9 -1), press Ctrl+Alt+F7 and login to see the result.




          2. If this doesn't help you, could try to fix some broken packages. Press Ctrl+Alt+F1 and execute the commands:



          sudo apt update
          sudo apt install -f



          3. If all of the above does not take an effect, you could try to reinstall the desktop environment:



          sudo apt update
          sudo apt-get install --reinstall ubuntu-desktop
          sudo apt-get install --reinstall unity
          sudo apt install -f





          share|improve this answer






















          • I got back the sidebar but the shutdown buttons on the top right corner are still missing and even ctrl+alt+T does not open terminal. I have to manually open it from search. Any fixes for that?
            – ZER-0-NE
            Mar 5 at 14:20










          • @ZER-0-NE: Which from the above suggestions (1, 2 or 3) helped you? Have you restarted the system? Does the problem exist within a Guest Session (if this is enabled)?
            – pa4080
            Mar 5 at 14:32






          • 1




            I managed somehow with this link
            – ZER-0-NE
            Mar 5 at 14:51










          • And before I restarted I ran the command sudo apt update as you mentioned(2). It all came back. Thank you! :)
            – ZER-0-NE
            Mar 5 at 14:52











          • I'm happy to help, @ZER-0-NE. Regards.
            – pa4080
            Mar 5 at 15:09












          up vote
          0
          down vote



          accepted







          up vote
          0
          down vote



          accepted






          1. I suppose that you have mixed the permissions in your home directory. Try to open tty1 by pressing Ctrl+Alt+F1, login and execute the command:



          sudo chown -R $USER:$USER $HOME



          • chown -R will change the ownership of the user's home directory recursively to the current user and its :group;


          • $USER is environment variable that contains the username of the current user.


          • $HOME is environment variable that contains the path of the current user's home directory - execute echo $USER $HOME to check the values.

          • You could try to use Ctrl+Alt+T to open gnome-terminal window instead of tty.

          Then restart the system (sudo systemctl reboot). Or kill all user processes (kill -9 -1), press Ctrl+Alt+F7 and login to see the result.




          2. If this doesn't help you, could try to fix some broken packages. Press Ctrl+Alt+F1 and execute the commands:



          sudo apt update
          sudo apt install -f



          3. If all of the above does not take an effect, you could try to reinstall the desktop environment:



          sudo apt update
          sudo apt-get install --reinstall ubuntu-desktop
          sudo apt-get install --reinstall unity
          sudo apt install -f





          share|improve this answer














          1. I suppose that you have mixed the permissions in your home directory. Try to open tty1 by pressing Ctrl+Alt+F1, login and execute the command:



          sudo chown -R $USER:$USER $HOME



          • chown -R will change the ownership of the user's home directory recursively to the current user and its :group;


          • $USER is environment variable that contains the username of the current user.


          • $HOME is environment variable that contains the path of the current user's home directory - execute echo $USER $HOME to check the values.

          • You could try to use Ctrl+Alt+T to open gnome-terminal window instead of tty.

          Then restart the system (sudo systemctl reboot). Or kill all user processes (kill -9 -1), press Ctrl+Alt+F7 and login to see the result.




          2. If this doesn't help you, could try to fix some broken packages. Press Ctrl+Alt+F1 and execute the commands:



          sudo apt update
          sudo apt install -f



          3. If all of the above does not take an effect, you could try to reinstall the desktop environment:



          sudo apt update
          sudo apt-get install --reinstall ubuntu-desktop
          sudo apt-get install --reinstall unity
          sudo apt install -f






          share|improve this answer














          share|improve this answer



          share|improve this answer








          edited Mar 5 at 14:24

























          answered Mar 5 at 14:04









          pa4080

          12.3k52256




          12.3k52256











          • I got back the sidebar but the shutdown buttons on the top right corner are still missing and even ctrl+alt+T does not open terminal. I have to manually open it from search. Any fixes for that?
            – ZER-0-NE
            Mar 5 at 14:20










          • @ZER-0-NE: Which from the above suggestions (1, 2 or 3) helped you? Have you restarted the system? Does the problem exist within a Guest Session (if this is enabled)?
            – pa4080
            Mar 5 at 14:32






          • 1




            I managed somehow with this link
            – ZER-0-NE
            Mar 5 at 14:51










          • And before I restarted I ran the command sudo apt update as you mentioned(2). It all came back. Thank you! :)
            – ZER-0-NE
            Mar 5 at 14:52











          • I'm happy to help, @ZER-0-NE. Regards.
            – pa4080
            Mar 5 at 15:09
















          • I got back the sidebar but the shutdown buttons on the top right corner are still missing and even ctrl+alt+T does not open terminal. I have to manually open it from search. Any fixes for that?
            – ZER-0-NE
            Mar 5 at 14:20










          • @ZER-0-NE: Which from the above suggestions (1, 2 or 3) helped you? Have you restarted the system? Does the problem exist within a Guest Session (if this is enabled)?
            – pa4080
            Mar 5 at 14:32






          • 1




            I managed somehow with this link
            – ZER-0-NE
            Mar 5 at 14:51










          • And before I restarted I ran the command sudo apt update as you mentioned(2). It all came back. Thank you! :)
            – ZER-0-NE
            Mar 5 at 14:52











          • I'm happy to help, @ZER-0-NE. Regards.
            – pa4080
            Mar 5 at 15:09















          I got back the sidebar but the shutdown buttons on the top right corner are still missing and even ctrl+alt+T does not open terminal. I have to manually open it from search. Any fixes for that?
          – ZER-0-NE
          Mar 5 at 14:20




          I got back the sidebar but the shutdown buttons on the top right corner are still missing and even ctrl+alt+T does not open terminal. I have to manually open it from search. Any fixes for that?
          – ZER-0-NE
          Mar 5 at 14:20












          @ZER-0-NE: Which from the above suggestions (1, 2 or 3) helped you? Have you restarted the system? Does the problem exist within a Guest Session (if this is enabled)?
          – pa4080
          Mar 5 at 14:32




          @ZER-0-NE: Which from the above suggestions (1, 2 or 3) helped you? Have you restarted the system? Does the problem exist within a Guest Session (if this is enabled)?
          – pa4080
          Mar 5 at 14:32




          1




          1




          I managed somehow with this link
          – ZER-0-NE
          Mar 5 at 14:51




          I managed somehow with this link
          – ZER-0-NE
          Mar 5 at 14:51












          And before I restarted I ran the command sudo apt update as you mentioned(2). It all came back. Thank you! :)
          – ZER-0-NE
          Mar 5 at 14:52





          And before I restarted I ran the command sudo apt update as you mentioned(2). It all came back. Thank you! :)
          – ZER-0-NE
          Mar 5 at 14:52













          I'm happy to help, @ZER-0-NE. Regards.
          – pa4080
          Mar 5 at 15:09




          I'm happy to help, @ZER-0-NE. Regards.
          – pa4080
          Mar 5 at 15:09

















           

          draft saved


          draft discarded















































           


          draft saved


          draft discarded














          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1012070%2fubuntu-sidebar-and-close-button-bar-does-not-get-displayed%23new-answer', 'question_page');

          );

          Post as a guest













































































          Popular posts from this blog

          pylint3 and pip3 broken

          Missing snmpget and snmpwalk

          How to enroll fingerprints to Ubuntu 17.10 with VFS491