728x90 서버 관리3 [Linux/리눅스] 실행 중인 모든 프로세스 한번에 종료하기 kill 명령어에 pid를 하나하나 쓰는 방법(ex, kill 111 222 333)도 있지만 종료할 프로세스가 너무 많을 때 사용하기 좋음 3번 명령어 kill $(ps -ef | awk '{print $2}') 만 실행하면 됨 (1,2는 명령어 풀어서 설명한거 ! ) 1. 현재 실행 중인 모든 프로세스 정보 확인 ps -ef ps -ef 명령어로 현재 실행 중인 모든 프로세스의 정보를 확인하기 이때 PID(Process ID)는 두 번째 열에 나타남 root@79c00c6b662a:/# ps -ef UID PID PPID C STIME TTY TIME CMD root 1 0 0 00:29 pts/0 00:00:00 bash root 13 0 0 00:29 pts/1 00:00:00 bash root .. 서버 관리/Linux 2023. 4. 12. [ubuntu/에러] - 사용자 sudo 오류 해결 (is not in the sudoers file. This incident will be reported) 👻 에러 uni1 is not in the sudoers file. This incident will be reported 🤷♀️이유 사용자 계정이 root 권한이 없기 때문 * sudoers file : Linux 및 Unix 시스템에서 슈퍼 유저 또는 root 권한을 가지지 않는 사용자가 특정 명령어 또는 명령어 그룹을 루트 권한으로 실행할 수 있도록 권한을 부여하는 파일 😃 해결 방법 💁♀️ 해결 방안 1) 사용자를 sudo 그룹에 추가 root 계정으로 이동 후 다음 명령 실행 (혹은 sudo 그룹 내 이용가능 계정으로 이동) root@79c00c6b662a:/# usermod -aG sudo uni1 # /etc/group 등록됐는지 확인 root@79c00c6b662a:/# grep "su.. 서버 관리 2023. 3. 9. [Docker] Ubuntu에서 man 명령어 사용 😢 에러 Docker에서 설치한 Ubuntu 에서 man 명령어를 사용하려는데 에러가 났다 🤷♀️ 깨알지식 (man 명령어 : 리눅스나 유닉스 시스템에서 명령어의 사용법과 정보를 확인하는 데 사용) root@79c00c6b662a:/# man file This system has been minimized by removing packages and content that are not required on a system that users do not log into. To restore this content, including manpages, you can run the 'unminimize' command. You will still need to ensure the 'man-db' pack.. 서버 관리/Docker 2023. 3. 6. 이전 1 다음 728x90