- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Reflection X - xtem HP-UX 10.20
Categories
Company
Local Language
Forums
Discussions
Knowledge Base
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-29-2003 06:01 AM
08-29-2003 06:01 AM
Reflection X - xtem HP-UX 10.20
ex: .profile
exec /lbin/menu/operation.sh
-> Command in reflection X in TELNET MODE:
(/usr/bin/X11/xterm -fn 6x13 -sb -ls -display IP:0 &)
-> When I started without a line "exec /lbin/menu/operation.sh" and after call the command with exec, that works fine.
Could someone help me, please?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-29-2003 06:11 AM
08-29-2003 06:11 AM
Re: Reflection X - xtem HP-UX 10.20
I don' t now if it work but you can try with:
(/usr/bin/X11/hpterm -fn 6x13 -sb -ls -display %IP#% -name %T% &)
Enrico.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-29-2003 06:17 AM
08-29-2003 06:17 AM
Re: Reflection X - xtem HP-UX 10.20
Enrico,
I've tried to use that you mentioned. And the problem persists.
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-29-2003 06:30 AM
08-29-2003 06:30 AM
Re: Reflection X - xtem HP-UX 10.20
(/usr/bin/X11/hpterm -fn 6x13 -sb -ls -display %IP#% -name %T% &)
(/usr/bin/X11/xterm -fn 6x13 -sb -ls -display %IP#% -name %T% &)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-29-2003 06:36 AM
08-29-2003 06:36 AM
Re: Reflection X - xtem HP-UX 10.20
That is works fine with I comment the line :
"exec /lbin/menu/operation.sh" - script that is a menu wrote in bourne-shell.
The problem is when this line will be executed from .profile.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-29-2003 07:04 AM
08-29-2003 07:04 AM
Re: Reflection X - xtem HP-UX 10.20
try to launch the script without "exec", es put in your .profile the line:
/usr/bin/sh /lbin/menu/operation.sh
Enrico.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-29-2003 07:26 AM
08-29-2003 07:26 AM
Re: Reflection X - xtem HP-UX 10.20
from the reflection X guide:
Does your login shell start another program, or are you running programs in the background?
Some UNIX hosts will suspend a process if there is no standard out (STDOUT) or standard error (STDERR) associated with it, or if a process is started in background. In these cases, there is no "controlling tty."
For example, let's say you are connecting to a UNIX host and using the Bourne shell. When you log in, the Bourne shell looks for a file called .profile in your home directory. If .profile includes a command to start another application, such as an editor, the editor can't write to STDOUT because the process was started remotely. You can, however, always write to /dev/null. Redirect the STDOUT and STDERR of the editor to /dev/null in the directory from which the editor is started:
editor >/dev/null 2>&1 & (for the Bourne and Korn shells)
editor >& /dev/null & (for the C shell)
?? 1993-1996 WRQ, Inc.
Enrico