web-dev-qa-db-ja.com

tty8で別のXセ​​ッションを開始するにはどうすればよいですか?

たとえば、tty8で全画面のopenglアプリケーションを実行し、tty7で標準のGNOMEデスクトップを使用したいとします。要件に合わせてUbuntuを構成するにはどうすればよいですか?

14
risteristevski

Tty8で新しいXセッションを開始するには、tty1(または2-6)にドロップして次を入力します。

startx -- :1
7
nothingspecial

これを試すことができます

そのため、ファイル内の/etc/X11/gdm/gdm.conf

:0と:1の両方で好きになることを言及してください。それは次のように示される必要があります。

   ...
   [servers]
   # These are the standard servers. You can add as many you want here
   # and they will always be started. Each line must start with a unique
   # number and that will be the display number of that server. Usually just
   # the 0 server is used.
   0=Standard
   1=Standard
   # Note the VTAllocation and FirstVT keys on linux and freebsd.
   # Don't add any vt<number> arguments if VTAllocation is on, and set FirstVT to
   # be the first vt available that your gettys don't grab (gettys are usually
   # dumb and grab even a vt that has already been taken). Using 7 will work
   # pretty much for all linux distributions. VTAllocation is not currently
   # implemented on anything but linux and freebsd. Feel free to send patches.
   # X servers will just not get any extra arguments then.
   #
   ...

http://ubuntuforums.org/showthread.php?t=86451 から抽出。これは2005年からですが、動作するはずです。

0
Willian Girhad