현재 시작된 이진 파일을 덮어 쓰려고 할 때 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
왜 그런지 알아?
2
재미있는 작은 스레드이지만 Unix / Linux.SE IMO에 있어야합니다.
—
underscore_d