Comments on How to Install Bitwarden Password Manager on Debian 11
Bitwarden is a free and open-source password manager that stores website credentials in an encrypted vault. It allows you to store all of your login credentials and keep them synced between all of your devices. In this post, we will show you how to install the Bitwarden password manager on Debian 11.
3 Comment(s)
Comments
Please :
mv docker-compose-linux-x86_64 /usr/bin/docker-composeDon't do that !
move it to /usr/local/bin/ but never to /usr/bin.
/usr/bin is for system / package , not external binary
The following instruction is not correct and should be broken into two lines, the first for the update and the second for the install or use && between them "
apt-get update -y apt-get install docker-ce docker-ce-cli containerd.io -yOn Debian there is much easier way to add the Docker repository. You can use the Debian's extrepo tool which is used to add external repositories to Debian. Do this as a root user:
1) Install extrepo if you have not installed it yet
apt install extrepo
2) Add Docker repository to system:
extrepo enable docker-ce
3) Update the package database:
apt update
Now you can install Docker
Regards
miksuh