Changes between Version 22 and Version 23 of Xen_Lab8
- Timestamp:
- Oct 26, 2009, 4:42:22 PM (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Xen_Lab8
v22 v23 208 208 $ cat /usr/X11R6/lib/X11/rgb.txt 209 209 }}} 210 * 切換為超級使用者. 211 {{{ 212 $ sudo su - 213 }}} 210 214 * 設定 DomU 上的 VMGL 環境變數. 211 215 {{{ 212 $ sudo vim /etc/profile 213 }}} 216 $ cat >> /etc/profile << EOF 217 }}} 218 * 逐一貼上以下設定. 214 219 {{{ 215 220 #!sh … … 218 223 LD_PRELOAD=/usr/local/lib/vmgl/libGL.so 219 224 export GLSTUB LD_LIBRARY_PATH LD_PRELOAD 220 }}} 221 * 使環境變數生效. 222 {{{ 223 $ source /etc/profile 225 EOF 224 226 }}} 225 227 * 設定 DomU 上的 X forwarding. 226 228 * Using X forwarding. 227 229 {{{ 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 * 逐一貼上以下設定. 237 236 {{{ 238 237 #!sh 239 238 ForwardX11 yes 240 239 ForwardX11Trusted yes 240 EOF 241 }}} 242 * 返回使用者 "clouder". 243 {{{ 244 $ exit 245 }}} 246 * 使環境變數生效. 247 {{{ 248 $ source /etc/profile 241 249 }}} 242 250 * 重新啟動 DomU 上的 SSH Service.