如何从 ubuntu 12.04 卸载 armory

如何从 ubuntu 12.04 卸载 armory

我最近安装了比特币军械库在我的计算机上。不幸的是,我没有足够的空间,所以我想暂时卸载它。有人能帮我吗?

谢谢

答案1

你可以试试

sudo apt-get remove $(dpkg -l armory)

如果不起作用,请尝试

sudo apt-get remove $dpkg -l |grep armory)

如果这还不起作用,请尝试这个有保证的方法。

cd <folder where .deb file is stored>
dpkg -r <name of package>.deb

答案2

在 Ubuntu 18 上,最初安装了Armory 0.96.0 适用于 Ubuntu/Debian 64 位,带 GCC 5.3,然后使用以下命令卸载它:

sudo apt remove armory

相关内容