1

I have copied my terminal information can you help me with this problem?

mig@ubuntu:~$ sudo dkg --install /Path/to/chrome.web 
[sudo] password for mig: 
sudo: dkg: command not found
mig@ubuntu:~$ sudo aåt-get install -f
sudo: aåt-get: command not found
mig@ubuntu:~$ sudo apt-get install -f
Indlæser pakkelisterne... Færdig
Opbygger afhængighedstræ        
Læser tilstandsoplysninger... Færdig
E: Pakken google-chrome-stable:i386 skal geninstalleres, men jeg kan ikke finde noget arkiv med den.
mig@ubuntu:~$ sudo dpkg --install /Path/to/chrome.deb
dpkg: fejl under behandling af /Path/to/chrome.deb (--install):
 kan ikke tilgå arkivet: No such file or directory
Der opstod fejl under behandlingen:
 /Path/to/chrome.deb
mig@ubuntu:~$ sudo apt-get install libxss1 libnspr4-0d libcurl3
Indlæser pakkelisterne... Færdig
Opbygger afhængighedstræ        
Læser tilstandsoplysninger... Færdig
E: Pakken google-chrome-stable:i386 skal geninstalleres, men jeg kan ikke finde noget arkiv med den.
mig@ubuntu:~$ install google chrome
install: cannot stat `google': No such file or directory
mig@ubuntu:~$ dpkg --install /to/chrome.deb
dpkg: error: den ønskede handling kræver superbrugerrettigheder
mig@ubuntu:~$ gigimus
gigimus: command not found
mig@ubuntu:~$ mark all
The program 'mark' can be found in the following packages:
 * mailutils-mh
 * nmh
Try: sudo apt-get install 
mig@ubuntu:~$ sudo apt-get install
Indlæser pakkelisterne... Færdig
Opbygger afhængighedstræ        
Læser tilstandsoplysninger... Færdig
E: Pakken google-chrome-stable:i386 skal geninstalleres, men jeg kan ikke finde noget arkiv med den.
mig@ubuntu:~$ sudo get-apt autoclean^C
mig@ubuntu:~$ ^C
mig@ubuntu:~$ ^C
Saurav Kumar
  • 15,174

2 Answers2

1

The correct app is dpkg, not dkg.Also correct extention is .deb and not .web.

So your command must be sudo dpkg --install /Absolute/Path/to/chrome.deb

Absolute path means you start from /home/{user}/ and not from you home directory.

For example, consider you have stored your file in abc/def/chrome.deb.
Then your command will be sudo dpkg --install $HOME/abc/def/chrome.deb or sudo dpkg --install /usr/<whatever your user name may be, mine is aditya, so I'll put aditya here.You put your's>/abc/def/chrome.deb

An easier way,right click the .deb package and select open with Ubuntu software center.Then select install.

An third way, install gdebi by using this command.sudo apt-get install gdebi.Then right click on your file,select open with gdebi and click install.

0

Just install Ubuntu Tweak and under the apps tab, you will find a link to install Google Chrome directly.


EDIT

Check images below:

enter image description here

enter image description here

Though now in your case, you will have to check the checkbox and then click install.
Hope it works out.

Parto
  • 15,647