जब मैं वर्तमान में लॉन्च की गई बाइनरी फ़ाइल को अधिलेखित करने का प्रयास करता हूं, तो cp
ओवरराइट करने में विफल रहता है, लेकिन rm
यह तब संभव है cp
। उदाहरण के लिए:
user@poste:~$ cp binaryFile /tmp
user@poste:~$ sudo cp /tmp/binaryFile binaryFile
[sudo] password for user:
cp: cannot create regular file `binaryFile`: Text file busy
user@poste:~$ sudo rm binaryFile
user@poste:~$ sudo cp /tmp/binaryFile binaryFile
user@poste:~$ file binaryFile
binaryFile : ELF 32-bit LSB executable, Intel 80386, version 1 (SYSV), dynamically linked (uses shared libs), for GNU/Linux 2.6.24, BuildID[sha1]=0x7ce005d9eb50e2574246b6a881e625802f7e49f2, not stripped
कोई विचार क्यों?