Hallo,
ich habe ein Gigabit Netzwert zwischen meinem Media PC (Arch linux) und meinem Desktop PC (Arch linux).
iperf sagt alles super, volles Gigabit.
Jetzt versuche ich von meinem Desktop PC (Dualboot Windows) auf die Samba freigaben zuzugreifen => 5,5GB .iso laed mit 15MB/Sek (unterirdisch)
Danach habe ich zufeallig gesehen dass es seit einem update auch bei Win 10 Prof einen NFS Client gibt.
Nach der Installation gleich den Test => gleiche .iso Datei laed mit 90MB/Sek (OK)
Jetzt meine Frage, ist Samba einfach muell oder bekomm ich Samba auch auf min mal 70MB/Sek?
Hier meine SMB conf:
#======================= Global Settings =====================================
[global]
# workgroup = NT-Domain-Name or Workgroup-Name
workgroup = LEIMEN
# server string is the equivalent of the NT Description field
server string = Arch Media Server
# forum thread kde dolphin -> faster dolhin directory listing
socket options = TCP_NODELAY SO_RCVBUF=8192 SO_SNDBUF=8192
# this tells Samba to use a separate log file for each machine
# that connects
log file = /var/log/samba/%m.log
server signing = disabled
# Put a capping on the size of the log files (in Kb).
max log size = 50
# Security mode. Most people will want user level security. See
# security_level.txt for details.
security = user
#============================ Share Definitions ==============================
[homes]
comment = Home Directories
browseable = no
writable = yes
[Backup]
comment = Backup Drive
path = /srv/backup
public = yes
read only = true
force group = share
create mask = 0775
directory mask = 0775
write smb_admin
[General]
comment = Data Drive
path = /srv/data/General
public = no
writeable = yes
force group = share
create mask = 0775
directory mask = 0775
read only = no
vfs objects = shadow_copy2
shadow:format = General@%Y%m%d_%H%M%S
shadow:sort = desc
shadow:snapdir = /srv/data/.snapshots/General
[Music]
comment = Music Drive
path = /srv/data/Music
public = no
writeable = yes
force group = share
create mask = 0775
directory mask = 0775
read only = no
vfs objects = shadow_copy2
shadow:format = Music@%Y%m%d_%H%M%S
shadow:sort = desc
shadow:snapdir = /srv/data/.snapshots/Music
[Movie]
comment = Movie Drive
path = /srv/data/Movie
public = no
writeable = yes
force group = share
create mask = 0775
directory mask = 0775
read only = no
vfs objects = shadow_copy2
shadow:format = Movie@%Y%m%d_%H%M%S
shadow:sort = desc
shadow:snapdir = /srv/data/.snapshots/Movie
[Picture]
comment = Picture Drive
path = /srv/data/Picture
public = no
writeable = yes
force group = share
create mask = 0775
directory mask = 0775
read only = no
vfs objects = shadow_copy2
shadow:format = Picture@%Y%m%d_%H%M%S
shadow:sort = desc
shadow:snapdir = /srv/data/.snapshots/Picture