While trying to install the .deb applications in Ubuntu 17.04, it shows errors.
I used dpkg as well :
sudo dpkg -i google-chrome-stable_current_amd64.deb
Error : Using dpkg command
- I tried to install gdebi from command line as well and theres another error:
- I tried to install gdebi from the Application Store, but nothing happens there.
I also downloaded two files of gdebi from Launchpad
gdebi_0.9.5.7+nmu1.dsc
gdebi_0.9.5.7+nmu1.tar.xz
but I dont understand what to do with them.
While trying to update:
sudo apt update
Error :
`E: Malformed entry 1 in list file /etc/apt/sources.list.d/google-chrome.list (Component)
E: The list of sources could not be read. `
sudo apt update
, thensudo apt install -f
finallysudo apt dist-upgrade
– George Udosen Jun 15 '17 at 09:05cat /etc/apt/sources.list.d/google-chrome.list
– George Udosen Jun 15 '17 at 09:12deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main
, but I see yoursdeb dl.google.com/linux/chrome/deb/stable main
. Open that file in an editor likenano
and add a#
to the front of that line and run thosecommands I gave earlier – George Udosen Jun 15 '17 at 09:24deb dl.google.com/linux/chrome/deb/stable main
. Other way around via terminal or something? – Sandeep Kumar Kushwaha Jun 15 '17 at 09:29sudo nano
to edit it, please only add a#
don't change any other thing – George Udosen Jun 15 '17 at 09:30#deb http://dl.google.com/linux/chrome/deb/stable main
– Sandeep Kumar Kushwaha Jun 15 '17 at 09:42