프로세스
-
리눅스에서 프로세스를 포그라운드(forground)에서 백그라운드(background)로 동작시키는 방법 포그라운드 프로세스 수행 junsu@junsu-desktop:~$ cat forground.sh sleep 30 junsu@junsu-desktop:~$ sh forground.sh 일시 중지 junsu@junsu-desktop:~$ sh forground.sh ^Z [1]+ 멈춤 sh forground.sh Ctrl + Z 로 프로세스 중지 백그라운드 수행 junsu@junsu-desktop:~$ jobs [1]+ 멈춤 sh forground.sh junsu@junsu-desktop:~$ bg [1]+ sh forground.sh & junsu@junsu-desktop:~$ jobs [1]+ 실행중..
Linux 포그라운드(forground) 프로세스 백그라운드(background)로 변경하기리눅스에서 프로세스를 포그라운드(forground)에서 백그라운드(background)로 동작시키는 방법 포그라운드 프로세스 수행 junsu@junsu-desktop:~$ cat forground.sh sleep 30 junsu@junsu-desktop:~$ sh forground.sh 일시 중지 junsu@junsu-desktop:~$ sh forground.sh ^Z [1]+ 멈춤 sh forground.sh Ctrl + Z 로 프로세스 중지 백그라운드 수행 junsu@junsu-desktop:~$ jobs [1]+ 멈춤 sh forground.sh junsu@junsu-desktop:~$ bg [1]+ sh forground.sh & junsu@junsu-desktop:~$ jobs [1]+ 실행중..
2022.12.17 -
ps 유틸리티 설치 ps CentOS [root@36db4f37d7cd /]# yum install -y procps Ubuntu root@2e7d55ea6f88:/# apt-get install -y procps 패키지 매니저로 설치가 불가능한 경우 아래 링크를 통해 직접 파일로 다운 받아 설치 합니다. Linux package / utility / libarary 파일 다운로드 리눅스 환경에서 yum 또는 apt-get과 같은 패키지 관리자로 패키지를 다운 받지 못할 때 파일로 준비해야 합니다. package, utility, librarary Repository CentOS Index of /centos mirror.navercorp.com CentOS.. junsuyoun.tistory.com
ps: command not foundps 유틸리티 설치 ps CentOS [root@36db4f37d7cd /]# yum install -y procps Ubuntu root@2e7d55ea6f88:/# apt-get install -y procps 패키지 매니저로 설치가 불가능한 경우 아래 링크를 통해 직접 파일로 다운 받아 설치 합니다. Linux package / utility / libarary 파일 다운로드 리눅스 환경에서 yum 또는 apt-get과 같은 패키지 관리자로 패키지를 다운 받지 못할 때 파일로 준비해야 합니다. package, utility, librarary Repository CentOS Index of /centos mirror.navercorp.com CentOS.. junsuyoun.tistory.com
2022.10.11