Skip to main content
edited body
Source Link
Jeff Schaller
  • 68.8k
  • 35
  • 122
  • 265

Or, alternatively, is there any good way to transfer a large number of small files between different folders and between different servers? My filesystem is ext4.

Rsync over ssh is something I use on a regular basis. It preserves file permissions, symlinks, etc., when used with the --archive option:

rsync -av /mnt/data <server>:/mnt

This example copies the local directory /mnt/data and its contents to a remote server inside /mnt. It invokes ssh to set up the connection. No rsync deamondaemon is needed on either side of the wire.

This operation can also be performed between 2 local directories, or from remote to local.

Or, alternatively, is there any good way to transfer a large number of small files between different folders and between different servers? My filesystem is ext4.

Rsync over ssh is something I use on a regular basis. It preserves file permissions, symlinks, etc., when used with the --archive option:

rsync -av /mnt/data <server>:/mnt

This example copies the local directory /mnt/data and its contents to a remote server inside /mnt. It invokes ssh to set up the connection. No rsync deamon is needed on either side of the wire.

This operation can also be performed between 2 local directories, or from remote to local.

Or, alternatively, is there any good way to transfer a large number of small files between different folders and between different servers? My filesystem is ext4.

Rsync over ssh is something I use on a regular basis. It preserves file permissions, symlinks, etc., when used with the --archive option:

rsync -av /mnt/data <server>:/mnt

This example copies the local directory /mnt/data and its contents to a remote server inside /mnt. It invokes ssh to set up the connection. No rsync daemon is needed on either side of the wire.

This operation can also be performed between 2 local directories, or from remote to local.

Or, alternatively, is there any good way to transfer a large number of small files between different folders and between different servers? My filesystem is ext4.

Rsync over ssh is something I use on a regular basebasis. UsedIt preserves file permissions, symlinks, etc., when used with the --archive option it will preserve file permissions, symlinks etc.:

rsync -av /mnt/data <server>:/mnt

This example will copycopies the local directory /mnt/data and its contents to a remote server inside /mnt. This notation will invokeIt invokes ssh to set up the connection. No rsync deamon is needed on either side of the wire.

This operation can also be performed between 2 local directories, or from a remote to local.

Or, alternatively, is there any good way to transfer a large number of small files between different folders and between different servers? My filesystem is ext4.

Rsync over ssh is something I use on a regular base. Used with the --archive option it will preserve file permissions, symlinks etc.

rsync -av /mnt/data <server>:/mnt

This example will copy the local directory /mnt/data and its contents to a remote server inside /mnt. This notation will invoke ssh to set up the connection. No rsync deamon is needed on either side of the wire.

This operation can also be performed between 2 local directories, or from a remote to local.

Or, alternatively, is there any good way to transfer a large number of small files between different folders and between different servers? My filesystem is ext4.

Rsync over ssh is something I use on a regular basis. It preserves file permissions, symlinks, etc., when used with the --archive option:

rsync -av /mnt/data <server>:/mnt

This example copies the local directory /mnt/data and its contents to a remote server inside /mnt. It invokes ssh to set up the connection. No rsync deamon is needed on either side of the wire.

This operation can also be performed between 2 local directories, or from remote to local.

Source Link
Tim
  • 1.1k
  • 7
  • 25

Or, alternatively, is there any good way to transfer a large number of small files between different folders and between different servers? My filesystem is ext4.

Rsync over ssh is something I use on a regular base. Used with the --archive option it will preserve file permissions, symlinks etc.

rsync -av /mnt/data <server>:/mnt

This example will copy the local directory /mnt/data and its contents to a remote server inside /mnt. This notation will invoke ssh to set up the connection. No rsync deamon is needed on either side of the wire.

This operation can also be performed between 2 local directories, or from a remote to local.