Dec 7, 2003 #1 haneo Programmer Joined Jan 2, 2002 Messages 274 Location 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 Joined Jun 18, 2002 Messages 2,338 Location US You can either use nohup $/path/My_PROCESS or $/path/My_PROCESS >/dev/null Upvote 0 Downvote
Dec 7, 2003 #3 RanganathRamachandra Programmer Joined Nov 24, 2003 Messages 65 Location 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 Joined Apr 13, 2001 Messages 1,552 Location US And HP-UX has the bg command as well. Upvote 0 Downvote
Dec 11, 2003 #5 CWatkins Technical User Joined Dec 11, 2003 Messages 2 Location 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 Joined Apr 1, 2002 Messages 16 Location 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.