commit 2868fc56a917d97aa757839e41067f1a1d733b30 Author: Michel Date: Fri Oct 13 22:29:27 2023 +0200 Initial commit diff --git a/google-chrome.md b/google-chrome.md new file mode 100644 index 0000000..266d2e3 --- /dev/null +++ b/google-chrome.md @@ -0,0 +1,34 @@ +# Google Chrome + +## Tested with + +* Linux Mint 21.2 Cinnamon +* Google Chrome Versie 118.0.5993.70 (Officiële build) (64-bits) + +## Installation steps + +``` +curl -fSsL https://dl.google.com/linux/linux_signing_key.pub | sudo gpg --dearmor | sudo tee /usr/share/keyrings/google-chrome.gpg >> /dev/null +``` + +``` +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 +``` + +``` +sudo apt update +``` + +``` +sudo apt install -y google-chrome-stable +``` + +## Removal + +``` +sudo apt autoremove --purge google-chrome-stable +``` + +## Source + +* [LinuxCapable](https://www.linuxcapable.com/how-to-install-google-chrome-on-debian-linux/) diff --git a/readme.md b/readme.md new file mode 100644 index 0000000..db0ac85 --- /dev/null +++ b/readme.md @@ -0,0 +1,12 @@ +# Debian information + +My collection of readme files for Debian based desktop opperating systems. + +## Software installation + +* [Google Chrome](google-chrome.md) +* [Steam](steam.md) +* [VirtualBox](virtualbox.md) + +## Tips +* [Type characters with accents like in Windows](type-characters-with-accents-like-in-windows.md) diff --git a/steam.md b/steam.md new file mode 100644 index 0000000..4f33091 --- /dev/null +++ b/steam.md @@ -0,0 +1,34 @@ +# Steam + +## Tested with + +* Linux Mint 21.2 Cinnamon +* Steam Version 1696019606 + +## Installation steps + +``` +sudo wget -O- http://repo.steampowered.com/steam/archive/stable/steam.gpg | gpg --dearmor | sudo tee /usr/share/keyrings/steam.gpg +``` + +``` +echo deb [arch=amd64 signed-by=/usr/share/keyrings/steam.gpg] http://repo.steampowered.com/steam/ stable steam | sudo tee /etc/apt/sources.list.d/steam.list +``` + +``` +sudo apt update +``` + +``` +sudo apt install -y steam +``` + +## Removal + +``` +sudo apt autoremove -y --purge steam +``` + +## Source + +* [Linux Shout](https://linux.how2shout.com/3-ways-to-install-steam-on-linux-mint-or-lmde/) diff --git a/type-characters-with-accents-like-in-windows.md b/type-characters-with-accents-like-in-windows.md new file mode 100644 index 0000000..55f4533 --- /dev/null +++ b/type-characters-with-accents-like-in-windows.md @@ -0,0 +1,16 @@ +# Type characters with accents like in Windows + +When instead of use Ctrl + Shift + U to enter characters with accent you want to type them like normal in Windows (first put in an accent and the the letter you want that accent on) you need to read on. + +*Note: this tip was tested on a Dutch version of Linux Mint. Keep this in mind for other derivatives of Debian and some translation errors by me.* + +## Steps + +* Open your "Start" menu and open the "Keyboard" under "Preferences". +* Click on layout and add a new keyboard layout by clicking the "+" button. +* Search for "English (US, International, with dead keys)" and click add. +* Delete the other layout(s) if you don´t need them (anymore). +* Close the window. + +## Source +* [Linux Mint Forums](https://forums.linuxmint.com/viewtopic.php?t=34556) \ No newline at end of file diff --git a/virtualbox.md b/virtualbox.md new file mode 100644 index 0000000..26e86b6 --- /dev/null +++ b/virtualbox.md @@ -0,0 +1,22 @@ +# VirtualBox + +## Tested with + +* Linux Mint 21.2 Cinnamon +* VirtualBox Version 6.1.38_Ubuntu r153438 + +## Installation steps + +``` +sudo apt update +``` + +``` +sudo apt install -y virtualbox virtualbox-ext-pack +``` + +## Removal + +``` +sudo apt autoremove -y --purge virtualbox virtualbox-ext-pack +```