Created
July 17, 2014 09:34
-
-
Save sintaxi/36daae63a28dbdaea70d to your computer and use it in GitHub Desktop.
arch setup
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add sshkey to know hosts (from local machine)... | |
scp ~/.ssh/id_rsa.pub [email protected]:authorized_keys | |
Login to VM... | |
ssh -A [email protected] | |
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