The Pine performs quite well as a NAS although you are limited by the USB 2.0 interface. Here is what you can expect in real-world use.
For starters you want an 2.5in USB 2.0/3.0 external HDD, a GbE Ethernet switch and a powered USB 2.0 hub. The reason you want a powered USB 2.0 hub is because the drive may/ will likely pull more power than what the Pine's USB 2.0 socket can deliver.
There are many more detailed guides out there on how to use samba - just use google fu. But here is a quick overview of the process:
Having connected everything you will need to mount your HDD. I presume you are running headless so ssh into the Pine and:
It will list your current disks,size, partitions and their mount points etc:
Take note of the output. If you haven't formatted your disk to a particular format, and don't know what format it is in you may want to check it out (e.g.):
Now create a mount point int /media (substitute whatever you want for ExtDrive)
Ok now you can mount your drive (substitute whatever you need for format of the disk, path, etc.)
Now you have your drive mounted and can create a folder you want to share in it... unless you already have a folder in it you wish to share of course or wish to share the entire drive.
Next make sure that your Linux installation has samba installed (not sure if all come with it ?)
Set up samba to use your user account. e.g. I am assuming here you'll use longsleep's base image:
It will prompt you to provide password.
Now you will need to configure samba to share the designated folder:
In the following example I am sharing the mount point of the drive (everything on the drive), but if you want a particular folder shared then just add '/' and name of your shared folder (substitute rest of details as necessary).
Lastly, you'll need to restart samba:
Now your shared folder / drive should be accessible on your network.
If you need more info please read this tutorial which is more detailed.
For starters you want an 2.5in USB 2.0/3.0 external HDD, a GbE Ethernet switch and a powered USB 2.0 hub. The reason you want a powered USB 2.0 hub is because the drive may/ will likely pull more power than what the Pine's USB 2.0 socket can deliver.
There are many more detailed guides out there on how to use samba - just use google fu. But here is a quick overview of the process:
Having connected everything you will need to mount your HDD. I presume you are running headless so ssh into the Pine and:
Code:
lsblk
It will list your current disks,size, partitions and their mount points etc:
Quote:debian@pine64:~$ lsblk
NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINT
sda 8:0 0 55.9G 0 disk /media/ExtDrive2
sdb 8:16 0 149.1G 0 disk
└─sdb1 8:17 0 149.1G 0 part /media/ExtDrive
mmcblk0 179:0 0 29.8G 0 disk
├─mmcblk0p1 179:1 0 50M 0 part /boot
└─mmcblk0p2 179:2 0 29.8G 0 part /
Take note of the output. If you haven't formatted your disk to a particular format, and don't know what format it is in you may want to check it out (e.g.):
Code:
sudo file -sL /dev/sda
Now create a mount point int /media (substitute whatever you want for ExtDrive)
Code:
cd /media
mkdir ExtDrive
Ok now you can mount your drive (substitute whatever you need for format of the disk, path, etc.)
Code:
sudo mount -t ext4 /dev/sdc1 /media/ExtDrive
Now you have your drive mounted and can create a folder you want to share in it... unless you already have a folder in it you wish to share of course or wish to share the entire drive.
Next make sure that your Linux installation has samba installed (not sure if all come with it ?)
Code:
sudo apt-get install samba samba-common-bin -y
Set up samba to use your user account. e.g. I am assuming here you'll use longsleep's base image:
Code:
sudo smbpasswd -a ubuntu
It will prompt you to provide password.
Now you will need to configure samba to share the designated folder:
Code:
sudo nano /etc/samba/smb.conf
In the following example I am sharing the mount point of the drive (everything on the drive), but if you want a particular folder shared then just add '/' and name of your shared folder (substitute rest of details as necessary).
Quote:[Shared]
path=/media/ExtDrive
browseable=Yes
writeable=Yes
only guest=no
create mask=0777
directory mask=0777
public=no
Lastly, you'll need to restart samba:
Code:
sudo service smbd restart
Now your shared folder / drive should be accessible on your network.
If you need more info please read this tutorial which is more detailed.