Changes between Version 5 and Version 6 of VirtualGL_UsageNote
- Timestamp:
- Jun 4, 2008, 2:08:44 PM (17 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
VirtualGL_UsageNote
v5 v6 1 1 = VirtualGL Usage Note = 2 2 == TurboVNC == 3 === Part1 - Basic Setting === 3 4 rock@gpfs-server:~$ /opt/TurboVNC/bin/vncpasswd (Enter Your Passwd - The password is saved in ~/.vnc/passwd) [[BR]] 4 5 rock@gpfs-server:~$ sudo apt-get install xfs xinetd [[BR]] … … 9 10 vnc-800x600x8 5951/tcp 10 11 vnc-1024x768x8 5952/tcp 12 vnc-1152x864x8 5952/tcp 11 13 vnc-1280x1024x8 5953/tcp 12 vnc-1600x1200x8 5954/tcp13 14 vnc-640x480x16 5960/tcp 14 15 vnc-800x600x16 5961/tcp 15 16 vnc-1024x768x16 5962/tcp 17 vnc-1152x864x16 5952/tcp 16 18 vnc-1280x1024x16 5963/tcp 17 19 vnc-1600x1200x16 5964/tcp … … 19 21 vnc-800x600x24 5971/tcp 20 22 vnc-1024x768x24 5972/tcp 23 vnc-1152x864x24 5952/tcp 21 24 vnc-1280x1024x24 5973/tcp 22 vnc-1600x1200x24 5974/tcp23 25 vnc-640x480x32 5980/tcp 24 26 vnc-800x600x32 5981/tcp 25 27 vnc-1024x768x32 5982/tcp 28 vnc-1152x864x32 5952/tcp 26 29 vnc-1280x1024x32 5983/tcp 27 vnc-1600x1200x32 5984/tcp28 30 }}} 29 31 … … 60 62 server_args = -inetd -query localhost -once -geometry 1024x768 -depth 8 61 63 } 64 65 service vnc-1152x864x8 66 { 67 protocol = tcp 68 socket_type = stream 69 wait = no 70 user = nobody 71 server = /usr/bin/Xvnc 72 server_args = -inetd -query localhost -once -geometry 1280x1024 -depth 8 73 } 62 74 63 75 service vnc-1280x1024x8 … … 69 81 server = /usr/bin/Xvnc 70 82 server_args = -inetd -query localhost -once -geometry 1280x1024 -depth 8 71 } 72 73 service vnc-1600x1200x8 74 { 75 protocol = tcp 76 socket_type = stream 77 wait = no 78 user = nobody 79 server = /usr/bin/Xvnc 80 server_args = -inetd -query localhost -once -geometry 1600x1200 -depth 8 81 } 83 } 82 84 83 85 service vnc-640x480x16 … … 110 112 server_args = -inetd -query localhost -once -geometry 1024x768 -depth 16 111 113 } 114 115 service vnc-1152x864x16 116 { 117 protocol = tcp 118 socket_type = stream 119 wait = no 120 user = nobody 121 server = /usr/bin/Xvnc 122 server_args = -inetd -query localhost -once -geometry 1280x1024 -depth 16 123 } 112 124 113 125 service vnc-1280x1024x16 … … 121 133 } 122 134 123 service vnc-1600x1200x16124 {125 protocol = tcp126 socket_type = stream127 wait = no128 user = nobody129 server = /usr/bin/Xvnc130 server_args = -inetd -query localhost -once -geometry 1600x1200 -depth 16131 }132 133 135 service vnc-640x480x24 134 136 { … … 160 162 server_args = -inetd -query localhost -once -geometry 1024x768 -depth 24 161 163 } 164 165 service vnc-1152x864x24 166 { 167 protocol = tcp 168 socket_type = stream 169 wait = no 170 user = nobody 171 server = /usr/bin/Xvnc 172 server_args = -inetd -query localhost -once -geometry 1280x1024 -depth 24 173 } 162 174 163 175 service vnc-1280x1024x24 … … 172 184 } 173 185 174 service vnc-1600x1200x24175 {176 protocol = tcp177 socket_type = stream178 wait = no179 user = nobody180 server = /usr/bin/Xvnc181 server_args = -inetd -query localhost -once -geometry 1600x1200 -depth 24182 }183 184 186 service vnc-640x480x32 185 187 { … … 211 213 server_args = -inetd -query localhost -once -geometry 1024x768 -depth 32 212 214 } 215 216 service vnc-1152x864x32 217 { 218 protocol = tcp 219 socket_type = stream 220 wait = no 221 user = nobody 222 server = /usr/bin/Xvnc 223 server_args = -inetd -query localhost -once -geometry 1280x1024 -depth 32 224 } 213 225 214 226 service vnc-1280x1024x32 … … 222 234 } 223 235 224 service vnc-1600x1200x32 225 { 226 protocol = tcp 227 socket_type = stream 228 wait = no 229 user = nobody 230 server = /usr/bin/Xvnc 231 server_args = -inetd -query localhost -once -geometry 1600x1200 -depth 32 232 } 233 234 }}} 235 236 }}} 237 238 === Part2 - X Font Server === 239 240 @ Server 236 241 rock@gpfs-server:~$ sudo vim /etc/X11/fs/config 237 242 … … 239 244 #no-listen = tcp 240 245 }}} 241 242 246 rock@gpfs-server:~$ sudo /etc/init.d/xfs restart [[BR]] 247 rock@gpfs-server:~$ sudo /etc/init.d/gdm restart [[BR]] 248 243 249 @ Client 244 250 rider@350z:~$sudo vim /etc/X11/xorg.conf 245 251 246 252 {{{ 247 FontPath "tcp/IP:7100" 248 }}} 253 FontPath "tcp/ServerIP_Address:7100" 254 }}} 255 ## Client can get fonts support from x font server (xfs) 256 257 === Part3 - TurboVNC Server Activation === 249 258 250 259 rock@gpfs-server:~$ /opt/TurboVNC/bin/vncserver [[BR]]