Skip to content

Instantly share code, notes, and snippets.

@sintaxi
Created July 17, 2014 09:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sintaxi/36daae63a28dbdaea70d to your computer and use it in GitHub Desktop.
Save sintaxi/36daae63a28dbdaea70d to your computer and use it in GitHub Desktop.
arch setup
Add sshkey to know hosts (from local machine)...
scp ~/.ssh/id_rsa.pub root@server-address.com:authorized_keys
Login to VM...
ssh -A root@server-address.com
mkdir .ssh; mv authorized_keys .ssh/authorized_keys
# Update system...
pacman -Syu
Setup pacman ...
haveged -w 1024
pacman-key --init
pkill haveged
Configure pacman to enable Colors and set SigLevel=Never...
vim /etc/pacman.conf
Install basic stuff...
pacman -S make gcc git nodejs
Install mon...
(mkdir /tmp/mon && cd /tmp/mon && curl -L# https://github.com/visionmedia/mon/archive/master.tar.gz | tar zx --strip 1 && make install && rm -rf /tmp/mon)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment