How to put a job in background & bring it to foreground?
Answers were Sorted based on User's Feedback
Answer / naveen badam
To run a job in back ground type & at the end of the command
To bring the process to the foreground type fg pid
Pid u can find out by typing jobs cmd
| Is This Answer Correct ? | 4 Yes | 2 No |
Answer / kishore devkate
we can put a job in background by putin & symbol at the end
of the line on the command promt.
example:
#cp -r /var/* /tmp &
We can pull the background job in the foreground by fg
command and pid, before that we have to get the process ID
how to get the process ID see below example.
Example:
#jobs
1+ cp -r /var/* /tmp &
now u can get the job ID then u can bring the job in
foreground see below example
Example:
#fg 1
cp -r /var/* /tmp ----now its show like this
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / srinivas kalvacherla
Consider one ex.
#cp -r /etc/* /directory &
'&' it takes to background
#ps -ef
check the process that is running in the background
#%cp
to bring to foreground.
Regards
kalvacherla.srinivas@gmail.com
| Is This Answer Correct ? | 0 Yes | 3 No |
How do you log in to a remote Unix box?
What is an incremental backup?
How do you create special files like named pipes and device files?
What is ant_build.sh? Have u seen that file?
What are the processes that are not bothered by the swapper? Give Reason.
What are different types of shells?
How to recover a system whose root password has lost?
What is major difference between the Historic Unix and the new BSD release of Unix System V in terms of Memory Management?
win 3.1 is a
What is mean by Mac os? Why it is named as like that? Which purprose it is using? Please answer me. Advance thanks.
What is the difference between hard link & softlink?
What are the events done by the Kernel after a process is being swapped out from the main memory?