InterviewSolution
Saved Bookmarks
| 1. |
What is the command to list all the opened files of user–kunand? |
|
Answer» lsof - ‘LiSt Open FILES’ is used to find out which files are opened or are in use . Example : # lsof -u kunand COMMAND PID USER FD TYPE DEVICE SIZE/OFF NODE NAME sshd 1838 kunand mem REG 253,0 122436 190247 /lib/libselinux.so.1 sshd 1838 kunand mem REG 253,0 255968 190256 /lib/libgssapi_krb5.so.2.2 sshd 1838 kunand mem REG 253,0 874580 190255 /lib/libkrb5.so.3.3 |
|