Displaying RHEL 5 Applications Remotely (X11 Forwarding)

PreviousTable of ContentsNext
Configuring RHEL 5 Remote Access using SSHUsing NFS to Share RHEL 5 Folders with Remote Linux and UNIX Systems


You are reading a sample chapter from the RHEL 5 Edition book.

Purchase the fully updated Red Hat Enterprise Linux 8 (RHEL 8) Edition of this publication in eBook ($9.99) or Print ($36.99) format

Red Hat Enterprise Linux 8 Essentials Print and eBook (ePub/PDF/Kindle) editions contain 31 chapters and over 250 pages

Buy Print Preview Book


In Remote Access to the RHEL 5 Desktop we looked at how to display the entire Red Hat Enterprise Linux 5 desktop on a remote computer. Whilst this works well if you actually need to remotely display the entire desktop, it could be considered overkill if all you want to do is display a single application. In this chapter, therefore, we will look at displaying individual applications on a remote system.

Requirements for Remotely Displaying RHEL Applications

In order to run an application on one RHEL system and have it display on another system there are a couple of prerequisites.

Firstly, the system on which the application is to be displayed must be running an X server. If the system is a Mac OS X, UNIX or Linux based system with a desktop environment running then this is no problem. If the system is running Windows, however, then you must install an X server on it before you can display applications from a remote system. A number of commercial and free Windows based X servers are available for this purpose and a web search should provide you with a list of options.

Secondly, the system on which the application is being run (as opposed to the system which the application is to be displayed) must be configured to allow SSH access. Details on configuring SSH on a CentOS system can be found in the chapter entitled Configuring RHEL 5 Remote Access using SSH. Finally, SSH must be configured to allow X11 Forwarding. To verify this, load the /etc/ssh/ssh_config file into an editor and make sure that the following directive is set:

X11Forward yes

Once the above requirements are met it is time to remotely display an application.

Remotely Displaying an RHEL Application

The first step in remotely displaying an application is to move to the system where the application is to be displayed. At this system, ssh into the remote system so that you have a command prompt. This can be achieved using the ssh command. When using the ssh command we need to use the -X flag to tell ssh that we plan to tunnel X traffic through the connection:

ssh -X user@hostname

In the above example username is the user name to use to log into the remote system and hostname is the hostname or IP address of the remote system. Enter your password at the login prompt. Once logged in, run the following command to see the DISPLAY setting:

echo $DISPLAY

The command should output something similar to the following:

localhost:10.0

To display an application simply run it from the command prompt. For example:

gedit

When run, the above command should run the gedit tool on the remote system, but display the output on the local system.


Trusted X11 Forwarding

If the /etc/ssh/ssh_config file on the remote system contains the following line, then it is possible to use trusted X11 forwarding:

ForwardX11Trusted yes

Trusted X11 forwarding is slightly faster than untrusted forwarding since it does not engage the X11 security controls. The -Y flag is needed when using trusted X11 forwarding:

ssh -Y user@hostname

Compressed X11 Forwarding

When using slower links the X11 data can be compressed using the -C flag:

ssh -X -C user@hostname


You are reading a sample chapter from the RHEL 5 Edition book.

Purchase the fully updated Red Hat Enterprise Linux 8 (RHEL 8) Edition of this publication in eBook ($9.99) or Print ($36.99) format

Red Hat Enterprise Linux 8 Essentials Print and eBook (ePub/PDF/Kindle) editions contain 31 chapters and over 250 pages

Buy Print Preview Book



PreviousTable of ContentsNext
Configuring RHEL 5 Remote Access using SSHUsing NFS to Share RHEL 5 Folders with Remote Linux and UNIX Systems