ldd
是一个有用的命令,它显示共享库文件的位置。假设以下命令
$ ldd foo.so
libpython2.4.so => /path/to/file
我怎样才能删除该链接以便我将
$ ldd foo.so
libpython2.4.so => not found
?
答案1
你可以
mv /path/to/file /path/to/file_tmp
不过,根据库的不同,你这样做可能会破坏很多东西。
ldd
是一个有用的命令,它显示共享库文件的位置。假设以下命令
$ ldd foo.so
libpython2.4.so => /path/to/file
我怎样才能删除该链接以便我将
$ ldd foo.so
libpython2.4.so => not found
?
你可以
mv /path/to/file /path/to/file_tmp
不过,根据库的不同,你这样做可能会破坏很多东西。