Ubuntu 16.04 launcher is missing after installing new updates
Solution 1:
After spending so much times and searching, I tested almost all the solutions on the internet.
- Problems after upgrading to 14.04 (only background and pointer after login)
- Launcher disappeared
- Ubuntu 16.04 no menu bar or launcher - help!
But problem didn't solve. Totally the only solution which worked for me was follwing this instruction:
- open
/usr/bin/
and rungnome-terminal.real
- run
adduser newuser
to create a new user - run
kill -9 -1
to logout - login using
newuser
- do #1 again
- run
su olduser
and enter your password - run
mv /home/olduser /home/olduser_backup
- run
mkdir /home/olduser
- run
chown olduser:olduser /home/olduser
- run
reboot
- login using
olduser
Totally you can delete newuser
by running these commands:
sudo deluser newuser
sudo rm /home/newuser -rf
Solution 2:
After updating my Ubuntu 16.04 I experienced the same issue. I solved it by removing the /home/your_username/.config/compiz-1/compizconfig
directory:
rm -rf /home/your_username/.config/compiz-1/compizconfig
After which I logged out and in.
The directory originally contained the files:
config
Default.ini
done_upgrades
After removing the directory and logging in and out, it now contains the files:
config
done_upgrades
The done_upgrades
file has not changed and the config
file has changed from:
[general_ubuntu-lowgfx]
backend = ini
profile =
integration = true
plugin_list_autosort = true
to:
[general_ubuntu-lowgfx]
profile = unity-lowgfx
The removed Default.ini
contained:
[core]
s0_outputs = 1488x858+0+0;
So I guess the issue was caused by one of these files, but I know nothing about compiz, so I cannot tell what could have caused it.