DISPLAY settiing


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers DISPLAY settiing
# 1  
Old 08-27-2001
DISPLAY settiing

How to set the display environment variable through a script?
i tried that using "setenv" but it gave me error.

is there any idea?
Smilie
sskb
# 2  
Old 08-28-2001

Try just typing env. If that doesn't work, try just typing set. Now, if that doesn't work, I'm out of ideas... Smilie
# 3  
Old 08-28-2001
Tools Solution

in script,
you can add following line;

export DISPLAY=`uname -n`:0.0
# 4  
Old 08-28-2001
setting DISPLAY

It depends what shell you are
using. For example:

C Shell: setenv DISPLAY some_host:0.0
Bourne Shell: DISPLAY=some_host:0.0; export DISPLAY
Korn Shell: export DISPLAY=some_host:0.0
BASH: export DISPLAY=some_host:0.0

...where "some_host" is the hostname or IP
address of the X workstation or console you
are using.

Since you said you tried "setenv", I assume you
are using "csh". You may also want to check the
man page for csh and the "source" command if you
want the setting to be persistant in your
current session's environment.
# 5  
Old 10-04-2001
to be clear..
while in the normal command mode i use

setenv DISPLAY system-no:0.0
and that works fine.

if i use the same in script.. then it gives me errors like

setenv: command not found

is there any remedy?Smilie
sskb
# 6  
Old 10-04-2001
First... are you using csh?
Can you verify this the shell you are using?
If so, setenv is a built-in so I'm not sure why you
would get that particular error.

Can you supply more info. (maybe even the script)?

Also, it has been said the csh is not a good shell for
scripting for various reasons but an interesting (amusing)
article by Tom Christiansen discusses the "cons"...
Now while i agree with Tom, I would not begrudge
anyone the freedom to "find out for themselves" Smilie

http://www.dubois.ws/software/csh-tcsh-book/csh-whynot
# 7  
Old 10-04-2001
yes i am using a csh.
the script i have used is the following.

setenv DISPLAY 172.24.1.55:0.0
/opt/netscape/netscape&

it invokes netscape if i have already set display.
but the first line gives me error.

Smilie
sskb
 
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. AIX

Help with DISPLAY

Hi I have humming bird exceed software installed in my system. I have 2 aix lpars with 7.1 version. When I export the display and run xlcock it works only in one server. The output of the below command is the same in both the lpars # cat /etc/ssh/sshd_config | grep -i X11... (3 Replies)
Discussion started by: newtoaixos
3 Replies

2. Shell Programming and Scripting

Display

Hello, this will sound geek but I've got a shell script that takes an age to run. I am wondering if someone as a function that will display like dash or something every second ? I could try to get it inside of this script when needed. I am using ksh. Thanks (4 Replies)
Discussion started by: Aswex
4 Replies

3. UNIX for Advanced & Expert Users

DISPLAY=local_host:0.0 ; export DISPLAY

Hi, from my Windows Workstation I can connect with PUTTY to an AIX 6.1 unix server. On AIX via PUTTY I run DBCA which has a grphical interface. Then : #DISPLAY=local_host:0.0 ; export DISPLAY $(hostname) $(whoami):/appli/oracle/product/10.2.0/db_1/bin#dbca _X11TransSocketINETConnect()... (12 Replies)
Discussion started by: big123456
12 Replies

4. Shell Programming and Scripting

how to display this.....

Hi... I have this sql script and i have spool this output to the name backup_status.log START_TIM END_TIME STATUS --------- --------- ----------------------- 14-JUL-08 14-JUL-08 COMPLETED WITH ERRORS How to use IF statement in order to cut and email the status if the status for that day... (1 Reply)
Discussion started by: adzuanamir
1 Replies

5. Shell Programming and Scripting

I need to display it how to do

I have infomation like this 06/10/07 06:45:33 AMQ9002: Channel 'CLUS.TO.IMVP1WASQM' is starting. 06/10/07 09:06:13 AMQ9002: Channel 'CLUS.TO.IMVP1EAIQM' is starting. EXPLANATION: Channel 'CLUS.TO.IMVP1EAIQM' is starting. ACTION: None.... (2 Replies)
Discussion started by: unitipon
2 Replies

6. Linux

Display

Hi all, I wish to get vmware GUI on my windows ws without get there phisically. I always used in Unix systems setenv DISPLAY = 10.192.10.43:0.0 and run the application. The server running vmware is behind a firewalled farm zone where every telnet, ssh connection has the same IP addr. so how to... (1 Reply)
Discussion started by: Carmen123
1 Replies

7. UNIX for Dummies Questions & Answers

Display ???

Hi I have question? whne i do echo "I am fine" - - The result displays on the left hand side of the screen, i want to make the result to display at the center of the screen ex: I am fine - - i want to display this as I am fine - - in the center of... (2 Replies)
Discussion started by: gkrishnag
2 Replies

8. Solaris

X Display

I have an application that I run remotely, before I start the app, i have to export the display using the DISPLAY=x.x.x.x; export DISPLAY command now, i have just put a crt monitor on this box, and i try to run the same command, for the display variable, i have used the machines own IP address,... (2 Replies)
Discussion started by: BG_JrAdmin
2 Replies

9. UNIX for Dummies Questions & Answers

ls display

Hi, When i list the subfolders in my Hp-Ux machine ,iam getting like this $ls -ltr total 14 -rw-r--r-- 1 sss users 6747 Aug 15 02:09 it is showing total as 14,but it is showing one file only!.plz tell me why is this? Thanks (3 Replies)
Discussion started by: shruti_mgp
3 Replies
Login or Register to Ask a Question