2007. 11. 3. 21:58 Unix
fuser로 사용자 보기
fuser로 사용자 보기
System V 계열에서는 누가 특정 파일 시스템을 사용하고 있는지 보기 위해
다음의 명령을 사용할 수 있다:
fuser <파일 시스템>
예를 들어, /cdrom 디렉토리에 access 하고 있는 사람을 보려면:
fuser /cdrom
이 명령은 파일 시스템을 unmount 하고자 할 경우 사용중이어서 unmount가
불가능 할 경우에 유용하다.
@@@@@@@@@@@@@@@@@@@[ 원문 ]@@@@@@@@@@@@@@@@@@@
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
UNIX GURU UNIVERSE
UNIX HOT TIP
Unix Tip 2577 - January 22, 2007
http://www.ugu.com/sui/ugu/show?tip.today
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
I SEE YOU WITH FUSER
In System V, you can use the following command to see who is accessing
a particular file system:
fuser <file system>
For example, to see who is accessing the /cdrom directory:
fuser /cdrom
This command is useful if you wish to unmount a file system but the system
is unable to do so because it is being used.