Skip to main content

Command Palette

Search for a command to run...

Install Debian deb file manually on Debian 11 Linux

Updated
View as Markdown
Install Debian deb file manually on Debian 11 Linux
V
Writer & Software Developer interested in Unix-like systems and Linux.

To install a deb file manually on Debian 11, use the following commands:

sudo apt update
sudo dpkg -i PackageName.deb

These commands run as super-user. The first one updates your APT package manager. The second installs the package and all its dependencies. After running these commands, the new package can then be updated along all your packages with the APT package manager.

To remove a deb file:

sudo dpkg --remove PackageName.deb