SMB server file size limit
Posted: Sat Feb 01, 2014 7:22 pm
Hello everyone!
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:
I've tested the setup with a windows computer an it worked flawlessly with any file of any size. The i switched to ubuntu and it works fine reading and copying small files. However, when i try to copy files >1,5Gb it says that "there is not enough space on the destination". The destination disk still has ~400Gb.
Thanks
I
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 = everyoneThanks
I