Installing DBeaver on Debian 11 follows pretty much the same steps from Ubuntu 21.10. The two methods of installing are:
- snap
- package
Prerequisites
- Debian 11
- sudo privileges
Install DBeaver using snap
Step 1. Update Debian packages.
sudo apt update
Step 2. Enable snapd
if it’s not.
sudo apt install snapd
Step 3. Install snapd core.
sudo snap install core
Step 4. Instal DBeaver.
sudo snap install dbeaver-ce
Install DBeaver using Package
Step 1. First, take the latest DBeaver package.
wget https://dbeaver.io/files/dbeaver-ce_latest_amd64.deb
Step 2. To start the installation, run:
sudo dpkg -i dbeaver-ce_latest_amd64.deb
Step 3. You may face some dependency problems
. If so, run:
sudo apt install -f
Step 4. Once the dependencies are done run the installation again.
sudo dpkg -i dbeaver-ce_latest_amd64.deb
Conclusion
If you face any difficulties, don’t hesitate to put a comment below. On a side note, follow our official channel on Telegram.