- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- & symble is not working as running back ground pro...
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
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
09-22-2004 04:06 AM
09-22-2004 04:06 AM
Help please...
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-22-2004 04:12 AM
09-22-2004 04:12 AM
Re: & symble is not working as running back ground process
mark
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-22-2004 04:15 AM
09-22-2004 04:15 AM
Re: & symble is not working as running back ground process
OS 10.20
I am running as "ll &"..
It is working on the other systems, but not on this particualr system...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-22-2004 04:19 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-22-2004 04:21 AM
09-22-2004 04:21 AM
Re: & symble is not working as running back ground process
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-22-2004 04:32 AM
09-22-2004 04:32 AM
Re: & symble is not working as running back ground process
Even though the job starts in the background, the job sends the stdout and stderr to the terminal from which it is started.
Now I am curious, what do you mean when you say it is working in other systems ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-22-2004 04:38 AM
09-22-2004 04:38 AM
Re: & symble is not working as running back ground process
ll ; echo $? & echo $?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-22-2004 04:39 AM
09-22-2004 04:39 AM
Re: & symble is not working as running back ground process
An 'll &' will STILL send its output to standard out, which is your terminal.
If you don't want to see anything you would do:
# ll > afile &
(redirect std out to a file)
or you could do
# ll > afile 2>&1 &
(Redireciret stderr to stdout and stdout to afile)
What exactly are you trying to accomplish here?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-22-2004 04:44 AM
09-22-2004 04:44 AM
Re: & symble is not working as running back ground process
Anil
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-22-2004 05:43 AM
09-22-2004 05:43 AM
Re: & symble is not working as running back ground process
aktsds23 / # ll &
[1] 29913
aktsds23 / #
tcl3_APPMGR /users/me> ll &
[1] 24949
tcl3_APPMGR /users/me> total 11282
-rw-rw-r-- 1 t410e59 users 0 Apr 29 10:44 1
-rw-rw-r-- 1 t410e59 users 0 Apr 29 10:42 2
drwx------ 2 root sys 24 Sep 28 1994 Mail
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-22-2004 06:04 AM
09-22-2004 06:04 AM
Re: & symble is not working as running back ground process
What is the output of running "ll" without the "&" on the system in question?
Also, have you checked to see someone created an alias for "ll"?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-22-2004 06:05 AM
09-22-2004 06:05 AM
Re: & symble is not working as running back ground process
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-22-2004 06:22 AM
09-22-2004 06:22 AM
Re: & symble is not working as running back ground process
I take Patrick's suggestion to redirect my std and stderr to a file and run as back groud process. Still not sure why I have two different out put with the same command on these two systems.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-22-2004 10:15 AM
09-22-2004 10:15 AM
Re: & symble is not working as running back ground process
you could check to see which ll it would show if you are using the one u wnated or not!
-Cheers
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-23-2004 07:12 AM
09-23-2004 07:12 AM
Re: & symble is not working as running back ground process
will cause a background process to wait when it tries to write to the terminal.
stty -tostop
will allow a background process to write to the terminal, (but not read from it.)
You can check which setting you have by running
stty -a