How did Microsoft store 1.68 MB on Windows 95 Setup diskettes?

Поділитися
Вставка
  • Опубліковано 8 чер 2024
  • When you look at Windows 95 installation disks, you will notice that the boot disk, as well as the first setup disk are regular sized images. The rest of the images seem to be larger by around 250 kilobytes.
    In this video, I will have a look at floppy disks and a different way to format a floppy disk allowing up to 1.72 MB of space.
    DFFormat 1.8:
    www.dropbox.com/sh/0jfpi1oobl...
    github.com/christoh/fdformat
    In need of Diskettes?
    US:
    Verbatim 3.5: amzn.to/3OluQTf
    Imation 3.5: amzn.to/43A2KrN
    DE:
    Verbatim 3.5: amzn.to/3K6cxyZ
    TDK MF-2H: amzn.to/3pWcO0o
    UK:
    Nashuatec 3.5: amzn.to/3XZ4bi6
    Verbatim 3.5: amzn.to/3Y3f4iX
    You can support me on Patreon:
    / bitsundbolts
    00:00 Intro
    01:23 Windows 95 Floppy Disks
    03:25 How did Microsoft store more data
    08:55 FDFormat: The powerful formatting tool
    12:08 Write DMF image to floppy
    13:12 Pushing the limits
    16:54 1.72 MB
    18:01 Floppy drive compatibility
    19:26 Interleave and floppy speed
    21:40 Summary
  • Розваги

