GENERAL LIMITATIONS
The OTG hardware on Raspberry Pi has a simpler level of support for certain devices, which may present a higher software processing overhead. The Raspberry Pi also has only one root USB port: all traffic from all connected devices is funnelled down this bus, which operates at a maximum speed of 480mbps.
dd if=/dev/zero of=/mnt/test/testfile bs=1M count=1024 oflag=direct
1024+0 records in
1024+0 records out
1073741824 bytes (1.1 GB) copied, 115.133 s, 9.3 MB/s
dd if=/mnt/test/testfile of=/dev/null bs=1M count=1024 iflag=direct
1024+0 records in
1024+0 records out
1073741824 bytes (1.1 GB) copied, 106.425 s, 10.1 MB/s
#SAMBA Share - Share using username/password
//192.168.1.122/phileserve/savoura/Music /mnt/nas-samba cifs username=nash,password=nash,ro,iocharset=utf8,nolock,noauto,x-systemd.automount,x-systemd.device-timeout=10,sec=ntlm
#SAMBA Share - Share using username/password
//192.168.1.122/phileserve/savoura /mnt/nas-samba cifs username=nash,password=nash,ro,iocharset=utf8,nolock,noauto,x-systemd.automount,x-systemd.device-timeout=10,sec=ntlm
#SAMBA Share - Share using username/password
//192.168.1.122/phileserve /mnt/nas-samba cifs username=nash,password=nash,ro,iocharset=utf8,nolock,noauto,x-systemd.automount,x-systemd.device-timeout=10,sec=ntlm
nano /etc/samba/smb.conf
[phileserve] comment = home storage
path = /mnt/usb-disks
valid users = @users
force group = users
create mask = 0664
directory mask = 0775
force create mode = 0664
force directory mode = 0775
read only = no
systemctl restart smbd nmbd
find /mnt/usb-disks/apothiki/Music -type d -print0 | xargs -0 chmod 775
find /mnt/usb-disks/apothiki/Music -type f -print0 | xargs -0 chmod 664
dd if=/dev/zero of=/mnt/music/testfile bs=1M count=1024 oflag=direct
1024+0 records in
1024+0 records out
1073741824 bytes (1.1 GB) copied, 44.6294 s, 24.1 MB/s
We use essential cookies to make this site work, and optional cookies to enhance your experience.