দুটি সম্ভাবনা: lsof
(আমার পছন্দ) বা lslk
(বিশেষত ফাইল লকের জন্য):
[root@policyServer ~]# lslk | grep "master.lock"
SRC PID DEV INUM SZ TY M ST WH END LEN NAME
master 1650 253,0 12423 33 w 0 0 0 0 0 /var/lib/postfix/master.lock
[root@policyServer ~]# lsof | grep "master.lock"
master 1650 root 10uW REG 253,0 33 12423 /var/lib/postfix/master.lock
Lslk এর আউটপুট স্ব-বিস্তৃত তবে lsof
লক বিবরণটি "এফডি" কলামে রাখে (যা 10uW
উপরে রয়েছে)। ম্যান পৃষ্ঠা থেকে:
The mode character is followed by one of these lock characters, describing the type of lock applied to the file:
N for a Solaris NFS lock of unknown type;
r for read lock on part of the file;
R for a read lock on the entire file;
w for a write lock on part of the file;
W for a write lock on the entire file;
u for a read and write lock of any length;
U for a lock of unknown type;
x for an SCO OpenServer Xenix lock on part of the file;
X for an SCO OpenServer Xenix lock on the entire file;
space if there is no lock.
সুতরাং lsof
উপরের "এফডি" কলামটি এখানে ভেঙে যায়:
10
এই খোলা ফাইলটির আক্ষরিক বিবরণকারী। এর সাথে কী যুক্ত?/proc/1650/fd/10
u
ফাইল পড়তে এবং লেখার জন্য উন্মুক্ত
W
প্রোগ্রাম ফাইলটিতে একটি রাইটিং লক আছে।