Dec 7, 2003 #1 haneo Programmer Jan 2, 2002 274 CA When i start a process without the "&" : $/path/My_PROCESS & how to made it in backround ? In Linux you can you do it with Ctrl+Z, and the command "bg" how to do it with HP-UNIX ?. Thx ! CCNA
When i start a process without the "&" : $/path/My_PROCESS & how to made it in backround ? In Linux you can you do it with Ctrl+Z, and the command "bg" how to do it with HP-UNIX ?. Thx ! CCNA
Dec 7, 2003 #2 comtec17 Vendor Jun 18, 2002 2,338 US You can either use nohup $/path/My_PROCESS or $/path/My_PROCESS >/dev/null Upvote 0 Downvote
Dec 7, 2003 #3 RanganathRamachandra Programmer Nov 24, 2003 65 IN have you set the terminal to take ctrl+z as suspend character ? if not, you can do it by typing "stty susp <ctrl+z>". Upvote 0 Downvote
have you set the terminal to take ctrl+z as suspend character ? if not, you can do it by typing "stty susp <ctrl+z>".
Dec 8, 2003 #4 bi Technical User Apr 13, 2001 1,552 US And HP-UX has the bg command as well. Upvote 0 Downvote
Dec 11, 2003 #5 CWatkins Technical User Dec 11, 2003 2 US Unless you're set up differently than "the norm", CTRL-Z then bg works in hpux as well. Upvote 0 Downvote
Dec 29, 2003 #6 dreammer Technical User Apr 1, 2002 16 US If you're using the default POSIX shell, you send the current fg job to background by pressing Ctrl-Z. If Ctrl-Z doesn't work, check stty -a to make sure it's mapped. Upvote 0 Downvote
If you're using the default POSIX shell, you send the current fg job to background by pressing Ctrl-Z. If Ctrl-Z doesn't work, check stty -a to make sure it's mapped.