1835423 Members
2804 Online
110078 Solutions
New Discussion

Re: xwindows interfacing

 
pedliz11
Frequent Advisor

xwindows interfacing

need to get xwindows working on a remote server
which is a vpn connection tru a linux hosts running ssh.
2 REPLIES 2
Steven E. Protter
Exalted Contributor

Re: xwindows interfacing

Shalom,

On the host, which I will assume is hpux based on the forum you posted to.

vi /etc/rc.config.d/xfs

Change the first variable to 1

/sbin/init.d/xfs start

ssh -X hostname command

Done unless there is an iptables firewall blocking access.

SEP
Steven E Protter
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
skt_skt
Honored Contributor

Re: xwindows interfacing

If it is Linux , try similar to this

#cat start_Xvfb.sh

hostname=`/bin/hostname`

export DISPLAY=${hostname}:15.0
/usr/X11R6/bin/mwm &
sleep 2
/usr/X11R6/bin/Xvfb :15 -ac -screen 0 1024x768x8 &