35 lines
755 B
Markdown
35 lines
755 B
Markdown
# Google Chrome
|
|
|
|
## Tested with
|
|
|
|
* Linux Mint 21.2 Cinnamon
|
|
* Google Chrome Versie 118.0.5993.70 (Officiële build) (64-bits)
|
|
|
|
## Installation
|
|
|
|
```shell
|
|
curl -fSsL https://dl.google.com/linux/linux_signing_key.pub | sudo gpg --dearmor | sudo tee /usr/share/keyrings/google-chrome.gpg >> /dev/null
|
|
```
|
|
|
|
```shell
|
|
echo deb [arch=amd64 signed-by=/usr/share/keyrings/google-chrome.gpg] http://dl.google.com/linux/chrome/deb/ stable main | sudo tee /etc/apt/sources.list.d/google-chrome.list
|
|
```
|
|
|
|
```shell
|
|
sudo apt update
|
|
```
|
|
|
|
```shell
|
|
sudo apt install -y google-chrome-stable
|
|
```
|
|
|
|
## Removal
|
|
|
|
```shell
|
|
sudo apt autoremove --purge google-chrome-stable
|
|
```
|
|
|
|
## Source
|
|
|
|
* [LinuxCapable](https://www.linuxcapable.com/how-to-install-google-chrome-on-debian-linux/)
|