КОМЕНТАРІ • 762

  • @TSteffi
    @TSteffi 11 місяців тому +150

    Interleave is all about read speed.
    You see, most of the time, the computer will read more than one sector. But when reading a sector, there is some overhead. Because the driver has to hand off data to the OS, advance its buffer pointers, decrement counters, stuff like that. So what happens is, the computer needs a little extra time in between each sector. This could be accomplished by just leaving larger gaps, but that would waste space.
    So, what you really do is, you change the order of the sectors on the track. Instead of storing 9 sectors as (1,2,3,4,5,6,7,8,9) and interleave of 2 will skip every other sector, arranging them like (1,6,2,7,3,8,4,9,5). That means, after reading sector one, the computer has time while sector 6 is moving past the drive head, and then it can read sector 2. Then again it can do "housekeeping" while sector 7 passes the drive head, and go on to read sector 3.
    Without interleave, a slow computer would have to wait a full rotation of the floppy until it could read the next sector, wasting a lot of time.
    The same technique was used on early harddisks. Since they were faster than floppies, the problem was even more impactful. And you could get better performance out of your disk if you determined the optimal interleave for your specific system. Because it depends on the speed of your system, the rotation of the disk and the controller, the optimal interleave has to be determined for each specific system. And it could be fine tuned to not miss a sector on sequential read, but not interleaving to much.
    Hope this helps.

    • @ikemkrueger
      @ikemkrueger 11 місяців тому +4

      That logic went all into the controller of the harddisk.

    • @sjogosPT
      @sjogosPT 11 місяців тому +7

      Thank you for excelent explaination.

    • @mikkelbreiler8916
      @mikkelbreiler8916 11 місяців тому +4

      Man - you really take me back.

    • @christoffer4862
      @christoffer4862 8 місяців тому +3

      Thank you! I have always wondered what Interleave means.

    • @jeffm2787
      @jeffm2787 8 місяців тому +1

      Guess I should have read the comments before replying with a short but similar answer. Interleave way back when was a major issue with MFM and RLL hard drives. Too small and the drive would be crazy slow, too large and it would just not be as fast as possible. I recall using Gibson research Spinrite to calculate and adjust the interleave on old drives.

  • @GodKitty677
    @GodKitty677 Рік тому +270

    So you got the Windows 95 install on floppy disks. I see you have chosen the path of pain. OSR 2.1 HAD 26 floppy disks.

    • @haraldhimmel5687
      @haraldhimmel5687 Рік тому +60

      OS/2 had roughly 100 back in the day. You could make them from the CD per batch file. Problem there was that this only worked until you hit a bad floppy and then you had to start the process all over again. Path of pain indeed.

    • @bitsundbolts
      @bitsundbolts  11 місяців тому +25

      So be it 😅

    • @TheDunbartxeen
      @TheDunbartxeen 11 місяців тому +5

      I actually had to do this once. Installing Win 95 via Floppy 😅

    • @OriruBastard
      @OriruBastard 11 місяців тому

      Oh yeah, good times... Good times...

    • @Bergwacht
      @Bergwacht 11 місяців тому

      u mean the path of fun ? :D

  • @matthewday7565
    @matthewday7565 Рік тому +305

    Interleave has to be increased to 2 for a 21 sector DMF, as there is just not enough space / time for the sector gaps, the drive just cannot synchronize the read... a bit like for very old HDD where the interleave was about 6 for a slow 8 bit controller, and down to 2 for an unbufferred 16 bit.
    The slip / skew options are powerful when used right.
    On an 18 or 20 sector, typically a skew factor of 3 on track, and 0 or 1 on head gives an improvement, as otherwise the drive will miss the next sector and waste a rotation on track stepping, while some drives may be able to switch the head fast enough.
    The sector alignment of DMF may already provide a skew factor.
    Also, one beware on T82 (more so if you risk T83 or T84). If the drive uses a lead screw mechanism, over-tracking can jam it... bumping the end stop on other mechanisms is not great for them, but not usually fatal.
    Secondly, if searching for the over tracking limit, or just using T82, use verify after format rather than the verify at the same time (which may be faster), otherwise it won't know that its overwriting the track while its endstopped

    • @southernflatland
      @southernflatland 11 місяців тому +12

      What is this floppy disk interleave thing anyways? I've literally reverse engineered the floppy disk formats in hex disk editors and never heard of any interleave factor.
      I've even made my own versions of Win311 that fit on a single floppy disk. Tried all formats including these, and get a very regular timed tick tick tick readback.
      Thought that interleave only applied to super early hard drives.
      Edit: I forget, I made sure my files loaded in order and had no fragmentation.

    • @fbeverborg
      @fbeverborg 11 місяців тому +30

      Interleave make the floppy slower for better performance on slower machines. It does not write the sectors sequentially, so e.g. 1, 9, 2, 10, 3, 11... for interleave=2 This halves the transfer rate because the drive has to rotate two times to read a track. So it is ideal to have a interleave that make the drive just a tiny bit slower than the max transfer rate of the machine. Otherwise the drive has to re-read sectors all the time totally tanking performance.

    • @tommygron4636
      @tommygron4636 11 місяців тому +6

      @@southernflatland Interleave affects the way you read a track sequentially. The floppy controller on some machines cannot read all sectors on a track in one rotation if they are in sequence /ie back-to-back), but read one sector, wait one rotation and read the next... on a standard floppy that means 18 rotations to read all sectors in sequence on a track. With interleave you mix them up, so you can read it faster, Basically interleave of 2 means it takes 2 rotations to read all the sectors of one track in sequence, with interleave of 3 it takes 3 rotations and so on.

    • @recycledsteel3693
      @recycledsteel3693 11 місяців тому +7

      ​@@southernflatlandinterleave will only be usful for older, slow machines/io/drives that cannot transfer the data per sector quick enough and so miss the start of the next sector.
      Skew is the same, slow, old, etc. This where you change tracks (move heads) and you miss the start of first sector of the next track.

    • @southernflatland
      @southernflatland 11 місяців тому +2

      @@recycledsteel3693 Oh I get you, I do. I'm familiar with the interleave/skew thing, just never heard of that for floppy disks.
      Makes me wonder what byte I missed in the hex decode of floppy disk FAT12 format.

  • @hyoenmadan
    @hyoenmadan 11 місяців тому +138

    There were official tools distributed by MS at their old BBS, FTP and some MSDN disks. The name of the tool and ZIP file is called DIAMOND. The DIAMOND tool not only is used to create CAB tailored software installers, but also the DMF disks. CAB fileformat and Diamond DMF floppy format are meant to work in tandem. As you said, DMF isn't meant to be used in DOS, so Floppy 1 (Boot/MemManager and Boot Tools), and Floppy 2 (Setup and Precopy CAB) are standard 1.44 disks. Once Win31 Standard mode is launched from decompressed Precopy CABs and "graphical setup" launches, LZExpand.dll and its VxD will layer on floppy disk access, and Setup will be able to copy and expand from DMF floppy CABs safely. This is also why NT4 doesn't read/write from DMF Floppies.
    IBM used similar strategy to distribute Floppy software in a fewer floppies. It is called XDF format. But unlike MS, IBM included the required tools built in OS, and while in OS/2, OS floppy driver can read the format natively. I guess PCDOS can also read XDF (no boot), as PCDOS floppy 2 and onwards were XDF if I remember well.

    • @raven4k998
      @raven4k998 11 місяців тому

      how simple compression software simple🤣

    • @hezheng6490
      @hezheng6490 11 місяців тому +2

      DIAMOND later change its name into MakeCAB

  • @thisnthat3530
    @thisnthat3530 11 місяців тому +71

    Because of the original PCs being so slow, the inter-sector gap was long to account for timing inaccuracies when writing. With a computer such as the Amiga which always wrote an entire track rather than single sectors, the large gaps were not needed. This allowed for 11 sectors/track rather than only 9 for a double density disk, or 22 for high density rather than 18 as with an IBM clone. The Amiga standard HD floppy had 1.76MB of space (880kb * 2).

    • @ErazerPT
      @ErazerPT 11 місяців тому +10

      Yep, and because it was "all software" you could then use something like DiskSpare to push that into 960/1920 using the same "non standard tracks'n'gaps" tricks.

    • @BertGrink
      @BertGrink 11 місяців тому +15

      I am also an Amiga owner, and I think the Amiga has the most flexible floppy disk system of all computers. Besides regular Amiga formats, it can also handle PC and Macintosh formats as standard, and can even be further customised if there's a need for it.

    • @CRBarchager
      @CRBarchager 11 місяців тому +3

      I remember to hassle of copying Amiga Disk Format (ADF) images to PC. ADF was 880kb and the Amiage couldn't read 1.44Mb disks, so I had to format them to 720Kb size and compress the 880kb fil to fit. That is how I manage to get all my saved games (and hi-scores) from certain games ported to PC and I still have them.

    • @mrkitty777
      @mrkitty777 11 місяців тому +4

      Pc only supported MFM disk floppy dikettes, Amiga floppy controller was fully programmable

    • @nickpalance3622
      @nickpalance3622 11 місяців тому

      I remember having a game for my Amiga called … Starglider II ? .. on that one single disk was both the Amiga game and Atari ST game. My thought back then was that since both systems were 68000 cpu based, as long as both could read the boot sector (so would have to be MFM to please the ST that used essentially the PC 720KB format.. let’s not split hairs about how early TOS tweaked it) then the boot code could figure out what system it was on. And with the ST single sided 360KB disks were the common denominator and all Amigas having double sided since day one, then the ST could load from just the common side and the Amiga load the 2nd side.
      Anyone know anything more definitive? Was that a good conjecture on my part as a teenager back then?

  • @Choralone422
    @Choralone422 11 місяців тому +110

    I remember formatting floppies to 1.68MB back in those days. It was neat to do, but rather unreliable for long-term storage.
    Also my first experience with Win95 back in those days was via 25 floppies. I got my hands on 95 beta build 359 and it fit on 25 normally formatted disks. Those were the days!

    • @e1woqf
      @e1woqf 11 місяців тому +3

      I remember formatting floppies that way too, back then...

    • @hewhohasnoidentity4377
      @hewhohasnoidentity4377 11 місяців тому +8

      Storing anything short term on floppy disks was not even reliable.

    • @chouseification
      @chouseification 11 місяців тому +13

      yeah I gave a copy of it to our IT department even when I was in college... told them I had the Win95 beta, and gave them a couple of boxes of floppies. I had to remind them after a couple of weeks of inaction that they weren't a GIFT so use it and give them back to me!
      They really dropped the ball on that one... but the Windoze lab head was one of their less enthusiastic people anyways. I was an official beta tester for Windows Powerstation Fortran, which got me the actual Windows 95 beta CDs as well long before release - showing people the Weezer video (often the first decent quality movie anybody had seen on their PC) and watching them drool was always fun.
      Less funny, installing a series of Win97 betas... and then they randomly renamed it to Win98 from one build to the next. :D

    • @tjackson1210
      @tjackson1210 11 місяців тому +1

      @@hewhohasnoidentity4377 yup, floppies were a step up from tape or punch card, but they seem seemed to fuck up often in crucial situations like handing in coursework

    • @tristan6509
      @tristan6509 11 місяців тому +2

      ​@@hewhohasnoidentity4377 floppy disks were very reliable, heck PCs in the 80s used floppies as boot disks, It's just that overtime the quality of each disk went down as the price went down, especially the 3.5" ones.
      The same thing happened to optical media, new CD-Rs and DVD-Rs are susceptible to burn failures compared to their older counterparts as they're made more cheaply.

  • @pgriggs2112
    @pgriggs2112 11 місяців тому +43

    Interleave and sliding are all about having the right sector under the head at the right time. If you don’t have the right sector under the head when the drive is ready to read/write, the disk has to make another rotation, slowing data transfer.

    • @johndododoe1411
      @johndododoe1411 11 місяців тому +3

      Yep, interleave 2 means that to get to the next sector on a drive you rotate the disc 2 sector sizes, so the physical layout with interleave 2 and 21 sectors is: 0 11 1 12 2 13 3 14 4 15 5 16 6 17 7 18 8 19 9 20 10
      This gives the installers one sector of time to process each sector .
      Another trick from the old days now used on hard drives is to use larger sectors by reconfiguring the FDC in the computer without changing the standard TEAC compatible floppy drive that doesn't know about bytes and sectors, it just transfers the bit stream to and from the head .
      Having installed Win95 from floppies before getting a CD-ROM copy, I can tell you that the floppy version contains only the stuff in the numbered CAB files in the main install directory, one CAB per floppy, none of the bonus software in other CD folders .
      I'm actually surprised the DMF discs contained a file system instead of straight CAB files, but I guess that was needed for MS Office floppies under Win 3.x .
      The 1024 cluster size was used on 320K and 360K floppies, so was already in the common floppy drivers etc. 320K floppies were the same as 360K, but 8 sectors/track allowed the entire DOS 1.0 FAT to be a single sector .

  • @annoloki
    @annoloki 11 місяців тому +54

    You can also squeeze a bit of extra space by reducing the copies of the FAT from 2 to 1, which is fine if you don't plan on getting one of the copies corrupted. This halves the number of sectors lost to the FAT.
    To help with speed, you can add the 'buffers' setting to the config.sys, increasing the number of sector buffers and allowing read-ahead buffers as well, which may mean the interleaved sectors can be put in the read-ahead buffer, allowing a track to be read in fewer rotations, eg
    buffershigh=64,8
    Also, see the 'smartdrv' command for speeding up floppy disk access. I don't remember if it was available from the w95 floppies or if I kept a copy from 6.22, but I would make sure I added it (with the 'A' parameter to enable caching + readahead etc for the floppy).
    Man, such obsolete knowledge knocking around here haha I wonder if I can low-level format my brain to get this back?
    Btw, the MS .cab file format used the Diamond compression/format which seemed so slow, I always figured the naming was because "Diamond's are forever"

    • @bitsundbolts
      @bitsundbolts  11 місяців тому +8

      Interesting! Thanks for sharing. There is so much more about diskettes I don't even know. I am completely blown away how many people are watching this video - so much for "obsolete knowledge".

    • @daffy1981
      @daffy1981 10 місяців тому

      smartdrv, that's a flashback! :)

    • @nickwallette6201
      @nickwallette6201 9 місяців тому +1

      I do this from time to time when I'm trying to write a disk that has just a couple KB more than will fit in a standard formatted disk. I don't usually drop the 2nd FAT (although I'm not entirely sure why I don't...), but I will reduce the root directory size to, e.g., 64 entries (which is usually more than enough), or change the cluster size from 512 to 1024, or even higher, if I'm trying to copy a driver installer that uses large compressed files. That, in effect, decreases the size of the FAT, giving you more room for data.
      I haven't yet run into any trouble with any version of DOS or Windows that were offended by a disk that diverged from the way Microsoft's format tools do it (well... caveats...) The document floating around about the FAT format, from Microsoft, expressly requires compatible implementations to read the BIOS Parameter Block and do all of the calculations, vs. making any assumptions.
      The caveats: Just for my own curiosity, I wrote some tools to read and write DOS partition tables and FAT volumes. I've used these from a Linux CLI to prepare hard disks, or images, for use in retro PCs. Windows (9x) will fail to install if you don't comply with _some_ expectations, like the OEM string for example. In some cases, depending on what you changed, it might pass the Scandisk check, but then the installer will fail. They're perfectly valid FAT volumes, but there are some trivial things up with which the Windows installer will not put.

  • @UpLateGeek
    @UpLateGeek 11 місяців тому +34

    When I was working at the computer store back when I was in high school, one of the technicians was pretty crazy. He was obsessed with getting the smallest possible Windows 95 installation that will boot into the GUI. He managed to get it down to less than a single standard floppy disk, and it still booted into the GUI. Absolutely insane.

    • @ErazerPT
      @ErazerPT 11 місяців тому +7

      Most of it is "support for something". If you strip out "something" then you can strip out "support for something". If you have "in built" file system compression it let's you go even crazier. The old QNX Demo Floppy is probably the hallmark of it, but they were "sort of cheating" because QNX was designed to be modular from the go so stripping it wasn't all that hard.

    • @forbiddenera
      @forbiddenera 11 місяців тому +1

      ​@@ErazerPTthat qnx demo impressed me as a kid 😂

    • @UpLateGeek
      @UpLateGeek 11 місяців тому +1

      @@ErazerPT Yeah, pretty sure if you tried to use it for anything useful, it would refuse to do it or just crash.

    • @UpLateGeek
      @UpLateGeek 11 місяців тому +2

      @@ithecastic Obsessed, yeah that probably wouldn't have been too bad. Lack of social skills, sure lots of people have their personality quirks. But then he'd occasionally say something that was obviously meant to be "funny", and perhaps I (a 15 year old kid at the time) won't take him up on his offer to hang out at his place on the weekend.

    • @UltraCenterHQ
      @UltraCenterHQ 11 місяців тому +1

      I feel like that dude would love the modded windows community

  • @armchaircommenter6805
    @armchaircommenter6805 Рік тому +27

    man that took me back, thanks for that blast from the past! i still remember vividly performing my own experiments with fdformat 1.8 (and pkzip) as a little kid back in the day, so that i could maximize the amount of games i could squeeze onto my floppies, because my 386's 80 mb hard disk couldn't nearly hold them all. the performance drop, the reliability loss (which i didn't know at the time to be caused by the extra tracks) and the tsr requirement ultimately deterred me from storing my entire collection that way though, as it made zip files spanning multiple (no-name) disks way too risky. don't want to lose a classic like monkey island or doom (which was ofc either thumbnail-sized or a slideshow on my 386) to a bad outer track! later, that story kind of repeated with overburning and a more tightly wound groove on cds...

  • @dmatech
    @dmatech 11 місяців тому +20

    The Linux "fdutils" package included a program called "superformat" which allowed formatting standard floppy disks at up to 1.992MB (I believe using mixed sector sizes). The downside of larger sectors is that if a sector goes bad, you lose more data.

    • @shoego
      @shoego 11 місяців тому +1

      As I said on my comment, i remember sharing games using disks formated to 1.8mb. So it was possible.

    • @V3ntilator
      @V3ntilator 10 місяців тому +2

      Amiga using standard FFS could write 1.79 MB on a floppy. With Custom FFS, you could write ~1.9MB.

  • @mik310s
    @mik310s 11 місяців тому +8

    I had no idea you could do this. I have fond memories of the floppy years, thanks for this, I would love to see a video comparing both Windows 95 versions.

  • @picobyte
    @picobyte 11 місяців тому +7

    Their setup floppies where pretty good, and the labels peeled off very clean and easy. 😄

  • @RichsRandomRetroReviews
    @RichsRandomRetroReviews 11 місяців тому +3

    This is really cool! Thanks for the explanation. I always wondered how they'd done this. From what I understand - a lot of the sounds were cut, as were the background images and mouse cursors. Also there was usually a folder on the CD with extras in, such as videos and games which might explain where the extra space was used up.

  • @melkiorwiseman5234
    @melkiorwiseman5234 11 місяців тому +21

    I was really happy when I discovered "FDFORMAT" which was a set of two programs (the other being called "FDREAD" and was a Terminate And Stay Resident or TSR program). It allowed you to reformat floppy discs to use 82 tracks instead of 80, use some of the gap space for extra sectors per track and to reduce the number of root directory entries which would leave the sectors normally used for the root directory free for data storage.
    The funny thing was that some formats, such as reducing the number of root directory entries, were compatible with Windows without any other programs needed. Only the more "exotic" formats required FDREAD to be installed in order to allow Windows to read the disc successfully. If you wanted to get a large file onto a floppy disc which was just a little too small for the file, reducing the number of directory entries might solve your problem.
    In some ways, it's a little disappointing that we now have so much storage space available that we no longer need ingenious innovations like FDFORMAT to squeeze that "little extra" out of our hardware.

    • @forbiddenera
      @forbiddenera 11 місяців тому

      File system compression is still a thing! And in some cases can improve rw performance because the cpu cost of (de)compression is negligible

    • @TSteffi
      @TSteffi 8 місяців тому

      @@forbiddenera this is actually underused quite a bit. People always assume that old CPUs would be struggling with decompression too much.
      I was really surprised when I tried a compressed executable on an Atari portfolio, running a 4.7 MHz 8088. The program loaded noticably faster when compressed

  • @leokimvideo
    @leokimvideo 11 місяців тому +10

    I loved the sound of floppy disk drives

    • @orangejjay
      @orangejjay 11 місяців тому

      Different drives had different sounds so what you loved would depend on the machine/drive.
      I always loved the sounds of the older ones that were, well, noiser. It was almost as good as the sound of good ol' dial-up.

    • @TexasCat99
      @TexasCat99 11 місяців тому

      There's a little add-on thingy for PC mobo that can simulate HD sounds. not quite FD. But its something. Attach to HD power light and it "clicks"

    • @MachtNixPasstSo
      @MachtNixPasstSo 6 місяців тому

      You learn to hate it when you have to install Windows 95 OSR 2 or NT4. It has SO. MANY. DISKETTES.

  • @stevenchristenson2428
    @stevenchristenson2428 11 місяців тому +9

    As another user commented the versions are the same between the CD and Floppies. What you do not get in the floppy version is any of the extras. Both versions however have the same number of cab files which is what is used to install windows. Cab files are just compressed files much like zip files.

    • @root42
      @root42 11 місяців тому +1

      I guess a lot of the CD ROM is filled up with the music video by Weezer?

  • @Thaleios
    @Thaleios 11 місяців тому +2

    Nice video! This took me back. I was 20 when Win95 came out but before that ran a BBS using DOS on a 286. I remember so many nights sitting inserting floppies. 🙂

  • @harvaldi
    @harvaldi 11 місяців тому +5

    Extremely good video. True jewel. Great work!

  • @TwelveBaud
    @TwelveBaud 11 місяців тому +9

    The additional tracks are closer to the hub in the center of the disk. It's risky to store information there, both because there's less area in which to store data (the disk rotates at the same angular speed, but the heads travel less linear distance in that angle, so the data is packed together tighter and may not be stable) and because some drives' heads physically cannot move there.

  • @stinkertonsden
    @stinkertonsden 11 місяців тому +7

    Fascinating video, and never realized the official Win95 floppies were different in size. The one copy of Win95 I had on floppies was created via a utility on a Pac-Bell system. Now I wonder if the utility did this in the background for the other disks besides the first couple.

  • @tristankordek
    @tristankordek 11 місяців тому

    Great stuff, I rarely subscribe to the channel after watching one video so you can be proud of yourself.
    Answering the question at the end of the video, I would love to see a sequel.

  • @GenerationAI2024
    @GenerationAI2024 11 місяців тому

    30 floppys for the version i got. My Father got me a 486 cnc work computer and it had only a diskette drive, then my school got Windows 95 on disc and way of copying it on diskettes. Took those home and installed Windows 95 on my machine, what a great windows. Thanks for sharing, i didnt know the original diskettes had 1.68 mb of data.

  • @SkyTechMusicStuff
    @SkyTechMusicStuff 11 місяців тому +9

    Ahh, the good old days of trying to squeeze every little bit out of the media that we could. At some point in time ~25years ago or more I was formatting a lot of my "data" disks this way using tools like 2M that were closer to magic than to code, not only messing with floppy/drive parameters in the "official" way, but also injecting code to the bios and such. It was nice seeing 2M even mentioned remotely here (on the related articles, wikipedia page). Some of those disks still exist, and now I have to wonder if after all this years and (ab)using those unsupported cylinders at the end, they can still be read properly or not. Gotta try someday. Great video, wish I could show it to my younger self to answer the oh-so many questions on this topic.

    • @sveinungsandsbakk416
      @sveinungsandsbakk416 11 місяців тому

      2M worked unless too much tweaking. At least for 8 years. Never had a problem. Found 3 diskettes 20 years old. Nada problem.

    • @gacsizclickon
      @gacsizclickon 11 місяців тому

      @@sveinungsandsbakk416 I have some floppies from around 95, all the regular 1.44 disks are still readable, but none of my 2m disks are readable today, which is sad.

    • @nickwallette6201
      @nickwallette6201 9 місяців тому +1

      @@gacsizclickon Yeah, the tolerances are tighter for those exotic formats -- which is specifically why they weren't the norm. The actual disk isn't structured any which way, it's just the controller and, to an extent, the drive's physical and electrical capabilities that really define how many bits you can squeeze in there. The compromise is how compatible and resilient you want it to be. :-)

  • @RetroJack
    @RetroJack 11 місяців тому

    I'd almost forgotten about DMF - thanks for the refresher!

  • @galen__
    @galen__ 11 місяців тому +12

    2M and 2MGUI were also fun to use with compatible drives and disks. This rapidly improved my understanding of error-correction techniques too, which made it even more fun to max out the sizes 😅
    edit: Also, OS/2 had XDF and XDFCOPY for making almost 2MB disks, but was built into and part of the OS/2 Warp installation from floppy’s.

    • @therealromster
      @therealromster 11 місяців тому +1

      FEC forward error correction with 2MGUI, and then I used a jar dos compression program that was like LZMA, not to be confused with java jar files.

    • @Z80user
      @Z80user 11 місяців тому

      I get more than 2 MB of free space (more than 2097152 bytes) was very fun to made this disks and was realiable

    • @LoftBits
      @LoftBits 11 місяців тому +2

      Oh yes. Being a big fan of OS/2 Warp back then, I've made the XDF my "format of choice" (even though using it for everyday storage wasn't straightforward); years later, when it came to copying / backing up my old files from these floppies, I regretted it profoundly 🤣

    • @nickwallette6201
      @nickwallette6201 9 місяців тому +1

      @@LoftBits And so it was with every non-ubiquitous format. haha I've learned that lesson more times than I would care to admit. There was quite a while there where I would yell at my former self, saying "I don't have anything to read UC2 archives anymore! Was it REALLY imperative to save the extra 1KB over a ZIP file??"
      And then I did it again, with a lossless WAV compression utility called Charlie Packer. There was exactly one program that could read those files: Charlie Packer. I think I *still* have c13 files on my NAS somewhere...

  • @ferrari2k
    @ferrari2k Рік тому +21

    I think the interleave parameter is for a physical phenomenon: the floppy spins and as the system processes the data from the sector currently being read the disk spins unter the head. So to get a continuous stream of data it would be good to not wait about a full rotation until the next sector comes along again but store the next sector a bit later on the disk.
    So imagine 4 sectors on a disk, you don't store 1, 2, 3, 4 but more like 1, 3, 2, 4, this way you have a one interleave.
    I think it works that way and I hope that explanation makes sense.

    • @looks-suspicious
      @looks-suspicious Рік тому +2

      That is exactly why it's done. However, an interleave value of 1 actually means that there is no gap at all. The number basically tells you how many disk rotations are needed to read or write one full track.

    • @ovalteen4404
      @ovalteen4404 11 місяців тому +1

      Still, it's weird that DOS couldn't read interleave 1 disks at all. It should just be slower.

    • @Aeduo
      @Aeduo 11 місяців тому +1

      It was mostly a benefit for older PCs that might take enough time between finalizing reading 1 sector and preparing to read in the next. An interleave gives it more time between that. If not given that time, it would need to wait a full rotation to read each consecutive sector, or if its timing is especially strict, may even time out or something before it reaches a full rotation.

  • @yogibear2k220
    @yogibear2k220 11 місяців тому

    This was a great video. Now it makes me curious how much extra data you could store on a 2.88mb floppy disk! I would love that video from you!

  • @Rasterizing
    @Rasterizing 11 місяців тому

    This was awesome! I have a vague, dusty and hazy memory of using FDFORMAT somewhere around 30 years ago - this was a great blast from the past!

  • @iceberg_os
    @iceberg_os 11 місяців тому

    Super interesting video about floppy disks! Always was a fan of them, but was born way too late to experience them. Great stuff man!

  • @cholohd32
    @cholohd32 11 місяців тому +2

    Ah yes the good old DOS formatting days. Back in the day i randomly found the 2M formatting tool & discovered that the quality Teac floppy drive i had could format quality floppies to the largest 2 million bytes (aka 1,97kib i think) extended format. of cause you needed the 2M driver software to access those larger formats as it wasnt natively supported. Most of the backups i did was with the slightly smaller 1,8 or 1,9 sized formats to be on the sure side. Sadly the quality of floppies dropped with time & it was really sad in the end where you could buy a 10 boxes of of 10 floppies each & you had to trash half of them because every other failed to even format to normal dos format immediately. Of cause the price had also drop to a point where they was nearly giving them away for free. Good happy times thou :)

  • @ezequitor
    @ezequitor 11 місяців тому

    I saw this video 25 years late.. I have copied MANUALLY all the files I could fit from each image after disk2 to a standard formated 1.44MB disk thousand of times because I didn't know how to fit all of them at a single disk, hence it usually took me hours of work and copying-pasting files from the image to the disk and vice versa..
    Veryinteresting video, all my life I thought these were "special disks". It brought me a lot of memories of the past. Thanks!

  • @ruben_balea
    @ruben_balea 11 місяців тому +4

    The theory of copy protection was already absurd at the time because you could also get Windows 95 on 5.25" 1.2MB floppy disks and copy their contents on 3.5" 1.44BM disks with standard format, instead of 13 disks you were going to need 21 but if you weren't going to pay for Windows 95 you had a lot of money left over to buy floppy disks.

  • @alexanderwerth1389
    @alexanderwerth1389 11 місяців тому +1

    The CD contained a folder called PRODUCTS with 296MB in size. It contained advertisements and demos for dozens of Microsoft products.

  • @HelloKittyFanMan
    @HelloKittyFanMan 11 місяців тому

    Yes, I would love a video with the additional details, please and thanks!

  • @RetroTechChris
    @RetroTechChris 11 місяців тому

    Very informative. Thanks for sharing!

  • @thpeti
    @thpeti 11 місяців тому +5

    I remember as a kid, I was able to format 5.25" HD floopy disks to 1.6MB instead of 1.2. We used Dos Navigator, and it had this option. As I remember, it worked only with some disks which were in really good shape, and it was not too reliable.

    • @Incoming1983
      @Incoming1983 11 місяців тому

      Yeah it depends on the quality of your disks. And probably the drive as well. I got the 5.25 ones mostly to 1.4MB.
      Bit of trial and error, then dump data on it and verify that it can be read correctly before usage.

  • @MarekKnapek
    @MarekKnapek Рік тому +5

    I remember installing Win95 translated to the Czech language from 28 diskettes many times, fun times.

    • @bitsundbolts
      @bitsundbolts  11 місяців тому

      That is half a day of work right there 😂

  • @airfixer9461
    @airfixer9461 11 місяців тому

    Great video, good research....more of this please 🙂

  • @horuscurcino
    @horuscurcino 11 місяців тому

    You have answered a long time question for me. Thank you

  • @andrewspode
    @andrewspode 10 місяців тому

    They say if you can't explain something in simple terms, you don't understand it. You clearly understand it :) great video.

  • @DonaldDucksRevenge
    @DonaldDucksRevenge 11 місяців тому

    Love your voice and detailed content

  • @spitpea
    @spitpea 9 місяців тому

    Ah, memories I remember setting in my chair with my chips, Mountain Dew, and watching TV installing one disks after another clicking the continue button (its been a long time). The 1st time I was excited, the 15th time mad with my head on the table wishing this was faster. Thanks for the memory's

  • @someoneoncesaid6978
    @someoneoncesaid6978 11 місяців тому +13

    I worked at a computer store when 95 came out. Almost every computer had a CD drive at that point. Few had CD/RW drives, which may be the confusion in the video. I can only remember installing 95 using floppies a couple times of all the computers we built / sold.
    Now, 3.1, that was usually on floppies, and it was a pain in the butt.

    • @oogieboogie232
      @oogieboogie232 11 місяців тому +2

      A large portion of pre-existing PCs that supported Windows 95 did not have a CD drive, and that is what the floppy disk distribution would best serve.
      Also I think perhaps you're thinking of Windows 98? Most new consumer PCs would have a CD-ROM drive at least as an affordable option late 1995. However CD recorders were still very expensive at this point (>$1000) and not typical and CD-RW would not exist for several years.

    • @someoneoncesaid6978
      @someoneoncesaid6978 11 місяців тому +1

      @@oogieboogie232 - You are correct that CD-RW drives were very expensive at that time. I think we were getting them for about $500 each. I don't know what we were selling them for, since I was doing PC builds at that time and not on the retail side of the business. We sold very few systems with CD-RW drives in them. But, we put CD-ROMs on almost every PC we put out at that time. We bought in bulk and paid wholesale, so I think we were getting them for around $100 each for the drive and the controller board (again, not sure what we were charging retail). We were primarily in the business of building new computers and doing hardware upgrades, so we very rarely did OS upgrades, and when we did it was usually for business customers, so they were using NT and not 95. I was only doing that from early 95 to late 96, so I know I didn't deal with installing 98 while there. After that, I went to work for Honeywell, and only delt with NT & 2000 there, and didn't deal with any consumer versions of Microsoft products.

    • @henson2k
      @henson2k 11 місяців тому +1

      I definitely remember installing Win95 from floppies on 486DX40 PC

    • @someoneoncesaid6978
      @someoneoncesaid6978 11 місяців тому +1

      @@henson2k - Yes, it was done, just not as prevalent as this video would imply. Pretty much exclusively only on systems that didn't have an internal or external CD-ROM drive, and almost always for home users to upgrade their OS on already purchased systems. When we built systems that didn't include a CD-ROM drive, if we had a CD-ROM drive laying around we'd hook it up to do the install, then take it back out of the system.

    • @Zerbey
      @Zerbey 11 місяців тому +1

      A lot of PCs back then had CD drives but not all support booting from CD, even up in to the XP era it was common to initially start the install from floppy to get the drivers in place for the CD-ROM.

  • @mikkelbreiler8916
    @mikkelbreiler8916 11 місяців тому

    For me It has been so many years since anyone mentioned interleave. Kudos.

  • @trahan625
    @trahan625 11 місяців тому

    I can remember the first-time installing Windows 95. I was about 11 or 12 years old. Lots of Floppies. Tons. It took forever!

  • @wskinnyodden
    @wskinnyodden 11 місяців тому +8

    Increasing the track number is pretty much the same as when you overburn a CD-R, it will record further into the external margin of the disk, which in the 3.5" floppies can actually cause mechanical issues with some older drives and on those if you keep doing it you will kill the drives mechanically, one of the rare occasions back in the day where software could actually cause physical damage to hardware. Prior to overclocking that was next to impossible.

    • @manuell3505
      @manuell3505 11 місяців тому

      You can't damage a drive by using it, except long-term wear to end of life.
      It was just increasing the density. 1,44MB was set to the industrial standard. It was considered the most efficient quality demand at fabrication of disks. Anything beyond it was approveably unreliable.

    • @intotron6708
      @intotron6708 11 місяців тому +2

      @@manuell3505 If you tell the drive to seek to e.g. track 90, it can't really do that. Either there is a safeguard preventing stepping beyond a certain point, or you simply crash the head onto a mechanical barrier. The second option will at least result in a misalignment of the head, which in turn will make your drive useless. That's not only tear and wear.

    • @rfvtgbzhn
      @rfvtgbzhn 11 місяців тому +1

      Except that in floppy disks the tracks start at the outer part, so the additional tracks are on the inner margin.

  • @o_o6869
    @o_o6869 11 місяців тому +1

    i just love everything in this video

  • @BritishBeachcomber
    @BritishBeachcomber 11 місяців тому +8

    You should have seen the size of the Software Developer Kit (SDK). It came in a box bigger than a microwave oven and the manuals filled a whole bookshelf.

    • @Ylyrra
      @Ylyrra 11 місяців тому +1

      *laughs in VMS/VAX* ;)

  • @rayoflight62
    @rayoflight62 11 місяців тому

    Thanks for the video!
    WfW 3.11 was my last floppy-based installation.
    Fast forward 25 years, bite/cluster/sector geometries have morphed into an unexplainable mechanistic methodology when you write a file on an enterprise SSD.
    While sometime confusing, it is possible to figure out the geometries of writing/reading floppy disks and hard drive, but I just had a bad time when I wanted to discern the inner working of a multi-chip flash drive controller, where multiple optimisation and reliability algorithms crosses together...

    • @44R0Ndin
      @44R0Ndin 11 місяців тому

      And that's one of the major reasons (there are many others) why it's so much harder to recover data from SSD's than it is from magnetic hard drives.

  • @TeraunceFoaloke
    @TeraunceFoaloke 11 місяців тому

    Interesting video and decent presentation.

  • @ThrakaAndy
    @ThrakaAndy 10 місяців тому

    Great video! Fun to watch. I've used FDFORMAT but I never really understood much about it. At the time, I was trying to get 1.8mb floppies working, which I think also required a TSR? I can't remember.

  • @knightcrusader
    @knightcrusader 28 днів тому

    I've made the install floppies for Windows 95 manually using Linux and pulling the cabs off a Win95 CD. It was an learning experience about how floppy drives work.
    A lot of stuff on the Win95 CD is extra stuff too. They had music, themes, music videos, and Hover on the CD I had.

  • @loislurso
    @loislurso 11 місяців тому

    Really intresting video.

  • @thek3743
    @thek3743 11 місяців тому

    very nice presentation,!

  • @jannekschushek9577
    @jannekschushek9577 10 місяців тому

    Thankyou for charing the information.

  • @CRBarchager
    @CRBarchager 11 місяців тому +1

    I remember to hassle of copying Amiga Disk Format (ADF) images to PC. ADF was 880kb and the Amiage couldn't read 1.44Mb disks, so I had to format them to 720Kb size and compress the 880kb fil to fit. That is how I manage to get all my saved games (and hi-scores) from certain games ported to PC and I still have them.

  • @ProcrastinatingPontificator
    @ProcrastinatingPontificator 11 місяців тому

    You know this is going to be a good video when within 5 seconds is Vindows95

  • @sawilliams
    @sawilliams 11 місяців тому

    I remember being so excited getting w95, and was not disappointed

  • @GreenAppelPie
    @GreenAppelPie 11 місяців тому

    I bought this when it was a shareware program back in ‘88 from a 7-11, quite a fascinating program though wow you really put it through its’ paces

  • @allezvenga7617
    @allezvenga7617 11 місяців тому

    Thanks for your sharing

  • @nbrown5907
    @nbrown5907 11 місяців тому

    Brings back memories, I was able to back the floppies up I remember lol.

  • @lubomirvrana2158
    @lubomirvrana2158 11 місяців тому +3

    Very interesting. I was using VGA-Copy for this purpose, but I never knew how it worked :)
    BTW Not all floppy disks could handle 1.7 MB format, I had to test every one and mark those that didn't.
    Thanks for explaining this little old mystery :)

    • @Incoming1983
      @Incoming1983 11 місяців тому

      I had vgacopy as well. Nice tool.

  • @koszeggy
    @koszeggy 11 місяців тому +1

    I remember that I used 2MF to format 1.44MB disks to have 1.88MB on them (1,931,264 bytes). It required 2M, a small TSR driver to work because it somehow fooled also the floppy controller to make it work in a really unusual way. It was not just surprisingly stable but also really fast as it optimized the arrangement of the sectors.
    And the bonus part: every formatted disk contained the driver hidden in its boot sector so it wasn't even a problem if you forgot to carry 2M on a regularly formatted disk to your friend. It was enough to boot on the disk and the driver loaded itself automatically. I discovered it accidentally when once I forgot removing a disk from the drive.

  • @krzbrew
    @krzbrew 11 місяців тому

    Thanks for the maths and IT history lesson!

  • @surject
    @surject 11 місяців тому

    Very interessting. My 13y old me went straight to doubling the size by drilling a whole into DS/DD disks :)

  • @Saturn2888
    @Saturn2888 11 місяців тому

    This is an incredible find! I wish I had this much data when copying around MP3s and high res images off my Mavicka camera. The possibilities!

    • @FlopsyHamster
      @FlopsyHamster 11 місяців тому

      It was a very small window of time when higher capacity floppy formats were a thing. 100M Iomega ZIP disks kinda replaced it for a short time, until the Click-Of-Death made them unreliable, but by then, CD-RWs and flash drives had replaced them.

    • @deltaxcd
      @deltaxcd 11 місяців тому

      @@FlopsyHamster I think that capacity woud have worked all the time , it is just strange that it was not included into default format utility

    • @FlopsyHamster
      @FlopsyHamster 11 місяців тому

      @@deltaxcd I think there may have been some compatibility issues with the format. I don't think all floppy drives and/or floppy controllers could support it.
      I had a client at the time who wanted to upgrade a brand new computer to Win95 with floppies, and it didn't work. The floppies read fine on another computer, but not on that one. I wound up copying all the floppies to the hard drive on another computer, backing up the install files onto 15 or more blank floppies with PKZIP using disk spanning, restoring the files to the new computer's hard drive, and installing Win95 from the hard drive.
      This same computer was not able to use the built-in backup routines in Simply Accounting, a very popular accounting package, to back up to a floppy disk. The backup would always fail. I discovered that disabling the floppy disk driver in Win95 would revert to reading and writing through MS-DOS, which would allow the backup to work... until the driver would randomly re-enable itself. In the end, I had to set Simply Accounting to back up to the hard drive, and I put a batch file on the Win95 desktop to copy the backup to a floppy disk. This did not please the client at all, as it was an extra step, and they felt I should be able to get the program to work as intended. I lost a bit of my "miracle worker" reputation due to that stupid floppy drive.
      I always thought it was a bit ironic that floppy drive and controller compatibility started to become an issue at the end of the floppy drive's lifespan. Usually compatibility issues arrive at the start of new technology, and work themselves out.

    • @Saturn2888
      @Saturn2888 11 місяців тому

      @@FlopsyHamster from the video, it sounds like you could get higher capacity in regular floppies from even the early 90s.

  • @cgwworldministries83
    @cgwworldministries83 7 місяців тому

    I remember having a 2.88mb drive in my PC as a kid and I loved formatting free AOL disks to twice their size.

  • @jw200
    @jw200 9 місяців тому +1

    Windows 95 + GTA1, GTA2 = ❤
    My favorite stuff

  • @erikhicks07
    @erikhicks07 11 місяців тому +4

    I vaguely remember Microsoft's installer failing to continue when ran from copied diskettes, despite them being cloned from the originals for backup purposes. Analyzing the first few sectors, I noticed an identifier of sorts that was different on the originals vs the copies. (It was "MSDMF" or something...). After manually changing it on the copies, the install was successful. EDIT: It was the FAT ID that was different. Windows 95 OSR2 was checking for "MSWIN4.1".

    • @trueriver1950
      @trueriver1950 11 місяців тому

      That's right. Win95 was developed as Windows 4.00, and many of the internal filenames reflected that. Logically, OSR2 was therefore Windows 4.1.

  • @EyMannMachHin
    @EyMannMachHin 11 місяців тому +3

    Ah, the good old time of fdformat. Also the time when I played around with the cluster sizes on harddrives, usually turning each HD into a mess using all the partitions you have available on a FAT drive to keep the cluster size as small as possible, because you always used to have a lot more smaller files than large ones. It was really a hot mess for a time (well before USB drives..) when I once nearly used up all possible drive letters 🤣

  • @kitchentroll5868
    @kitchentroll5868 11 місяців тому +5

    As I recall, the 13 floppy disk version of Windows was lacking a number of optional components, such as additional sound schemes and system tools (the Windows 95 CD--early OEM release--I have at hand has a utility to create a custom install script). Note that the initial release of Windows 95 I have only supports 8.3 file names and shipped with an FDISK executable that only supported FAT16, a later OEM CD I received from Microsoft after market-release has a version of FDISK that supported FAT32.

    • @tramadol42
      @tramadol42 11 місяців тому +7

      The german disk version of Win95 that my roommate bought at the time consisted, of 78 floppy disks.
      He bought it because it was ten Deutschmarks cheaper.
      We laughed at him for weeks...

    • @Epic_C
      @Epic_C 11 місяців тому +2

      Don't forget about Weezer

    • @forbiddenera
      @forbiddenera 11 місяців тому

      ​@@Epic_CWeezer!

    • @whoshotdk
      @whoshotdk 11 місяців тому

      @@Epic_C Plus Edie, the weird animation by Bill and Havoc! IIRC

  • @rarapas
    @rarapas 11 місяців тому +1

    When my 20 MB HDD died along with the controller (released A LOT of magic smoke :) ) I looked around for "bigger floppies. I used HD-COPY by Oliver Fromme that played around with tracks and sectors without TSR, for me it made the most "stable" for normal read/write use disks back in the day, quite larger, and it would also "revive" "track 0 bad" disks at least temporarily. Then with TSR I used 2M a lot, the standard 2M format ones were quite reliable, the "guinness" ones were more finnicky.. Fun times! I could play Leisure Suit Larry (I think 3?) installed on those larger floppies, as it needed slightly more than 1.44 space to install :)

  • @jjdigitalvideosolutionsllc5343
    @jjdigitalvideosolutionsllc5343 11 місяців тому +3

    1.76MB was standard size for Commodore Amiga HD floppy drives. I have original win95 and office install floppy disks. I set up win95 under emulation on my Amiga. It worked but was really slow, even with a 68060 accelerator card.

    • @desertfish74
      @desertfish74 11 місяців тому

      While I had a HD floppy drive on my Amiga 4000, 90% of my floppies were the standard double density ones with 880kb on them! 720kb was for peasants 😅

  • @lastdragonmx
    @lastdragonmx 11 місяців тому

    I had a tool for creating DMF disks. It included a patch that was placed in the MBR to act as a disk reader controller.
    In addition to everything shown in the video, I managed to have a Windows 3.1 installed on a DMF disk, which was later compressed using drvspace or doublespace, creating space for a trimmed but functional Windows 3.1

    • @44R0Ndin
      @44R0Ndin 11 місяців тому

      "Win3.1 on a floppy", the ancestor to the now more familiar "Windows/linux on a flash drive".
      Wouldn't surprise me if within the next few versions of Windows, Microsoft combines the fact that it can detect when something's a USB flash drive, with the want to prevent copying of the OS without payment, into the inability to install Windows to any type of removable media.

  • @peteramstutz
    @peteramstutz 11 місяців тому

    A video about floppy disks in 2023 with 58,000 views and 346 comments. Amazing. Geek score 10/10.
    The only thing missing in this video is an explanation about how increasing the number of tracks / sectors per track actually physically results in a different layout on the disk compared to the conventional 1.44 MB layout -- that space has to come from somewhere and not every viewer is going to have an intuitive knowledge of the layout of cylinders/tracks/sectors.

  • @twinshobbytwinshobby3863
    @twinshobbytwinshobby3863 7 місяців тому

    Awesome Video !

  • @jeffreywoods4040
    @jeffreywoods4040 11 місяців тому

    I remember reusing old install sets in high school in an attempt to take a PowerPoint presentation home!

  • @MotownBatman
    @MotownBatman 11 місяців тому +1

    My Aunt brought a copy of this home from work, It was either Thanksgiving or Christmas, I sat at her desk, didn't even turn on the PC:
    I opened the box & saw the amount of Floppies! "THIS MUST BE EPIC!"

  • @urvhalt
    @urvhalt 9 місяців тому

    1.76 MB, used it a lot. Worked like a charm.

  • @koppadasao
    @koppadasao 11 місяців тому

    I remember messing around with floppy disk formats 30 years ago on my Atari ST. I found that I could format the disks with 82 tracks 10 sectors, that's half of what your HD format, but those disks couldn't be read on an IBM. I also made my own personalized boot sectors.
    As for interleave, on SD diskette, an interleave of 2 was faster than interleave of 1. It's down to how fast the disk spins compared to how fast data is transferred from disk to computer. This is also why an interleave of 2 is slower than 1 on HD diskettes.

  • @kosmologist
    @kosmologist 11 місяців тому +1

    I have the windows 95 floppy disk set, I think mine is 27 disks for the extra features. Interesting to install. You boot on the first disk, but you get an installation GUI after only the second disk!

  • @ray73864
    @ray73864 11 місяців тому

    I used to use a disk doubler back in the day, allowed me to format a 1.44Mb floppy as a 2.88Mb floppy. The resultant floppy didn't work in every computer, but those it did, boy was it a lifesaver :)

  • @gwgux
    @gwgux 11 місяців тому +1

    Fascinating. I'm also curious about what was cut for the floppy disk install of Windows 95. Maybe it was drivers? Or that promo movie I remember being there where the showed the old Windows 3.x desktop fading away into the clouds?

    • @bitsundbolts
      @bitsundbolts  11 місяців тому +2

      I think I know what you mean. This video was in the OOBE folder on the CD-ROM if I'm not mistaken. I wondered about the abbreviation of the folder name that time - and there was no internet yet to look it up.
      Later, I found out that it means "out of box experience".

    • @steeviebops
      @steeviebops 11 місяців тому +1

      Anything that wasn't in the win95 directory wasn't included. In addition, some of the accessories were also missing, Microsoft used to have a download on their FTP server which added the missing components back to a floppy install.

  • @spongerobert
    @spongerobert 10 місяців тому

    Aah yes. I remember this from ages ago. My uncle was pretty deep in to circumventing copy protections on floppy disks back then so he showed me a couple of weirdly formatted disks and whatnot

  • @xlostlovex
    @xlostlovex 9 місяців тому

    It’s actually enjoyable formatting with floppy disk back in the days. Back then system gets really slow after a while. Reformatting with floppy disk gave a super excitement about getting the pc in decent speed again. Then… Warcraft, Diablo, descent, StarCraft, and alot other games are all standing to be install next xD

  • @pik33100
    @pik33100 11 місяців тому

    In the good old times I did a mod to multi-i/o card that includes 27 MHz oscillator and a 74xx chip, I don't remember what one, allowing to switch between 27 MHz and the original 24 MHz. The input of the contraption was connected to one bit of LPT2 on the same I/O card. Another LPT2 bit was connected to the 5.25" drive itself, allowing to change its rpm from 360 to 300. The contraption was invented by one of my friends, a computer geek, who did several other crazy things including cooling the overclocked 486 with a glass jar filled with water, placed, lid down, on the CPU.
    This mod allowed to (1) format 18 sectors on a 5.25" HD floppy, so it can replace much more expensive 3.5" (2) format 15 sectors on a standard density 5.25" floppy so they can replace 5.25" HD, (3) using a custom written formatter, format both 5.25" and 3.5" HD floppies to about 2.1 MB. The main motivation to do the mod was about 500 5.25 SD floppies I had on the desk that became usable again.

  • @tony359
    @tony359 11 місяців тому

    very interesting!

  • @ChipGuy
    @ChipGuy 11 місяців тому

    This is nothing new but still cool. Back in 1986 for Amstrad CPC I coded disk loaders like this for floppy disk for game distribution. They also used interleave 1 and non buffered direct DMA transfer. Also smaller gaps and overformatting. I also included a copy function into the boot loader I wrote since the disks won't be readable by standard software. The floppy controller (uPD765) is pretty much the same as the ones used later by IBM PCs.

  • @bikkiikun
    @bikkiikun 11 місяців тому +3

    It's not just 747s that use 3.5" disks for updating their Navigation database, you'll find disk drives across multiple Boeing Models.

    • @johnclement5903
      @johnclement5903 11 місяців тому

      I have a top-of-the line Tektronix TDS3054B DPO from 2007. Has serial, parallel, Ethernet and GPIB interfaces, but it still uses 3.5" floppies for waveform dumps. Dont know why Tek didnt use CF cards, they were available at the time.

  • @olafschermann1592
    @olafschermann1592 11 місяців тому +1

    Interleave: after reading Sector 18 on track 1 the disk spins while the head moves to track 2. To read sector 1 on track 2 the disk needs to turn until sector 1 arrives again, which is 95% of the rotation. By placing sector 1 on track 2 next to sector 2 on track 1 you can omit that wastefull time of rotating 350 degrees. Depending on the speed of the read/write head the optimal interleave can be 1, 2, 3 or 4. The time rotating the interleaved sectors must be slightly larger than the time it takes for the head to position on the next track.

  • @filter4now
    @filter4now 10 місяців тому

    Thank you. I remember pondering this "WTF?" The BIOS screen sure brings back memories :)
    I am glad I learned all the DOS commands as a kid as there are still some uses like BIOS and hardware firmware
    Loved that "Marketing Formula" back in the day too change base 16 to base 10. "Thanks guys..."

  • @mcorrade
    @mcorrade 11 місяців тому

    Back in the day, I had a friend who was a MS beta tester in Germany and he sent me a alpha version of MS 95 on 26 1.44 MB floppy disks. I was a command prompt guy and didn't want to that up. After hours of floppies the install finished and I had 95 which I hated and instantly uninstalled it. I later triple booted that system with 95, DOS6.2 and IBM WarpOS.....Fun times

  • @fermitupoupon1754
    @fermitupoupon1754 11 місяців тому

    I remember messing about with (IIRC) LLFormat to create diskettes that could hold 1.92MB of data, but they had no FS on them. I used them with a friend of mine to transfer large games by putting the game into an ARJ, then tarballing the ARJ into slices and writing the raw tarball to the 1.92MB diskette. Then reading the raw data back from the diskette in order to open the tarball and unpack the ARJ.
    Upside of this was that it needed less diskettes, downside was that you needed to be able to store the data at least twice on your HDD, as you'd need to unpack it twice.
    In the end we managed to source a second QIC-80 drive, which was much more convenient. Sure it was slow AF, but it'd hold 40MB on the short tapes or 80MB on the long ones, double that because we had identical drives and could use hardware compression. It was kind of awesome having teachers in school be all confused about what these QIC tapes were, but also less awesome that both of us got sent to the principals office because some teacher thought we had stolen a tape from school. Thankfully the IT guy in our school was awesome and would be more curious about what we did with said tapes than where they came from. Also the school used DLT for its backups, so their tapes weren't compatible in the slightest with our QIC tapes.
    Ooh the benefits of having a father who worked at DEC. Also, yes I still have those tapes, yes one of the drives does still work and last time I checked the tapes were all still readable. But then again that last time I checked was to gather the data from tape and store it on less-than-reliable CD-R discs, most of which have since died to rot.

  • @rashidisw
    @rashidisw 11 місяців тому

    8:34 looking at the See Also section and seeing the [2M] fills me with nostalgic feeling, I use that a lot before I finally upgrade to FAT32 capable windows.

  • @retrocomputinggrotto
    @retrocomputinggrotto 8 місяців тому

    I remember MDF when it first arrived on the scene! Had to find a utility to format floppy disks to the Microsoft Disk Format so you could 'back up' Windows and Office...!

  • @meTimetraveler
    @meTimetraveler 10 місяців тому

    i remember Novel Netware. I believe it was 25-30 floppies. what fun to install.

  • @ChipGuy
    @ChipGuy 11 місяців тому

    Interleave is sector ordering: With interleave 2 a track with lets say 4 sectors is written in order 1,3,2,4. So the computer reads sector 1 and has time to process the data as long as sector 3 is under the head, then it reads sector 2 and uses the time sector 4 is under the head to process the data, it continues to do that with sector 3 and 4. So it needs 2 revolutions to read one track. If you use DMA and don't use buffering then you don't need time to shovel data around. Then you can read directly to the desired address in memory using interleave 1 which is two times faster.

  • @LigH_de
    @LigH_de 11 місяців тому +1

    Floppy disks are quite flexible. I do remember a copy protection technique of the flight simulator TFX which added an 81st track with half the number of sectors to the last diskette, according to the analysis and copy tool ANADISK.

  • @AttilaSVK
    @AttilaSVK 11 місяців тому

    If I only knew this back in 2001 - 2005, when I had internet access only at my school, and used floppy disks to bring the downloaded files home. Later, when the teacher's computer got a CD burner, I bought a CD-RW, and once week I burned my whole week's downloads onto it. Once the RW disc failed, so I switched to regular CD-Rs, and left the disc open, so I could burn more data on it. It was also faster (16x compared to 4x with the CD-RW).