View Single Post
  #7   (View Single Post)  
Old 2nd February 2017
jggimi's Avatar
jggimi jggimi is offline
More noise than signal
 
Join Date: May 2008
Location: USA
Posts: 7,983
Default

Quote:
Originally Posted by hulten View Post
It takes a long time, but I guess I just have to be patient.
Indeed, it takes a very long time.
Quote:
It doesn't matter if I do this over USB 2 or 3, since it does not actually send data over the connecting; the OS just needs to tell the drive how to format it, right?
No, that is an incorrect assumption.

A mass storage device presents either 512-byte or 4096-byte blocks to the systems. On a write operation, the OS sends either 512 bytes or 4096 bytes to be written, along with the sector number to write to.

Every filesystem contains a structure for storing and managing data. You know the ones presented to users, such as Files, and file names. Directories, or folders. You also know about access controls, and status flags such as "read only" or "hidden." But filesystems also contain data that is not presented directly to users, such as lists of free space, and structures to manage lists of used space.

All of those structures must be initiated as data stored on the drive before the file system can be established and used. It is this process which we call "formatting."
Quote:
..it is an EHCI device, so that's USB 2.
If you have USB 3 capability, I recommend it be used.
Reply With Quote