336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.
The general job control commands in Linux are:
- jobs - list the current jobs
- fg - resume the job that's next in the queue
- fg %[number] - resume job [number]
- bg - Push the next job in the queue into the background
- bg %[number] - Push the job [number] into the background
- kill %[number] - Kill the job numbered [number]
- kill -[signal] %[number] - Send the signal [signal] to job number [number]
- disown %[number] - disown the process(no more terminal will be owner), so command will be alive even after closing the terminal.
출처: http://superuser.com/questions/268230/how-can-i-resume-a-stopped-job-in-linux
ctrl + z 했을 경우
jobs 로 확인했을 때 백그라운드로 실행되고 있는걸 확인할 수 있다.
fg로 프로세스를 재개할 수 있음.
'Linux' 카테고리의 다른 글
vsftpd 설치설정 (2) | 2015.01.11 |
---|---|
fedora APM 설치 (2) | 2015.01.11 |
secure crt 배경색 (0) | 2014.12.27 |
숫자 비교 검사 (0) | 2014.05.13 |
ls 디렉토리랑 그냥이랑 (0) | 2014.05.13 |