this post was submitted on 06 Jul 2026
259 points (97.4% liked)

Today I Learned

30465 readers
882 users here now

What did you learn today? Share it with us!

We learn something new every day. This is a community dedicated to informing each other and helping to spread knowledge.

The rules for posting and commenting, besides the rules defined here for lemmy.world, are as follows:

Rules (interactive)


Rule 1- All posts must begin with TIL. Linking to a source of info is optional, but highly recommended as it helps to spark discussion.

** Posts must be about an actual fact that you have learned, but it doesn't matter if you learned it today. See Rule 6 for all exceptions.**



Rule 2- Your post subject cannot be illegal or NSFW material.

Your post subject cannot be illegal or NSFW material. You will be warned first, banned second.



Rule 3- Do not seek mental, medical and professional help here.

Do not seek mental, medical and professional help here. Breaking this rule will not get you or your post removed, but it will put you at risk, and possibly in danger.



Rule 4- No self promotion or upvote-farming of any kind.

That's it.



Rule 5- No baiting or sealioning or promoting an agenda.

Posts and comments which, instead of being of an innocuous nature, are specifically intended (based on reports and in the opinion of our crack moderation team) to bait users into ideological wars on charged political topics will be removed and the authors warned - or banned - depending on severity.



Rule 6- Regarding non-TIL posts.

Provided it is about the community itself, you may post non-TIL posts using the [META] tag on your post title.



Rule 7- You can't harass or disturb other members.

If you vocally harass or discriminate against any individual member, you will be removed.

Likewise, if you are a member, sympathiser or a resemblant of a movement that is known to largely hate, mock, discriminate against, and/or want to take lives of a group of people, and you were provably vocal about your hate, then you will be banned on sight.

For further explanation, clarification and feedback about this rule, you may follow this link.



Rule 8- All comments should try to stay relevant to their parent content.



Rule 9- Reposts from other platforms are not allowed.

Let everyone have their own content.



Rule 10- Majority of bots aren't allowed to participate here.

Unless included in our Whitelist for Bots, your bot will not be allowed to participate in this community. To have your bot whitelisted, please contact the moderators for a short review.



Partnered Communities

You can view our partnered communities list by following this link. To partner with our community and be included, you are free to message the moderators or comment on a pinned post.

Community Moderation

For inquiry on becoming a moderator of this community, you may comment on the pinned post of the time, or simply shoot a message to the current moderators.

founded 3 years ago
MODERATORS
 

Source: https://www.scribd.com/doc/235024900/Unit-6-Analysis-1-Memory-Cost

Now think about the amount of storage we will have 45 years from now.

you are viewing a single comment's thread
view the rest of the comments
[–] affenlehrer@feddit.org 3 points 1 day ago* (last edited 18 hours ago) (1 children)

Hi, I don't remember the size of my first HDD, I guess about 40 MB. Was a pretty big boy, filling a whole 5.25 " slot. What I remember most about it, was that my father told me to always park it.

[–] tal@lemmy.today 3 points 19 hours ago* (last edited 19 hours ago) (1 children)

Parking drive heads is indeed the term for the drive moving them off the platter, which it does when cleanly powered down to protect the platter.

searches

Apparently, though I wasn't aware of this until now, some DOS hard drives required manual parking by the user.

https://retrocomputing.stackexchange.com/questions/11545/on-dos-computers-what-would-the-park-command-do

Hard drives have read/write heads which fly above the spinning disks when the drive is powered. When power is removed, the heads no longer fly... For a long time now, the arms which hold the heads have been designed to “auto-park” the heads away from the disks’ surface, or over a safe “landing zone”, when they lose power¹, but early (up to the mid 80s) hard drives didn’t have this feature, so their heads would land on the disk surface, which could sometimes damage the surface.

So early PCs had a PARK command which would park the heads away from the disk surface. Typically, this would attempt to move the heads past the last “official” cylinder (over an “engineering cylinder” on MFM and RLL drives), or, starting with ATs, use the landing zone specified in the BIOS drive parameter table (accessed using the vectors stored at interrupts 0x41 and 0x46). You can see one such implementation in Roedy Green’s PARK which comes with source code, or in Jim Leonard’s disassembly of SpinRite’s PARK.

On PCs with auto-parking heads, it was safe to wait for the DOS command prompt, and the lights to switch off: COMMAND.COM ensures that I/O is finished before it displays the command prompt (and in-memory disk caches are supposed to honour that too).

(In fact, this feature is what allows Roedy Green’s PARK to work too: you’d wait for the command prompt, so there’s no outstanding I/O, then run PARK, which would be loaded from disk, then run with no I/O apart from parking the heads, then either loop forever or return to the command prompt which would normally not result in any I/O either, so the heads would remain safely parked. SpinRite’s PARK waits for the user to press a key, so the user can power the computer off without pressing a key and thus ensure there’s no untoward I/O.)

New PCs in 1994 wouldn’t need this, but it was common for schools to have very old computers, and an early PC requiring PARK wouldn’t be unheard of. Old habits die hard too, so it’s possible that the advice to run PARK was kept alive long after it stopped being relevant, but that would have involved copying the PARK command since it was system-specific and not part of DOS.

If I remember correctly, IDE drives never needed PARK, so you’d only find it on PCs equipped with pre-IDE drives (commonly referred to as MFM or RLL drives).

[–] affenlehrer@feddit.org 2 points 18 hours ago* (last edited 18 hours ago)

I'm not sure what kind of drive it was. I remember using the park command in DOS but it's possible it wasn't actually necessary. I guess my father had experience with earlier drives and just assumed it was good practice. I also remember the park command caused some audible noise from the HDD. Probably some whirring and a click but I'm not sure about this.