This file contains 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
#!/bin/bash | |
# | |
# Provision for Vagrant box ArchLinux | |
# | |
# Insert to Vagrantfile: | |
# config.vm.provision "shell", path: "https://gist.github.com/smaknsk/8165875/raw" | |
# | |
# | |
# Run nginx, httpd, php-fpm as user: |
This file contains 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
pacman -Syyu | |
# for nvidia xf86-video-nouveau, virtualbox: virtualbox-archlinux-additions | |
pacman -S dbus xorg-server xorg-server-utils alsa-utils mesa xf86-video-ati sudo acpi pm-utils cpufrequtils vbetool xfce4 xfce4-power-manager | |
# start dbus manually | |
# /etc/rc.d/dbus | |
# start dbus automatically | |
# add to rc.conf > DAEMONS=(..., dbus) | |
# Virtual box guest: `modprobe -a vboxvideo vboxguest vboxsf vboxnetflt` or in /etc/rc.conf `MODULES=(... vboxvideo ...)` |
create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "[email protected]"