Slashdot Mirror


User: Mark+Edgar

Mark+Edgar's activity in the archive.

Stories
0
Comments
3
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 3

  1. Re:Does it matter anymore? on Hard Drive Capacity Confusion, Lucidly Explained · · Score: 1

    Reads and writes on ATA (IDE) drives are done with a 512-byte buffer. I believe the same goes for SCSI.

    Sectors are a filesystem concept.

  2. Re:Does it matter anymore? on Hard Drive Capacity Confusion, Lucidly Explained · · Score: 1

    In general, bytes in memory (primary storage, RAM) are measured in base 2 (KiB, MiB, GiB, etc), while other measurements of bits and bytes tend to be in base 10:

    hard drive capacity (40 GB = 40 * 10^12 bytes)
    transmission speeds (100 Mbps = 100 10^6 bits / s)

    You particular O/S may choose to shorthand file sizes using base 2 reduction, but only because programmers put too much emphasis on efficiency; it's faster to bit shift by 10 than divide by 1000.

  3. Re:IP port numbers on IP Address Shortage · · Score: 1

    Actually, IP doesn't have port numbers. Port numbers are at the TCP and UDP level.