Let's say your local machine is
example1.org.com and remote server is
example2.org.com, where you need to install Oracle, then you can launch an X terminal from remote server on your local machine and can do your job.
To do this, first check your DISPLAY variable, using:
Code:
example1.org.com# echo $DISPLAY
example1.org.com:X
Then allow remote host to launch it's x on your local desktop:
example1.org.com# xhost +example2.org.com
Then login into remote server i.e.
example2.org.com, open a terminal, and follow as:
Code:
example2.org.com# setenv DISPLAY example1.org.com:X ## If using C shell
Or, if using bash shell:
example2.org.com# DISPLAY=example1.org.com:X
example2.org.com# export DISPLAY
example2.org.com# xterm & ## Invoke xterm