large amount files

  1. W

    Very odd issue with new RAID 5 HDDs. Some data keeps disappearing when running large copies.

    I have 2 almost identical servers both running Ubuntu 20.04.5 LTS each with the same HDD brand setup in RAID 5 configurations. I have around 10TB of data I am attempting to copy to both servers. Everything worked fine on the first server. However, on the second server, the copy script seems to...
  2. L

    What is the best method in bash to copy large amount of files

    My question: I have a large amount of files on a disk and I have three different methods to move/copy them: 1. using find: ``` find /disk -xdev -type f -iname "*.pdf" -exec cp -ga "{}" /dest \: ``` 2. using find print0 and grep -z: ``` find /disk -xdev type f -iname "*" -print0 > ./alllist.txt...
Top