How To Install Debian Files On Ubuntu?

Download the `.deb` file

Open a terminal

Update package lists: `sudo apt update`

Install the package: `sudo apt install ./package.deb`

If needed, use: `sudo dpkg -i package.deb`

Fix missing dependencies: `sudo apt -f install`

Verify the installation: `dpkg -l | grep package-name`

Remove the package if needed: `sudo apt remove package-name`

Suggested for You

Trending Today