Jump to content

Just built a monter plex server with 130TB of space. 
 

Trying to backup my old server about 30TB to it and I am get a joke of speeds. About 40MB/s over a direct 10G connection with MTUS set at 9000. Yes I have some extremely small files. But at the same time over another 10G from a windows machine I am get between 400MB/s to 1GB/s. 

What am I missing?

Link to comment
https://linustechtips.com/topic/1158338-linux-to-linux-file-transfers-slow/
Share on other sites

Link to post
Share on other sites

1 minute ago, Bmoney said:

Basic one the came with Ubuntu. File Archive I believe. 

Yeah, that's the reason for why your copying is so low. I have no idea what Ubuntu's default file-manager does wrong, but it just is really slow when doing samba file-transfers.

Hand, n. A singular instrument worn at the end of the human arm and commonly thrust into somebody’s pocket.

Link to post
Share on other sites

You can set MTU to 99999999999999 if you wish, it won't have an affect. Ethernet has a hard limit of 1500, the effective value is actually 1472 because of overhead.

Main Rig:-

Ryzen 7 3800X | Asus ROG Strix X570-F Gaming | 16GB Team Group Dark Pro 3600Mhz | Corsair MP600 1TB PCIe Gen 4 | Sapphire 5700 XT Pulse | Corsair H115i Platinum | WD Black 1TB | WD Green 4TB | EVGA SuperNOVA G3 650W | Asus TUF GT501 | Samsung C27HG70 1440p 144hz HDR FreeSync 2 | Ubuntu 20.04.2 LTS |

 

Server:-

Intel NUC running Server 2019 + Synology DSM218+ with 2 x 4TB Toshiba NAS Ready HDDs (RAID0)

Link to post
Share on other sites

12 minutes ago, Bmoney said:

Suggestions?

Well, you could e.g. mount the remote-directory to some local directory and then move the files over. Basically:
 

sudo apt -y install cifs-utils
sudo mkdir /mnt/remoteshare
sudo mount -t cifs //RemoteServerName/ShareName /mnt/remoteshare -o gid=1000,uid=1000
mv -av /some/files/here/* /mnt/remoteshare/
sudo umount /mnt/remoteshare

Can't recommend any file-managers, though. I do 99% of everything I do under Linux on the command-line.

Hand, n. A singular instrument worn at the end of the human arm and commonly thrust into somebody’s pocket.

Link to post
Share on other sites

34 minutes ago, WereCatf said:

Well, you could e.g. mount the remote-directory to some local directory and then move the files over. Basically:
 


sudo apt -y install cifs-utils
sudo mkdir /mnt/remoteshare
sudo mount -t cifs //RemoteServerName/ShareName /mnt/remoteshare -o gid=1000,uid=1000
mv -av /some/files/here/* /mnt/remoteshare/
sudo umount /mnt/remoteshare

Can't recommend any file-managers, though. I do 99% of everything I do under Linux on the command-line.

with /some/files/here/*    

Will that create the directory /here/with all addition sub directories. 

Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

×