如何安装 CryptoTE

如何安装 CryptoTE

Ubuntu 版 CryptoTE 说明表示deb应该调用。我的 12.04 (Precise) 系统显示没有这样的命令。这个安装过程有什么问题?

导入存储库公钥:

wget -O-https://panthema.net/repo/key.asc| apt-key 添加 -

或者使用 sudo:

wget -O-https://panthema.net/repo/key.asc| sudo apt-key 添加 -

将二进制存储库行添加到 /etc/apt/sources.list:

德布http://panthema.net/repo/ubuntu精准主

更新软件包列表并安装软件包 cryptote:

apt-get 更新 apt-get 安装 cryptote

请注意,我必须使用sudoforwget以及 for apt-key,因此在这方面可能会出现错误。

答案1

Deb 不是命令。给定的命令deb http://panthema.net/repo/ubuntu precise main不是将源添加到的命令/etc/apt/sources.list

相反,它是必须添加到文件中的一行,/etc/apt/sources.list 您需要编辑/etc/apt/sources.list文件并添加以下行

deb http://panthema.net/repo/ubuntu precise main

到文件末尾。

或者您可以使用以下sources.list命令从命令行添加它:apt-add-repository

sudo add-apt-repository "deb http://panthema.net/repo/ubuntu precise main"

如果出现错误,Cannot add PPA: 'No JSON object could be decoded'请手动添加。

然后,更新您的系统,然后cryptoTE通过运行进行安装

sudo apt-get update
sudo apt-get install cryptote

相关内容