I know about unity --reset command.
But how can I simply restart Unity without resetting its profile?
- 73,717
- 1,105
5 Answers
I found killall -u USR1 -r -g unity* (optionally, with -i for interactive) to be more effective than @Andrew's answer. My only problem with this vs unity --replace is that it will kill your session which unity --replace doesn't do. So, reserve this for when it is severely broken.
- 111
killall -USR1 unity will restart it in an account (USR1) where you have not changed your killall defaults.
- 490
- 278
unity
which starts a new GUI connected to your terminal. however, if you run this over SSH, ehm, this is probably not the best IDE, because your local desktop 'unity' instance is then bound to this terminal on your remote-desctop...
funny things occur, when you terminate this session. Step by step your GUI will vanish and the only thing which remains under your control is the pointer of your mouse.
I found this post really helpful, which sumarises the commands mentioned in other answers.
- 1,256