skip to Main Content

I am new to Linux and I want to install .Deb software package in Linux. Let say I want to install chromex64.deb, how to install it? can anyone explain it?

2

Answers


  1. You could try running dpkg -i chromex64.deb

    If an error occurs saying that some dependencies are missing, install them using apt-get install

    Login or Signup to reply.
  2. You can install by using dpkg -i command.
    Navigate to download directory and open the terminal.
    Run the following code:

    sudo dpkg -i *.deb
    

    If there is more deb file, specify the file name in place of *
    If you find missing dependencies, you can try
    sudo apt-get update --fix-missing

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search