Skip to content

Latest commit

 

History

History
21 lines (18 loc) · 383 Bytes

bulk_copy.md

File metadata and controls

21 lines (18 loc) · 383 Bytes

rsync - Copy directory

rsync --ignore-existing --progress -rvh /source/path /dstination/path
  • -r recursive
  • -v verbose
  • -h human unit

dd - Clone disk / partition

# get disks
fdisk -l

# clone disk
dd if=/dev/sdb of=/dev/sdc

# clone partition
dd if=/dev/sdb1 of=/dev/sdc1
  • if= source disk / partition
  • of= destination disk / partition