📆 Article written day: 9/03/2020 📆 Article updated day: 6/18/2022
My System Specs:
- Microsoft Windows 10 Enterprise Version 21H2 (OS Build 19044.1766)
- WSL2 - Ubuntu 22.04 LTS
- Android Studio Version: Chipmunk 2021.2.1 Patch 1
git is a wonderful SCM, so is extremely important know about its right use. Spent some time reading the articles below contributes to a good code repository.
Start with github code school where you'll learn the basics commands for using git. If you want to understand in detail what each commands does read the official documentation
# Install Gnome and some other useful thins | |
# The official installation guide (https://wiki.archlinux.org/index.php/Installation_Guide) contains a more verbose description. | |
# And based on https://wiki.archlinux.de/title/Anleitung_f%C3%BCr_Einsteiger | |
# I have just copied commands from https://wiki.archlinux.de/title/Anleitung_f%C3%BCr_Einsteiger#Weitere_notwendige_Dienste | |
# It's just to have it with one view after doing a [fresh installation](https://gist.github.com/thacoon/05d5a39606ab554455d6713e8a714b2c) | |
# Some useful services | |
pacman -S acpid ntp dbus cups cronie |
# Install ARCH Linux with encrypted file-system and UEFI | |
# The official installation guide (https://wiki.archlinux.org/index.php/Installation_Guide) contains a more verbose description. | |
# Based on https://gist.github.com/mattiaslundberg/8620837 | |
# And based on https://wiki.archlinux.de/title/Anleitung_f%C3%BCr_Einsteiger | |
# Download the archiso image from https://www.archlinux.org/ | |
# Verfiy it (also download the .sig file to verify it) | |
gpg --keyserver-options auto-key-retrieve --verify archlinux-version-x86_64.iso.sig | |
# or if you have already arch installed |
# sysmouse will work with the trackpoint and trackpad, so enable | |
moused_enable="YES" | |
# Power saving features to keep it from getting ridiculously hot | |
powerd_enable="YES" | |
# you'll need to `pkg install drm-510-kmod` | |
kld_list="i915kms" |