Changes between Initial Version and Version 1 of Ticket #777, comment 7
- Timestamp:
- 01/08/15 06:14:55 (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #777, comment 7
initial v1 3 3 1.aptitude install xserver-xorg-video-dummy 4 4 (Of course, but I forgot in the first try!) 5 2. Add the user who is going to be logging into the server to the proper group. I think this is the crucial step---doing this rather than changing the permission of /dev/tty8 and /dev/fb0 5 2. Add the user who is going to be logging into the server to the proper group. I think this is the crucial step---doing this rather than changing the permission of {{{/dev/tty8}}} and {{{/dev/fb0}}} 6 {{{ 6 7 adduser USERNAME video 7 8 adduser USERNAME tty 8 9 adduser USERNAME dialout 10 }}} 9 11 3. fully reboot. I skipped this step in the last try, which is why adding user didn't work. One need to log out as user and log back in to make it fully effective. 10 12 4. This may or may not be important: but I always start the xpra server over an ssh session *before* logging into any GUI session on the server. Otherwise it may complain about unable to get drm and fail. 11 13 I start xpra on the server using this command: 12 xpra --xvfb='Xorg -dpi 110 -noreset -nolisten tcp +extension GLX +extension RANDR +extension RENDER -logfile ${HOME}/.xpra/Xvfb-10.log -config ${HOME}/.xpra/xorg.conf' --dpi=110 start :100 --bind-tcp=0.0.0.0:10000 14 {{{ 15 xpra --xvfb='Xorg -dpi 110 -noreset -nolisten tcp +extension GLX +extension RANDR \ 16 +extension RENDER -logfile ${HOME}/.xpra/Xvfb-10.log -config ${HOME}/.xpra/xorg.conf' \ 17 --dpi=110 start :100 --bind-tcp=0.0.0.0:10000 18 }}} 13 19 The xorg.conf file is downloaded from xpra.org 14 20 … … 16 22 17 23 After using xdummy, all the bounding and pop up window works properly. Thank you for making this nice piece of software! 18