Last active
January 1, 2016 20:29
-
-
Save breuhan/8197614 to your computer and use it in GitHub Desktop.
FreeBSD Base install
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
| #Compat linux | |
| kldload linux | |
| pkg install linux_base-f10 | |
| echo linux_enable=\"YES\" >> /etc/rc.conf | |
| #Base | |
| pkg install bash curl wget git netatalk3 avahi | |
| #linproc to fstab | |
| echo "linproc /compat/linux/proc linprocfs rw 0 0" >> /etc/fstab | |
| mkdir -p /usr/compat/linux/proc; ln -s /usr/compat /compat; mount linproc | |
| #Htop | |
| pkg install htop | |
| #Nzbget | |
| pkg install nzbget | |
| #qemu | |
| pkg install qemu | |
| echo kqemu_enable=\"YES\" >> /etc/rc.conf |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment