如何在ubuntu上安装KeePassX 2.0 Alpha


Answers:


12

从源代码构建我没有任何麻烦:

# Assuming you have basic build tools already installed
sudo apt-get install cmake libgcrypt11-dev
git clone https://github.com/keepassx/keepassx.git
cd keepassx/
mkdir build
cd build
cmake .. -DCMAKE_INSTALL_PREFIX=/usr/local
make 2>&1 | tee make.log
sudo make install 2>&1 | tee make-install.log

1
如果您缺少任何库,请先执行此操作。-sudo apt-get build-dep keepassx-sudo apt-get install ubuntu-dev-tools cmake zlib1g-dev libgcrypt11-dev
神户

这是我曾经成功构建的第一个开源项目。经过数十次尝试,终于有了一个可以在发布时实际运行的构建系统。
ThorSummoner '16

编译后,是否可以完全删除文件夹“ keepassx”?
アレックス


6

只是为了简化事情。要从仓库robo77安装提到:

sudo apt-add-repository ppa:keepassx/daily
sudo apt-get update
sudo apt-get install keepassx
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.