How to download and install .deb files under linux Ubuntu system

The deb file is the installation package format of the linux distribution debian system, and systems such as the debian-based distribution ubuntu use the deb format installation package. We can use the dpkg command to install and manage these deb installation package files.

 

 

method/step

  1. Here I use the ubuntu system for demonstration, first put the deb file in a folder, such as my dolphin_emu file here.

     

  2. Right-click on the folder and " Open in Terminal ".

     

  3. Install using the dpkg command.

    sudo dpkg -i deb filename

     

  4. As a rule of thumb, dependency errors are usually reported, and we can use the following commands to repair the installation.

    sudo  apt-get  install  -f

     

  5. If we want to uninstall the installed application, we use " sudo dpkg -l " to view the installed software and find the name of the installed software.

     

  6. Finally use " sudo dpkg -r softwarename " to uninstall.

    Steps to read

  7. 7

    In ubuntu, we can also try to double-click to open the software center for installation.

     

  8. Double-click to install the deb file package directly, there may be a problem that it cannot be installed. At this time, we recommend using the dpkg command to install.

Guess you like

Origin http://43.154.161.224:23101/article/api/json?id=325484483&siteId=291194637