Skip to content

Commit b291a13

Browse files
committed
docs(linux): instructions for reinstalling google chrome
1 parent c25c70b commit b291a13

1 file changed

Lines changed: 22 additions & 2 deletions

File tree

programming_notes/linux.md

Lines changed: 22 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,27 @@
11
# Linux
22

3-
Resize an image
3+
## Resize an image
44

55
imagemagick
66

7-
convert -resize 20% source.png dest.jpg
7+
convert -resize 20% source.png dest.jpg
8+
9+
## Reinstall google chrome
10+
11+
Install the `.deb` file (as not available in the official APT repositories).
12+
13+
```
14+
wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
15+
```
16+
17+
Install google chrome.
18+
19+
```
20+
sudo dpkg -i google-chrome-stable_current_amd64.deb
21+
```
22+
23+
Remove the `.deb` file.
24+
25+
```
26+
sudo rm google-chrome-stable_current_amd64.deb
27+
```

0 commit comments

Comments
 (0)