Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 14711 타일 뒤집기
- 원격 연결 포트 포워딩
- django settings.py
- windows apache wsgi 에러
- django apache deploy error
- django windows 배포 에러
- 18233 java
- APPEND_SLASH = FALSE
- 2661 좋은 수열
- 2961 java
- apache pythonpath
- 2961 도영이가 만든 맛있는 음식
- 공유기 원격 설정
- Problems occurred while performing provisioning operation
- 2661 java
- 2643 java
- The requested operation has failed!
- django 웹 페이지
- 2643 색종이 올려 놓기
- 1188 음식 평론가
- 18233 비트마스킹
- django The requested operation has failed!
- django
- java di
- 1188 java
- 14711 java
- django 프로젝트 시작
- windows 원격 연결 설정
- 18233 러버덕
- django httpd error
Archives
라이브러리는 도서관 아닌가요
Ubuntu job 종료 (stopped job 종료) 명령어 본문
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.
출처: https://superuser.com/questions/268230/how-can-i-resume-a-stopped-job-in-linux
예를 들어 shell 창에서 jobs만 입력하면, 현재 실행 중인 job들을 확인할 수 있고,
fg를 입력하면 방금 전에 큐에 들어간 작업을 다시 불러온다.
'Linux > Ubuntu' 카테고리의 다른 글
[apache2] 버전 확인, log 접속 기록 보기 (0) | 2021.12.19 |
---|---|
[우분투 명령어] find 전체 조회(log4j), permission 안 뜨게 (0) | 2021.12.18 |
Comments