[Çözüldü] ubuntu terminalden xfce başlatmak

Başlatan furyzer0, 23 Ağustos 2016 - 18:06:43

« önceki - sonraki »

0 Üyeler ve 1 Ziyaretçi konuyu incelemekte.

furyzer0

terminalden xfce masaüstü ortamını başlatmak başlatmak istiyorum.Nasıl yapabilirim?

ata1

#1
startxfce4

bilgi olarak ekleyelim


There are three different ways to do this:

You can just login with the command startxfce4
You can add exec startxfce4 to your .xinitrc in your home directory and simply use startx.
You put the following in your .bash_profile/.bashrc if you want that Xfce is started automatically when you login on tty1:
if [ "$(tty)" = "/dev/tty1" -o "$(tty)" = "/dev/vc/1" ] ; then
  startxfce4
fi

furyzer0