not wanting to hihack, but i have a rasberry pi 2 model B on the way and want it to run a NAS as well as some other bits, ive got 3tb of storage accross 4 drives.
What do i need to put them in to hook up to the Rasberry Pi?
I've done this, but you will need to know a little bit of command line Linux and know how to use an SSH / Terminal. Also depends on which distro / flavour - I'm using the Raspi version of Debian. I used PuTTY (portable version) to SSH into the Pi. IP addresses will begin with 192.168.0.X, and I just tried different numbers for X until the Pi connected. Once complete, you can use your Windows networking settings to 'find devices near you' to map the Pi up as a drive letter etc. Note that you'll only get about 12 megabytes per second over wireless as the Pi only has a megabit connection even if the router is a gigabit.
1. install Samba (the NAS server software)
Code:
sudo apt-get install samba samba-common-bin
Note: if some of the install files report as missing (as some of the online guides occurred to me), then also run these lines.
Code:
sudo apt-get update && sudo apt-get install --reinstall samba
sudo apt-get install samba-common-bin
2. once installed, backup Samba's config file in case it goes corrupt.
Code:
sudo cp /etc/samba/smb.conf /etc/samba/smb.conf.old
3. now edit the Samba config file. 'Nano' is the Linux version of MS-DOS' Edit.
Code:
sudo nano /etc/samba/smb.conf
4. once inside the config file, change 'yes' to 'no' on this line.
5. save the config by pressing ctrl-x, then type y for yes, then press enter to re-write the config file.
6. restart Samba.
Code:
sudo /etc/init.d/samba restart
6. add Pi as a Samba user, assuming that Pi is the standard user.
7. create the disk share. The 'disk1' bit can be anything you like. I just used 1 disk personally so disk1 was what I went with. You can create disk2, disk3 and so on.
Code:
sudo mkdir /home/shares
sudo mkdir /home/shares/public
sudo mkdir /home/shares/public/disk1
8. if using NTFS-formatted disks, then install the NTFS compatibility program.
Code:
sudo apt-get install fuse ntfs-3g
9. then mount your disk drive (with it plugged in of course).
Code:
sudo mount /dev/sda1 /home/shares/public/disk1
10. to view the currently plugged in drives, you can do an FDISK like in MS-DOS.
11. of course, you'll want to mount the disk upon every boot if you're going to use the Raspi as a NAS

First, open the FSTAB batch file...
12. ... then add this line at the bottom.
Code:
/dev/sda1 /home/shares/public/disk1 ntfs-3g defaults 0 0
If you want to unmount the drive later on, then use this. "Umount" isn't a typo btw.
Code:
sudo umount /home/shares/public/disk1