Open main menu

OpenVZ Virtuozzo Containers Wiki β

Changes

X inside VE

5,724 bytes added, 09:03, 13 April 2016
Using Xephyr: changed comma to dot in DISPLAY value
There are several ways to run X applications inside your [[VEcontainer]].
== X forwarding ==
=== Single application === To run an X application inside a [[VEcontainer]], one need needs simply to connect to a VE container with '''ssh -X''':
<pre>
host# ssh -2 -c blowfish -X user@address
</pre>
After login to VE container check that <code>$DISPLAY</code> variable is set and X11 forwarding is enabled:
<pre>
ve# echo $DISPLAY
</pre>
In case <code>$DISPLAY</code> is not set, make sure that X forwarding is enabled in <code>sshd</code> config inside VEcontainer. In most Linux distros sshd configuration is stored in <code>/etc/ssh/sshd_config</code>. You should set parameter <code>X11Forwarding</code> to <code>yes</code>. Also container should contain <code>xauth</code> package, thus install <code>xauth</code> if it is missing (in Debian this is part of the xbase-clients package). After that, restart your sshd daemon:
<pre>
ve# /etc/init.d/sshd restart
{{Note|Don't forget to reconnect after this}}
Now you can run X applications from your VEcontainer:
<pre>
ve# firefox
</pre>
 
=== Desktop ===
 
Note : If you want to run complete X window environment (including window manager), you should kill local window manager and run only pure X server. Secondly you should use '''-Y''' option when invoking ssh. And if you want to run gnome/kde/..., don't forget to increase [[UBC]] limits, 'cause default values are certainly too small for these monsters. ;)
 
You can run a desktop with ''xinit'' (on the node):
 
<pre>
xinit -e ssh -XCc blowfish user@ip_address "/usr/bin/xfce4-session &" -- :1 & disown
</pre>
 
* Substitute the window manager of choice
* Once xfce has started, you can then close the xterm if you like
 
 
Your node will be on Ctrl-Alt-F7
 
And your VM on Ctrl-Alt-F8
== VNC for X desktop ==
First, one need to run '''Xvnc''' server inside VEcontainer. The easiest way for this is to run
'''vncserver''' script. This scripts starts all the required services
and small http daemon which provides graphical web access to your desktop (via Java applet).
using '''vncviewer''' command:
<pre>
host# vncviewer <VE_IPcontainer_IP>:1
</pre>
 
If the VNC desktop is the same size or larger than your X desktop, you will see scroll bars on the bottom and the side. This is often inconvenient. You may reduce your VNC desktop to a more reasonable size like this:
<pre>vncserver -geometry 1000x650</pre>
This setting works quite well for a 1024 by 768 X desktop setting.
=== Starting KDE desktop with VNC ===
To start KDE desktop instead of default twm one replace '<code>twm &' </code> line with '<code>startkde &' </code> in user's<code>~/.vnc/xstartup </code> fileon the container.
=== Connecting with VNC from firewalled network ===
VNC uses 590x TCP ports for its connections. These ports can be firewalled in
many networks so in order to be able to connect to remote side one need to tunnel VNC connections somehow.
A usuall usual '''ssh''' can be used for tunneling VNC connections as described below.
<pre>
</pre>
== Using xdm Xephyr == Xephyr gives you nested X windows. First, install Xephyr on your host. Start Xephyr <pre>Xephyr -ac -screen 1280x1024 -br -reset -terminate :1 &</pre> Change your display settings (don't forget to change them back after you establish a connection) <pre>DISPLAY=:1.0</pre> Forward your application or desktop over ssh to Xephyr <pre>ssh -XfC -c blowfish user@server xfce4-session</pre> If you use an alternate window manager, substitute "startkde", "gnome-session", "startfluxbox", etc. as needed.  [http://cafelinux.org/OptickleArt/albums/userpics/Xephyr.png Screenshot] == Using XDM with XDMCP ==This method will give you a graphical login prompt remotely similar to VNC, but with some differences. Most notably, XDMCP is faster than VNC (due to the way each deals with screen handling) and but you CANNOT connect to existing sessions like you can with VNC. Each time you logout, your programs are closed. XDMCP is better suited in situations where you don't have a local display (or dumb terminals/clients) but want to run X11 programs === container Configuration ===It should be Install your desktop environment as you'd like (kde/gnome/xfce/etc) and ensure you install at least XDM. You can opt to use GDM/KDM as they also possible do the same job as XDM. The configuration for KDM/GDM is different than XDM's and I was only able to do remote find one link on configuring GDM (more below). ===== XDM =====Configuring XDM requires editing 3 files: /etc/X11/xdm/xdm-config, /etc/X11/xdm/Xservers, /etc/X11/xdm/Xaccess In xdm-config, comment out the line where it says '''DisplayManager.requestPort: 0''' In Xservers, comment out the line ''':0 local /usr/bin/X :0 vt7'''' (this starts a local X by running server, which will fail) In Xaccess, uncomment the line with '''xdm* #any host can get a login window''' inside VE (Please keep in mind the security implications by the above line. Read the comments found in the file andset it appropriately)X To provide the possibility to run sound applications from container, /dev/dsp device file needs to be exported in container:<pre>vzctl set 221 --devnodes dsp:rw --query save<remote IP/pre>  Finally, if you intend to make xdm invoking a heavy desktop like kde, it is reasonable to increase the amount of memory available for allocation inside this container:<pre>vzctl set 221 --privvmpages 500M:600M --save</pre>For light desktop like icewm this is not needed. Once these changes have been made, start your xdm server by the appropriate startup script (typically similar to /etc/init.d/xdm start). That concludes the XDM setup in the container. ===== GDM =====Edit the '''gdm.conf''' file and in xdmcp section, comment out the '''0=standard''' line under the [servers] section - this will prevent gdm from trying to launch an X server on the local machine - it will simply listen for xdmcp requests. Insert '''0=inactive''' in [servers] section. Insert '''Enable=1''' in [xdmcp] section. Also, change from VCAllocation=true to VTAllocation=false and comment out the FirstVT=7 line if that lines exists. Change the access restrictions (if any) to suit your needs and then start GDM. === Client/Host Configuration ===
On the Client/Host (whatever machine you are connecting from to the container), you need to install ONLY a bare Xserver as per your OS instructions (use yum, emerge, apt, whatever). A desktop environment like XFCE/GNOME/KDE is entirely optional on the client, but keep in mind that it won't be used while you're connecting to the desktop on the container. To get access to the XDM server, just start an Xserver with '''X -query <remote IP> :0''' (where :0 is the local display...set to :1 if you already have an X session running, or use Xnest) There are guides online on howto securely tunnel XDMCP over the Internet (typically vpn as XDMCP can't be tunneled over ssh afaik), in an otherwise INSECURE protocol. === Errata ===On a side note, as of December 2007, I was never able to successfully get an Xserver to run inside a container and have the display output onto virtual-terminal 7 (the Xserver default), However VNC approach , you can get an Xserver running on the hostnode to display output on virtual-terminal 7 without any special configuration (as the hostnode has direct access to all necessary devices). Another user has done this with XDM and X. Just follow the directions on the wiki. It is much easierpossible== See also ==* [[NX inside VE]]
== External links ==
* http://www.myatus.co.uk/2009/08/24/x-server-with-sound-inside-an-openvz-proxmox-container/
* http://forum.openvz.org/index.php?t=tree&th=235&mid=1115&&rev=&reveal=
* http://ait.web.psi.ch/services/linux/kde-desktop-sharingsoftware/local/by_task/desktop_sharing/index.htmhtml
* http://ait.web.psi.ch/services/ssh/vnc-ssh.html
* http://www.vnc.com/pipermail/vnc-list/2002-July/031831.html
* http://www.linuxjournal.com/article/5499
 
 
* http://www.realvnc.com/pipermail/vnc-list/2002-March/029502.html
* http://www.redhat.com/archives/rhl-list/2003-December/msg01859.html
[[Category: HOWTO]]
[[Category: Networking]]
[[Category: X]]
Anonymous user