我从他们的网站上安装了TrueCrypt (.tar.gz文件),通过归档管理器提取到/usr/share/truecrypt。我不再需要这个应用程序,但我不能通过卸载它。
sudo apt-get remove我收到一条错误消息:
'virtual packages like truecrypt cannot be removed'. /usr/share/truecrypt中的所有子目录和文件都有一个挂锁符号。
我不知道如何删除这些基础以外的不想要的应用程序,我希望你能帮上忙。我有一个小(内存),老东芝卫星笔记本电脑,所以它不需要携带任何行李。
谢谢你,大卫

发布于 2014-05-10 12:11:00

打开终端并键入:
sudo /.'/usr/bin/truecrypt-uninstall.sh'返回输出:
TrueCrypt uninstalled.这是卸载TrueCrypt的正常方式,但是您说您将TrueCrypt文件解压到/usr/share/truecrypt,这不是安装TrueCrypt的正常方式,所以如果上面的命令不能工作,打开终端并运行以下命令:
cd /usr/share/ # change directories to the directory that contains truecrypt
sudo rm -r truecrypt # remove the truecrypt directory and all of its contentshttps://askubuntu.com/questions/463785
复制相似问题