38

I am new to xubuntu, somtimes my xfce desktop crashes, and I can only use tty1 from command line.

I want to know how can I restart my xfce in tty7 from tty1?

I've googled it, but didn't found the solution. Thanks.

zfz
  • 799

4 Answers4

29

For me startxfce4 didn't work, but pkill did.

You could try the following command:

xfwm4 --replace

It restarts the windows manager.

24

pkill worked but seemed a little extreme to me. If I had other stuff going on in other tty sessions, it would kill those too.

Another solution is:

sudo systemctl restart lightdm

A great strength of Linux is that there are always multiple ways to achieve the same task.

Mike
  • 103
15

Try killing user by

pkill -KILL -u yourusername

This will bring you back to login screen though.

linuxk
  • 629
10

You can try startxfce4.

As this site says:

Restart XFCE4 : from the command line, you would better use "startxfce4" to bypass stupid distribution X startup scripts that can drive you crazy, really.

green
  • 14,406