The modmypi link you posted suggests modifying just /etc/fstab to add the new drive so I assume that's all you did
I have a USB stick of a recent raspbian HD install here (so the FS links will be different). For reference..
Code: Select all
proc /proc proc defaults 0 0
/dev/mmcblk0p1 /boot vfat defaults 0 2
#/dev/mmcblk0p2 / ext4 defaults,noatime 0 1
/dev/sda3 / ext3 noatime,errors=remount-ro 0 1
/dev/sda1 /media/usb0 auto rw,user,noauto 0 0
/dev/sda2 /media/usb1 auto rw,user,noauto 0 0
/dev/sda3 /media/usb2 auto rw,user,noauto 0 0
# a swapfile is not a swap partition, no line here
# use dphys-swapfile swap[on|off] for that
/dev/sda2 none swap sw 0 0
and here is the relevant snippet of sudo fdisk -l ..
Code: Select all
Device Boot Start End Blocks Id System
/dev/sdi1 2048 155647 76800 b W95 FAT32
/dev/sdi2 155648 1204223 524288 82 Linux swap / Solaris
/dev/sdi3 1204224 15632383 7214080 83 Linux
Hopefully you can see how they relate to each other - and note the original /dev/mmcblk0p2 commented out - not removed - a good habit to get into if you haven't learnt by trial and many errors already
Other than that, check the syntax of the file - and that it has an empty line at the end