I've recently decided to use my raspberry as a home server/storage. I've used my 1TB storex external hdd to do so.
It is currently formated as NTFS and after installing ntfs-3g im able to write any content. Then i installed samba and all needed dependencies to make it available to the network.
Here is the smb.conf:
Code: Select all
#======================= Global Settings =======================
[global]
workgroup = WORKGROUP
server string = raspnas server
netbios name = raspnas
dns proxy = no
### Logging
log file = /var/log/samba/log.%m
max log size = 1000
syslog = 0
panic action = /usr/share/samba/panic-action %d
### Authentication
security = user
map to guest = pi
#======================= Sharered Folders =======================
[media]
path = /media
guest ok = yes
guest account = ftp
browseable = yes
read only = no
create mask = 0777
directory mask = 0777
writeable = yes
admin users = everyone
Thanks
I