https://github.com/chmodshubham/chrome
Chrome Browser installation on Linux
https://github.com/chmodshubham/chrome
browser chrome
Last synced: 9 months ago
JSON representation
Chrome Browser installation on Linux
- Host: GitHub
- URL: https://github.com/chmodshubham/chrome
- Owner: chmodshubham
- Created: 2023-03-21T21:08:43.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-03-21T21:10:34.000Z (over 3 years ago)
- Last Synced: 2024-04-16T04:13:10.255Z (about 2 years ago)
- Topics: browser, chrome
- Homepage:
- Size: 1000 Bytes
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# chrome
### Download Key
```
wget https://dl-ssl.google.com/linux/linux_signing_key.pub -O /tmp/google.pub
```
### Make a keyring for chrome
```
sudo gpg --no-default-keyring --keyring /etc/apt/keyrings/google-chrome.gpg --import /tmp/google.pub
```
### Set repository
```
echo 'deb [arch=amd64 signed-by=/etc/apt/keyrings/google-chrome.gpg] http://dl.google.com/linux/chrome/deb/ stable main' | sudo tee /etc/apt/sources.list.d/google-chrome.list
```
### Install package
```
sudo apt-get update
sudo apt-get install google-chrome-stable
```