linux

centos 8 - fuser

sysman 2020. 12. 21. 11:06

centos 8에서 fuser 이 안됨

 

minimum 버전에서는 fuser 가 없어 설치가 필요

 

#dnf -y install psmisc   //fuser 설치

#fuser -v /home    //home 사용자 확인

#fuser -cu /home   //-c pid, -u user 옵션

 

# fuser -cu /home
/home:               13576c(root)

 

# ps -ef | grep 13576   //권한없는 사용자 접근한 pid 확인
root       13576   13574  0 20:59 pts/0    00:00:00 -bash

 

# kill -9 13576   //제거

 

 

'linux' 카테고리의 다른 글

Centos - nfs 설정  (0) 2020.12.27
centos linux -vsftpd 설정  (0) 2020.12.26
centos 8 ntp (=chrony) 설정  (0) 2020.12.20
Centos - dhcp server 설정  (0) 2020.12.20
centos6 이하 nat 설정  (0) 2020.12.13