-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added instructions to install google chrome
- Loading branch information
Johnathan
committed
Oct 28, 2024
1 parent
6379c21
commit adbe9d6
Showing
1 changed file
with
41 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
|
||
# I know, I know. Google Chrome sucks, we wall want to use Open Source Software. | ||
|
||
Alright, as my friend says, *It's over*. I am done trying to keep my data private. That battle has been lost to these predatory companies, so it is time to spoil myself. | ||
I am INSTALLING Google Chrome, but I use OpenSUSE, so remember, my instructions are for that Operating System! | ||
|
||
Instructions to install Google Chrome on OpenSUSE: | ||
|
||
First, Change to your ROOT User by running: | ||
|
||
``` | ||
sudo -i | ||
``` | ||
or | ||
``` | ||
su - | ||
``` | ||
|
||
Add the Google Chrome Repo at: | ||
``` | ||
zypper addrepo http://dl.google.com/linux/chrome/rpm/stable/x86_64 google-chrom | ||
``` | ||
|
||
Enable autorefresh for the repo: | ||
``` | ||
zypper modifyrepo --refresh 1 | ||
``` | ||
|
||
Download the linux signing key: | ||
``` | ||
wget https://dl.google.com/linux/linux_signing_key.pub | ||
``` | ||
and then install that key: | ||
``` | ||
rpm --import linux_signing_key.pub | ||
``` | ||
Install Google Chrome itself: | ||
``` | ||
zypper install google-chrome-stable | ||
``` | ||
|