I'm new with this so bear with me...
I have this command :
tr '\\0' '\\377' < /dev/zero | dd bs=4096 count=1484095 of=/path/one
Output:
1+1484094 records in
1+1484094 records out
8412124 bytes transferred in 23.670 secs (355391 bytes/sec)
and it doesn't execute for the hole space , meaning bs
*count
bytes (6078853120 bytes). As you can see it just writes 8412124 bytes.
I have added bs and count to fasten the operation.
Where is the issue?
bs
, andbs
is a power of two, so this doesn't look like an integer overflow in display either. Is the target big enough? (It looks like you're onesing out a storage device?) – Ulrich Schwarz Jul 30 '19 at 11:07iflag=fullblock
https://unix.stackexchange.com/a/121868/30851 https://unix.stackexchange.com/a/134308/30851 – frostschutz Jul 30 '19 at 11:29