How to install Arch Linux on an VPS (kvm).
This guide assumes the following:
- x86_64, KVM-based VPS
- VPS has one ROM drive (virtio)
- VPS has more around 8 GB RAM
youtube-dl \
--external-downloader aria2c --external-downloader-args '-c -j 3 -x 3 -s 3' \
--user-agent='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36' \
--limit-rate '7.25M' \
--retries '3' \
--no-overwrites \
--call-home \
--write-info-json \
--write-description \
ffprobe -show_entries stream=index,codec_type:stream_tags=language -of compact \
bluray:"/path/to/bluray/folder" 2>&1 | { while read line; do if $(echo "$line" |\
grep -q -i "stream #"); then echo "$line"; fi; done; while read -d $'\x0D' line; \
do if $(echo "$line" | grep -q "time="); then echo "$line" | awk '{ printf "%s\r", $8 }'; fi; done; }
#todo map -d? map -t?
| mkdir gamecontainer | |
| sudo pacstrap -i -c gamecontainer base nano sudo bash-completion | |
| sudo arch-chroot gamecontainer | |
| useradd gamer | |
| passwd gamer | |
| mkdir /home/gamer | |
| chown -R gamer:gamer /home/gamer |