1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64
|
## Introduction
The Linux port of PasswordSafe is currently in BETA.
This means that (1) you should take care to keep copies of the
database to protect against possible loss of data due to bugs, and (2)
there are several unimplemented features. Nonetheless, we feel that
this is good enough to release as an early beta to gather feedback
from a wider audience.
## Supported Distributions
Packages for the versions of Debian, Ubuntu and Fedora that were
current at the time of release may be found on the Github (primary)
and SourceForge (secondary) sites under
https://github.com/pwsafe/pwsafe/releases and
https://sourceforge.net/projects/passwordsafe/files/Linux-BETA/,
respectively.
If you don't find the package for the distribution of your choice, you
can contact the developers via https://pwsafe.org/contact.php or build
it yourself according to the instuctions listed in
README.LINUX.DEVELOPERS.md.
Slackware is independently supported, see below.
## Installation on Debian or Ubuntu
passwordsafe is available as package (https://packages.debian.org/buster/passwordsafe). To install it just use the following command. For Debian stable there are newer versions found in the backports (\*-backports).
```
$ sudo apt install passwordsafe
```
or
1. Download the .deb file that corresponds to your distribution.
2. Install it using dpkg:
```
$ sudo dpkg -i passwordsafe-*.deb
```
Dpkg will complain if prerequisite packages are missing. To install
the missing packages:
```
$ sudo apt -f install
```
## Installation on Fedora
1. Download the .rpm file that corresponds to your distribution.
2. Install it using dnf:
```
$ sudo dnf install passwordsafe-*.rpm
```
## Installation on Gentoo
As usual there are USE flags to control the features of the package.
On Gentoo, suport for Yubi keys and QR is disabled by default.
```
$ sudo emerge app-admin/passwordsafe
```
## Slackware
Slackware users can download SlackBuild for PasswordSafe from
https://slackbuilds.org, courtesy of rfmae (search for passwordsafe).
## Reporting Bugs
Please submit bugs via https://sourceforge.net/p/passwordsafe/bugs/.
Set the Category field to Linux to help ensure timely response.
|