Ubuntu sidebar and close button bar does not get displayed
![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
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:
- 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
add a comment |Â
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:
- 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
add a comment |Â
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:
- 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
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:
- 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
16.04 command-line unity-dash lts
edited Mar 5 at 15:08
![](https://i.stack.imgur.com/Lrlbx.jpg?s=32&g=1)
![](https://i.stack.imgur.com/Lrlbx.jpg?s=32&g=1)
pa4080
12.3k52256
12.3k52256
asked Mar 5 at 13:21
ZER-0-NE
32
32
add a comment |Â
add a comment |Â
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 currentuser
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 - executeecho $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
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
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
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 currentuser
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 - executeecho $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
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
add a comment |Â
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 currentuser
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 - executeecho $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
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
add a comment |Â
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 currentuser
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 - executeecho $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
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 currentuser
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 - executeecho $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
edited Mar 5 at 14:24
answered Mar 5 at 14:04
![](https://i.stack.imgur.com/Lrlbx.jpg?s=32&g=1)
![](https://i.stack.imgur.com/Lrlbx.jpg?s=32&g=1)
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
add a comment |Â
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
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%2f1012070%2fubuntu-sidebar-and-close-button-bar-does-not-get-displayed%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