Feel free to skip reading this, is mostly for my notes anyway.
http://archlinuxarm.org/platforms/armv5/pogoplug-v2-pinkgray
I have a 1TB drive in a USB enclosure.
instead of using the entire drive as a single partition, I used +10G for the size of my / partition and finished installing as per the directions
Similar to how it was done in creating the / partition, I used +2G for the second partition and set the type to 82
I then created the final partition accepting all defaults
################################## # Formatting / Mounting # ##################################
mkswap -L hdswap /dev/sda2
mkfs.ext4 /dev/sda3
e2label /dev/sda3 data
mkdir /mnt/data
vi /etc/fstab
add:
LABEL=hdswap None swap sw 0 0 LABEL=data /mnt/data ext4 defaults 0 1
swapon -a
swapon -s
mount /mnt/data
################################## # ZNC # ##################################
The instructions for znc are pretty crap, but this works
http://archlinuxarm.org/support/guides/applications/znc
https://github.com/kylef/znc-arch
################################## # Front LED # ##################################
echo default-on > /sys/class/leds/status:blue:health/trigger
echo default-on > /sys/class/leds/status:green:health/trigger
echo none > /sys/class/leds/status:blue:health/trigger
echo none > /sys/class/leds/status:green:health/trigger