1. Notes on setting up the IPFW firewall

    This isn't so much of a proper how-to, but mostly notes to self on how to quickly setup IPFW on FreeBSD 9.

    To enable IPFW:

    Open up /etc/rc.conf and add the following lines:

    firewall_enable="YES" #Enables the firewall - the most important line :)
    firewall_logging="YES" #optional - enables logging - logs …

  2. Simple NFS

    Hi all,

    So those are my quick notes on setting up NFS on FreeBSD 9.1.

    This is based on the handbook and partly on the FreeBSD Diary.

    Server Side

    On the server side, add the following inside /etc/rc.conf:

    rpcbind_enable="YES"
    nfs_server_enable="YES"
    mountd_enable="YES"
    mountd_flags="-r"
    

    Now …




  3. Cassandra installation 1.2.4 on FreeBSD 9.1

    I've been wanting to try out Cassandra for a while now, ever since I heard how easy replication is. Let's start with the basics:

    • Cassandra is a part of Apache Hadoop

    • Cassandra is a NoSQL database

    • Cassandra needs Java

    • Cassandra has two ways to manipulate data - The thrift language and …


  4. Jruby 1.7.3 on FreeBSD 9.1

    Hi all,

    Kinda torn between Jruby and Groovy, so I figured I'll write down the steps I took to get Jruby working on FreeBSD 9.1.

    Prerequisites:

    1. Make sure bash is installed - it looks like Jruby needs it even if you don't actually …


  5. Java (OpenJDK 7) on FreeBSD 9.1 and Groovy 2.1

    Just decided I wanted to get into programming with Groovy again so I took a look to find out how hard would it be to install this on FreeBSD 9.1. Did a little research online and as it turns out, not too hard :)

    First you'll need Java installed - there …


Page 1 / 1