Changes between Version 22 and Version 23 of Xen_Lab8


Ignore:
Timestamp:
Oct 26, 2009, 4:42:22 PM (15 years ago)
Author:
rider
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Xen_Lab8

    v22 v23  
    208208$ cat /usr/X11R6/lib/X11/rgb.txt
    209209}}}
     210 * 切換為超級使用者.
     211{{{
     212$ sudo su -
     213}}}
    210214 * 設定 DomU 上的 VMGL 環境變數.
    211215{{{
    212 $ sudo vim /etc/profile
    213 }}}
     216$ cat >> /etc/profile << EOF
     217}}}
     218 * 逐一貼上以下設定.
    214219{{{
    215220#!sh
     
    218223LD_PRELOAD=/usr/local/lib/vmgl/libGL.so
    219224export GLSTUB LD_LIBRARY_PATH LD_PRELOAD
    220 }}}
    221  * 使環境變數生效.
    222 {{{
    223 $ source /etc/profile
     225EOF
    224226}}}
    225227 * 設定 DomU 上的 X forwarding.
    226228 * Using X forwarding.
    227229{{{
    228 $ sudo vim /etc/ssh/sshd_config
    229 }}}
    230 {{{
    231 #!sh
    232 X11Forwarding yes
    233 }}}
    234 {{{
    235 $ sudo vim /etc/ssh/ssh_config
    236 }}}
     230$ echo "X11Forwarding yes" >> /etc/ssh/sshd_config
     231}}}
     232{{{
     233$ cat >> /etc/ssh/ssh_config << EOF
     234}}}
     235 * 逐一貼上以下設定.
    237236{{{
    238237#!sh
    239238    ForwardX11 yes
    240239    ForwardX11Trusted yes
     240    EOF
     241}}}
     242 * 返回使用者 "clouder".
     243{{{
     244$ exit
     245}}}
     246 * 使環境變數生效.
     247{{{
     248$ source /etc/profile
    241249}}}
    242250 * 重新啟動 DomU 上的 SSH Service.