How To Install .Deb In Ubuntu 20.04?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
1. Download the .deb file:
Open the terminal and use the following command to download the .deb file from the web. Replace the URL with the link of the .deb file you want to download.
wget URL
2. Install the .deb file:
Once the file is downloaded, use the following command to install it. Replace package_name.deb with the actual name of the file you downloaded.
sudo dpkg -i package_name.deb
3. Resolve Dependencies:
Once the installation is completed, you may have to resolve the dependencies. In this case, use the following command.
sudo apt-get -f install