Revision [2337]
Last edited on 2009-06-25 17:02:52 by WikiAdminAdditions:
===Enable nvidia glx===
Configure xorg to load libglx.so from nvidia rather than xorg. Xorg.0.log should say glx module is from nvidia.
Section "Files"
ModulePath "/usr/lib64/xorg/modules/extensions/nvidia"
ModulePath "/usr/lib64/xorg/modules/drivers"
ModulePath "/usr/lib64/xorg/modules"
EndSection
Configure xorg to load libglx.so from nvidia rather than xorg. Xorg.0.log should say glx module is from nvidia.
Section "Files"
ModulePath "/usr/lib64/xorg/modules/extensions/nvidia"
ModulePath "/usr/lib64/xorg/modules/drivers"
ModulePath "/usr/lib64/xorg/modules"
EndSection
Revision [1975]
Edited on 2008-09-29 01:53:02 by WikiAdminAdditions:
Xephyr -ac -screen 1280x1024 -reset -terminate 2> /dev/null :1 &
* The ":1" = your display (displays are numbered starting with 0)
* -ac = disable access control restrictions= allow you to forward X
* -screen 1280x1024 = screen size
* -reset -terminate= Xephyr should automatically close when the last X client is killed, does not always work.
* 2> /dev/null redirects error messages.
* The ":1" = your display (displays are numbered starting with 0)
* -ac = disable access control restrictions= allow you to forward X
* -screen 1280x1024 = screen size
* -reset -terminate= Xephyr should automatically close when the last X client is killed, does not always work.
* 2> /dev/null redirects error messages.
Revision [1868]
Edited on 2008-08-04 19:46:28 by WikiAdminAdditions:
===Configure xorg.conf===
# generates xorg.conf.new in /root
Xorg -configure
# test the new config
Xorg -config xorg.conf.new
# generates xorg.conf.new in /root
Xorg -configure
# test the new config
Xorg -config xorg.conf.new
Revision [1855]
Edited on 2008-07-30 03:01:23 by WikiAdminAdditions:
===Xwindows within Xwindow===
Use Xephyr
Xephyr :1 -broadcast -screen 1024x768
# or
Xephyr :1 -query 1.2.3.4 1024x768
Use Xephyr
Xephyr :1 -broadcast -screen 1024x768
# or
Xephyr :1 -query 1.2.3.4 1024x768
Revision [1771]
Edited on 2008-06-20 02:29:34 by WikiAdminAdditions:
protocol = tcp socket_type = stream wait = no
user = admin
server = /usr/bin/Xvnc
server_args = -inetd -query localhost -once -securitytypes=none
only_from = 127.0.0.1
disable = no
===Capturing mouse / keyboard event under X===
use xev
Identifier "aticonfig-Screen[0]"
Device "aticonfig-Device[0]"
Monitor "aticonfig-Monitor[0]"
DefaultDepth 24
SubSection "Display"
Viewport 0 0
Depth 24
Modes "1440x900" "1280x768"
Virtual 1440 900
EndSubSection
user = admin
server = /usr/bin/Xvnc
server_args = -inetd -query localhost -once -securitytypes=none
only_from = 127.0.0.1
disable = no
===Capturing mouse / keyboard event under X===
use xev
Identifier "aticonfig-Screen[0]"
Device "aticonfig-Device[0]"
Monitor "aticonfig-Monitor[0]"
DefaultDepth 24
SubSection "Display"
Viewport 0 0
Depth 24
Modes "1440x900" "1280x768"
Virtual 1440 900
EndSubSection
Deletions:
user = admin
server = /usr/bin/Xvnc
server_args = -inetd -query localhost -once -securitytypes=none
only_from = 127.0.0.1
disable = no
Identifier "aticonfig-Screen[0]"
Device "aticonfig-Device[0]"
Monitor "aticonfig-Monitor[0]"
DefaultDepth 24
SubSection "Display"
Viewport 0 0
Depth 24
Modes "1440x900" "1280x768"
Virtual 1440 900
EndSubSection
Revision [1227]
Edited on 2007-12-06 19:53:14 by WikiAdminAdditions:
===[[XDesktopEffect Enable Desktop Effects]]===
==VNC-server dependencies==
xorg-x11-twm xterm xorg-x11-xauth xinitrc vnc-server
==VNC-server dependencies==
xorg-x11-twm xterm xorg-x11-xauth xinitrc vnc-server
Deletions:
Revision [1136]
Edited on 2007-11-07 08:57:42 by WikiAdminAdditions:
===[[XDesktopEffect Enable Desktop Effects]]==
Deletions:
Revision [1126]
Edited on 2007-11-06 02:31:05 by WikiAdminAdditions:
===[[LinuxCompix Compix 3D Gnome]]===
Revision [720]
Edited on 2007-06-21 08:16:48 by WikiAdminAdditions:
===[[LinuxFreeNX FreeNX server and client]]===
Revision [710]
Edited on 2007-06-18 03:21:53 by WikiAdminAdditions:
===VNC and ssh tunnel===
Start vnc via xinetd by putting this file in /etc/xinetd.d
%%(text;vnc)
service vnc
{ flags = REUSE
protocol = tcp socket_type = stream wait = no
user = admin
server = /usr/bin/Xvnc
server_args = -inetd -query localhost -once -securitytypes=none
only_from = 127.0.0.1
disable = no
}
Add a line to /etc/services, and restart xinetd
vnc 5900/tcp #vncserver
Then from the connecting workstation, issue the following to bring up a ssh tunnel and start vncviewer:
ssh -L15900:localhost:5900 user@remote-server.com
vncviewer localhost:15900
Start vnc via xinetd by putting this file in /etc/xinetd.d
%%(text;vnc)
service vnc
{ flags = REUSE
protocol = tcp socket_type = stream wait = no
user = admin
server = /usr/bin/Xvnc
server_args = -inetd -query localhost -once -securitytypes=none
only_from = 127.0.0.1
disable = no
}
Add a line to /etc/services, and restart xinetd
vnc 5900/tcp #vncserver
Then from the connecting workstation, issue the following to bring up a ssh tunnel and start vncviewer:
ssh -L15900:localhost:5900 user@remote-server.com
vncviewer localhost:15900
Revision [357]
Edited on 2007-04-25 05:48:26 by WikiAdminAdditions:
===[[LinuxXDMCP XDMCP Remote Login]]===
Revision [356]
Edited on 2007-04-25 02:20:00 by WikiAdminAdditions:
===Xforwarding & ssh===
ssh to the remote host and start graphical applications on local display
%%(bash)
ssh -Y user@remote_host
firefox &
ssh to the remote host and start graphical applications on local display
%%(bash)
ssh -Y user@remote_host
firefox &
Revision [302]
Edited on 2007-04-19 23:35:41 by WikiAdminDeletions:
Revision [289]
Edited on 2007-04-19 07:43:48 by WikiAdminAdditions:
Somehow, wide-screen resolution is not available after installing the ATI driver (I have a Raedon 9600). But it CAN be enabled by tweaking parameters in /etc/X11/xorg.conf. Specifically the line **Modes "1440x900"** and **Virtual 1440 900**. My full [[http://www.waterlovinghead.com/images/xorg.conf xorg.conf]]
Deletions:
Revision [288]
Edited on 2007-04-19 07:43:20 by WikiAdminAdditions:
Somehow, wide-screen resolution is not available after installing the ATI driver. But it CAN be enabled by tweaking parameters in /etc/X11/xorg.conf. Specifically the line **Modes "1440x900"** and **Virtual 1440 900**. My full [[http://www.waterlovinghead.com/images/xorg.conf xorg.conf]]
Deletions:
Revision [287]
Edited on 2007-04-19 07:42:16 by WikiAdminNo differences.
Revision [286]
Edited on 2007-04-19 07:38:34 by WikiAdminAdditions:
Somehow, wide-screen resolution is not available after installing the ATI driver. But it CAN be enabled by tweaking parameters in /etc/X11/xorg.conf. Specifically the line **Modes "1440x900"** and **Virtual 1440 900** My full [[http://www.waterlovinghead.com/images/xorg.conf xorg.conf]]
Deletions:
Revision [285]
Edited on 2007-04-19 07:38:21 by WikiAdminAdditions:
Somehow, wide-screen resolution is not available after installing the ATI driver. But it CAN be enabled by tweaking parameters in /etc/X11/xorg.conf. Specifically the line **Modes "1440x900"** and **Virtual 1440 900** My full xorg.conf [[http://www.waterlovinghead.com/images/xorg.conf xorg.conf]]
Deletions:
Revision [284]
Edited on 2007-04-19 07:37:43 by WikiAdminAdditions:
Somehow, wide-screen resolution is not available after installing the ATI driver. But it CAN be enabled by tweaking parameters in /etc/X11/xorg.conf. Specifically the line **Modes "1440x900"** and **Virtual 1440 900** My full xorg.conf [[images/xorg.conf]]