在 CentOS 6.6 上编程时,我删除了一个make clean
在屏幕会话中运行的可执行文件(哎呀,)。
现在,无关的,我想gcore
调试一些东西的过程。我已经重建了可执行文件,但gcore
不接受替换的文件。它知道原始文件已被删除,不会让我转储核心。
# gcore 15659
core.YGsoec:4: Error in sourced command file:
/home/dev/bin/daemon/destinyd (deleted): No such file or directory.
gcore: failed to create core.15659
# ls -l /proc/15659/exe
lrwxrwxrwx. 1 root root 0 Mar 12 21:33 /proc/15659/exe -> /home/dev/bin/daemon/destinyd (deleted)
# ln -s /proc/15659/exe /home/dev/bin/daemon/destinyd
ln: creating symbolic link `/home/dev/bin/daemon/destinyd': File exists
# rm /proc/15659/exe
rm: remove symbolic link `/proc/15659/exe'? y
rm: cannot remove `/proc/15659/exe': Permission denied
FreeBSDgcore
有一个可选参数“ executable ”,看起来很有希望(好像我可以指定要使用的二进制文件不是/proc/15659/exe
),但这对我没有用,因为Linuxgcore
没有任何这样的参数。
有什么解决方法吗?还是我只需要重新启动该过程(使用重新创建的可执行文件)并等待我正在跟踪的错误重现自身?