LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Newbie (https://www.linuxquestions.org/questions/linux-newbie-8/)
-   -   cannot install google chrome in fedora (https://www.linuxquestions.org/questions/linux-newbie-8/cannot-install-google-chrome-in-fedora-4175681338/)

sajee 09-01-2020 02:33 AM

cannot install google chrome in fedora
 
# rpm -ivh google-chrome-stable_current_x86_64.rpm
error: open of google-chrome-stable_current_x86_64.rpm failed: No such file or directory

what is the solution for this

JJJCR 09-01-2020 02:46 AM

I searched your error came out this link: https://access.redhat.com/discussions/3539851

This was the response:
Quote:

Hi ! :) Assuming the needed repositories are enabled and correctly configured and you are having a working internet connection ...
sudo yum clean all | sudo rm -r /var/cache/yum | sudo yum update | sudo yum install google-chrome-stable
Good luck!

berndbausch 09-01-2020 04:54 AM

Quote:

Originally Posted by sajee (Post 6161320)
# rpm -ivh google-chrome-stable_current_x86_64.rpm
error: open of google-chrome-stable_current_x86_64.rpm failed: No such file or directory

what is the solution for this

The solution for this is to have a file named google-chrome-stable_current_x86_64.rpm in the current directory.

So my question to you: What did you do to obtain google-chrome-stable_current_x86_64.rpm? And where did you store it?

berndbausch 09-01-2020 04:57 AM

Quote:

Originally Posted by JJJCR (Post 6161324)
Code:

sudo yum clean all | sudo rm -r /var/cache/yum | sudo yum update | sudo yum install google-chrome-stable

I don't like the pipe signs in this command. I would replace them with semicolons or double-ampersands, e.g.
Code:

sudo yum clean all && sudo rm -r /var/cache/yum && sudo yum update && sudo yum install google-chrome-stable
And perhaps yum needs to be replaced by dnf, not sure.


All times are GMT -5. The time now is 02:34 PM.