Re: speed of dd

2021-03-16 Thread Samuel Sieb
On 3/16/21 6:32 AM, elder sixpack13 wrote: AFAIK, flashdrives operates the same as ssd's. while SSD's and pricey flashdrive (e.g. Sandisk Extreme) support the trim command to erase occupied space the sheaper flashdrives do not support trim, what means they get slower over time. deleted contents

Re: speed of dd

2021-03-16 Thread elder sixpack13
> When I do something like: > > dd if='fedora.iso' of=/dev/sdb status=progress > > I only get around 6 megabytes per second on a USB 2 Sandisk Cruzer > Blade flashdrive (store bought, not fleabay) plugged directly into a > motherboard's USB 3 port - one that's not sharing its host with any > oth

Re: speed of dd

2021-03-16 Thread Thomas Stephen Lee
On Mon, Mar 15, 2021 at 12:45 AM Samuel Sieb wrote: > > On 3/14/21 4:05 AM, Ed Greshko wrote: > > Changing to bs=65536 I get overall 93.5 MB/s on a 2.1 GB iso transfer. > > Just a suggestion that using bs=64K might be easier to remember and > type, although I usually use at least bs=1M. A hack th

Re: speed of dd

2021-03-14 Thread Samuel Sieb
On 3/14/21 4:05 AM, Ed Greshko wrote: Changing to bs=65536 I get overall 93.5 MB/s on a 2.1 GB iso transfer. Just a suggestion that using bs=64K might be easier to remember and type, although I usually use at least bs=1M. ___ users mailing list -- u

Re: speed of dd

2021-03-14 Thread Roger Heflin
Writing to flash has more to do with how the flash firmware works. To write to flash a full block needs to be erased and then you can write to it. Some firmware/devices keep free already zero'ed blocks and those can be written to fast but once those run out then it has to erase before writes.

Re: speed of dd

2021-03-14 Thread Digimer
On 2021-03-14 7:05 a.m., Ed Greshko wrote: > On 14/03/2021 18:00, Tim via users wrote: >>   dd if='fedora.iso' of=/dev/sdb status=progress >> >> I only get around 6 megabytes per second on a USB 2 Sandisk Cruzer >> Blade flashdrive (store bought, not fleabay) plugged directly into a >> motherboard'

Re: speed of dd

2021-03-14 Thread Ed Greshko
On 14/03/2021 18:00, Tim via users wrote: dd if='fedora.iso' of=/dev/sdb status=progress I only get around 6 megabytes per second on a USB 2 Sandisk Cruzer Blade flashdrive (store bought, not fleabay) plugged directly into a motherboard's USB 3 port - one that's not sharing its host with any o

Re: speed of dd

2021-03-14 Thread Eyal Lebedinsky
On 14/03/2021 21.00, Tim via users wrote: When I do something like: dd if='fedora.iso' of=/dev/sdb status=progress I only get around 6 megabytes per second on a USB 2 Sandisk Cruzer Blade flashdrive (store bought, not fleabay) plugged directly into a motherboard's USB 3 port - one that's no

speed of dd

2021-03-14 Thread Tim via users
When I do something like: dd if='fedora.iso' of=/dev/sdb status=progress I only get around 6 megabytes per second on a USB 2 Sandisk Cruzer Blade flashdrive (store bought, not fleabay) plugged directly into a motherboard's USB 3 port - one that's not sharing its host with any other ports in use.