I have Password Safe installed and running OK on my 20.04 LTS notebook.
I got an email advising of an updated version so I downloaded passwordsafe-ubuntu18-1.10-amd64.deb
I found and followed advice from this site to install the update as follows:
chris@CandKAcer:~$ sudo dpkg -i passwordsafe-ubuntu18-1.10-amd64.deb
[sudo] password for chris:
dpkg: error: cannot access archive 'passwordsafe-ubuntu18-1.10-amd64.deb': No such file or directory
chris@CandKAcer:~$ The file passwordsafe-ubuntu18-1.10-amd64.deb is in my downloads folder.
What did I do wrong?
I also tried to Install it by extracting it in Archive Manager, but no go. In an earlier version of Ubuntu the Archive Manager had an Install button which worked fine, but the Extract button in Archive Manager 3.36.1 doesn't do the same!
I know this should be easy, but I'm new to Ubuntu and I'm struggling with this.
Precise step by step instructions would be greatly appreciated.
13 Answers
GUI Method 1
- Install "GDebi Package Installer" from Ubuntu software store.
- Right-click on the
.debfile. - Select "Open with other application".
- Open the file with "GDebi Package Installer".
- Authenticate.
- Press install.
GUI Method 2
- Right-click on the
.debfile. - Select "Open with other application".
- Open the file with "Software Install".
- Authenticate.
- Press "Install".
Command Line Method 1
- Open terminal.
- Type
sudo dpkg -i /home/chris/Downloads/passwordsafe-ubuntu18-1.10-amd64.deband press Enter.
Command Line Method 2
- Open terminal.
- Type
cd Downloadsand press Enter. - Type
sudo dpkg -i passwordsafe-ubuntu18-1.10-amd64.deband press Enter.
Other than dpkg command, you can install gdebi:
sudo apt install gdebigdebi uses in a transparent way dpkg for installing deb packages but also managing automatically the dependencies: so if you don't want to personally worry about dependencies, use gdebi.
sudo gdebi <package-name.deb> 3 Go to Downloads directory before executing the command:
Open Terminal
cd Downloadssudo dpkg -i passwordsafe-ubuntu18-1.10-amd64.deb