Karna@lemmy.ml to Linux@lemmy.ml · 7 months agoGNU Coreutils 9.5 Can Yield 10~20% Throughput Boost For cp, mv & cat Commandswww.phoronix.comexternal-linkmessage-square61fedilinkarrow-up1260arrow-down13
arrow-up1257arrow-down1external-linkGNU Coreutils 9.5 Can Yield 10~20% Throughput Boost For cp, mv & cat Commandswww.phoronix.comKarna@lemmy.ml to Linux@lemmy.ml · 7 months agomessage-square61fedilink
minus-squarefruitycoder@sh.itjust.workslinkfedilinkarrow-up5·7 months agoDo cp capture the raw bits like dd does? Not saying that its useful in the case you’re describing but that’s always been the reason I use it. When I want every bit on a disk copied to another disks, even the things with no meta data present.
minus-squareSnarwin@kbin.sociallinkfedilinkarrow-up4·7 months agoAs long as you copy from the device file (/dev/whatever), you will get “the raw bits”, regardless of whether you use dd, cp, or even cat.
Do cp capture the raw bits like dd does?
Not saying that its useful in the case you’re describing but that’s always been the reason I use it. When I want every bit on a disk copied to another disks, even the things with no meta data present.
As long as you copy from the device file (
/dev/whatever
), you will get “the raw bits”, regardless of whether you usedd
,cp
, or evencat
.That makes sense. Thanks!