Skip to content

Instantly share code, notes, and snippets.

@breuhan
Last active January 1, 2016 20:29
Show Gist options
  • Select an option

  • Save breuhan/8197614 to your computer and use it in GitHub Desktop.

Select an option

Save breuhan/8197614 to your computer and use it in GitHub Desktop.
FreeBSD Base install
#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