Created
May 10, 2012 03:48
-
-
Save jiewmeng/2650924 to your computer and use it in GitHub Desktop.
Arch Linux Install
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 ...)` | |
# Using virtual box: modules vboxdrv | |
# Hibernation info: https://wiki.archlinux.org/index.php/Pm-utils | |
# add user groups: audio, lp, optical, storage, video, wheel, games, power, scanner | |
EDITOR=nano visudo | |
pacman -S gedit chromium firefox thunderbird p7zip file-roller ristretto git blender virtualbox virtualbox-additions netbeans apache php php-apache mysql php-intl php-sqlite python python2 glade octave vlc youtube-dl ffmpeg pidgin flashplugin gparted seahorse ntfs-3g meld gummi evince zeitgeist xournal go nodejs mongodb ttf-dejavu font-mathematica ttf-bitstream-vera transmission-gtk mono mod_mono monodevelop jre7-openjdk icedtea-web-java7 gvfs gvfs-smb thunar-archive-plugin xfce4-screenshooter xfce4-wavelan-plugin xfce4-taskmanager xfce4-power-manager xfce4-mpc-plugin xfce4-mount-plugin python2-docutils notify-sharp php-pear phpmyadmin php-mcrypt xorg-utils | |
# configure thunar share http://goo.gl/Ipxqr | |
sudo pear install pecl.php.net/apc | |
# install aurget | |
wget http://aur.archlinux.org/packages/au/aurget/aurget.tar.gz && tar -xvf ./aurget.tar.gz && cd aurget && makepkg -si | |
aurget -S --deps --noedit lightdm lightdm-gtk-greeter gnome-do titanium-studio sublime-text retext qtoctave ttf-google-webfonts nodejs-npm xfce-theme-greybird faenza-icon-theme dockmanager docky xfwm4-tiling xfce4-volumed | |
# LAMP Config : https://wiki.archlinux.org/index.php/LAMP | |
# Improve ext4 performance | |
# - http://menelkir.itroll.org/2011/06/ext4-optimization-for-daily-use.html | |
# - http://blog.smartlogicsolutions.com/2009/06/04/mount-options-to-improve-ext4-file-system-performance/ | |
# | |
# tune2fs -o journal_data_writeback /dev/sdXY | |
# noatime,data=writeback,nouser_xattr |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment