无法卸载 TrueCrypt

Dav*_*eyT 0 encryption uninstall apt

我从他们的网站(.tar.gz 文件)安装了 TrueCrypt,通过存档管理器提取到/usr/share/truecrypt. 我不再需要该应用程序,但无法通过以下方式卸载它

sudo apt-get remove
Run Code Online (Sandbox Code Playgroud)

我收到一条错误消息:

'virtual packages like truecrypt cannot be removed'. 
Run Code Online (Sandbox Code Playgroud)

所有子目录和文件上/usr/share/truecrypt都有一个挂锁符号。

我不知道如何删除这些基础之外不需要的应用程序,希望您能提供帮助。我有一个小的(内存),旧的东芝卫星笔记本电脑,所以它不需要携带任何行李。

谢谢,大卫

在此处输入图片说明

kar*_*rel 6

在此处输入图片说明

打开终端并输入:

sudo /.'/usr/bin/truecrypt-uninstall.sh'
Run Code Online (Sandbox Code Playgroud)

返回输出:

TrueCrypt uninstalled.
Run Code Online (Sandbox Code Playgroud)

这是卸载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 contents
Run Code Online (Sandbox Code Playgroud)