Personal computing discussed

Moderators: renee, morphine, Steel

 
titan
Grand Gerbil Poohbah
Topic Author
Posts: 3376
Joined: Mon Feb 18, 2002 7:00 pm
Location: Great Smoky Mountains
Contact:

New hard drive? Read this first.

Tue Mar 25, 2008 9:52 am

Here's my first stab at making a guide for new hard drive installs. I raced morphine for this. :lol: This is a team effort though, and I'll update this as necessary.

I could also use some screen shots of the steps. I'll host them on my computer and I can edit the file myself, so just PM me about it, and I'll send you my email address. Or you can contact me through AIM and we can do it that way.

Introduction
It seems that every once in a while we have a newcomer to the forum shouting, "My computer doesn't see my new hard drive! Whatever shall I do?!" Well, here's what you do.

The purpose of this post is to guide new users -- or even old users that forgot the process -- of various operating systems through the steps of installing a brand, spanking, new hard drive.

Operating System Independent or Stuff Everyone Needs to Know
This information here is independent of the operating system. It is assumed here that you know where to put the drive and how to turn screws.

For IDE Drives
Make sure that the cable is oriented correctly. Cables may or may not be keyed. Usually there is a red line on one side of a ribbon cable which indicates on which side Pin 1 is positioned. Secondly, make sure the jumper is shorting the correct pins for its placement on the cable. The last connector on the cable is for a Master drive, and the one in the middle is a Slave. While Cable Select is supposed to figure this out for you, it has never worked for this author.

For SATA Drives
Know which version of SATA your motherboard or controller card supports. In theory, the hard drive is supposed to figure out what the motherboard is capable of handling, however, this is not always the case. If you run into issues with the BIOS recognizing the hard drive, try setting the jumper for SATA/150 mode. Furthermore, as Just Brew It! pointed out, Hitachi utilizes software to change the operating speed its hard drives. This can be a problem with some chipsets, notably VIA, as they will not communicate with the drive at all unless the speeds match. So, you will have to install a Hitachi drive on another machine to change the operating speed before you can install it in your intended machine.

For Everyone...Kind Of
For those of you using IBM compatible hardware, read not Apple, when you first boot up the computer, go into the BIOS to make sure that the hardware is really connected for reals and not for fakes. Getting into the BIOS varies among motherboard manufacturers, but it is usually done by pressing and holding the Delete or F1 keys. Where you'll find the information about the hard drives also varies from manufacture to manufacturer, but usually storage devices are listed on the very first screen.

Microsoft Windows XP or Vista
Here are the steps to follow once Windows XP or Vista is up and running:
  1. Go to Start -> Run
  2. Type diskmgmt.msc and press Enter, Return or click Ok
  3. The Disk Management program will open up and list all the attached disks, including CD/DVD drives, in a two pane view. Volumes in the top, and a graphical view in the bottom. Hard drives are identified as "Disk x". The one you are looking for will have a volume name of "Unformatted" and will have a black bar instead of Microsoft Blue.
  4. Right click on the bar and select Format...
  5. Follow the instructions given by the wizard
  6. You may be presented with the option of formatting the drive as FAT32 or NTFS. If you have a drive larger than 32 GB, you will definitely want NTFS.

Linux
Each distribution of Linux includes its own unique set of tools. Covering them all here would be a bit excessive. One thing that is common to all distributions of Linux is the ability to do everything that could be done graphically via the command line. The steps covered here will walk you through the process of adding a hard drive using command line utilities.

You will need to know a little bit about your system. IDE/EIDE hard drives are usually named one of four things: /dev/hda, /dev/hdb, /dev/hdc or /dev/hdd. They are ordered as Primary Master, Primary Slave, Secondary Master and Secondary Slave, respectively. SATA and SCSI drives are usually labeled /dev/sdx, where x represents a drive letter. They tend to follow the same convention as IDE/EIDE in that the letter increases as the position does. For a hint, you can look at your /etc/fstab to see what is mounted, and if you have a /dev/sdx or /dev/hdx that is not in your fstab, it is a pretty safe bet that that is your new hard drive.

Format the Drive
  1. However you manage to get to the command line, just get there. Whether it is opening a terminal from within graphical environment or the TTY screen. Ctrl+Alt+F2 will usually get you to a TTY from an X Windows environment. Or one of several terminal emulators such as aterm.
  2. At the command prompt, which may end in a dollar sign ($), switch to root by running su -
  3. At the command prompt, which should now be a hash (#), run fdisk /dev/x, where x is the new hard drive. You should now be presented with a different kind of prompt stating:
    Command (m for help):
  4. Press n and Enter to create a new partition
    Command action
       e   extended
       p   primary partition (1-4)
  5. We will not go into logical partitions, so press p and Enter.
    Partition number (1-4):
  6. Press 1 and Enter
  7. You will be asked to define the range of the partition. The default is to start at the very first sector, which is what this guide wants so press Enter.
  8. It will ask you where you want to end the partition. You can define the size in megabytes using +nM, where n is the number of megabytes. The default is to use the entire drive, so press Enter.
  9. Press w and Enter to write the partition table to the drive.
  10. Now you need to format the partition. We will not discuss the pros and cons of each file system here. It is a good idea, as a beginner, to stick with the same file system as your root partition. You can find out what file system you root partition is using by looking at your /etc/fstab. In the following list are the commands to enter -- where x is the drive and p is the partition number (Example: mkreiserfs /dev/hda1) -- at the command prompt to format the drives based on the information you got from /etc/fstab:
    • Reiser FS: mkreiserfs /dev/xp
    • Ext2: mke2fs /dev/xp
    • Ext3: mke2fs -j /dev/xp
    • XFS: mkfs.xfs /dev/xp
    • JFS: mkfs.jfs /dev/xp

Mount the Drive
Now that you have formatted the drive, you'll need to mount it. Depending on what your goal is, there are a couple ways to do this.

One of the really great features of Linux is that there really aren't separate drives as far as the directory tree is concerned. This means that you can take an existing directory on an existing drive and move it to your new hard drive, and all will still be well afterward.

Mounting the Drive to a New Directory
If you're going to make a new directory for your new drive, follow these steps. We'll say /dev/hdb1 is your new drive. Change this according to your setup.
  1. Make the new directory.
    mkdir /path/to/new/directory
  2. Mount the drive to the new directory.
    mount /dev/hdb1 /path/to/new/directory
  3. And add it to /etc/fstab. I use nano as my editor, so change the command to whatever your preference may be.
    nano -w /etc/fstab

    # /etc/fstab: static file system information.
    #
    # noatime turns off atimes for increased performance (atimes normally aren't
    # needed; notail increases performance of ReiserFS (at the expense of storage
    # efficiency).  It's safe to drop the noatime options if you want and to
    # switch between notail / tail freely.
    #
    # The root filesystem should have a pass number of either 0 or 1.
    # All other filesystems should have a pass number of 0 or greater than 1.
    #
    # See the manpage fstab(5) for more information.
    #

    # <fs>        <mountpoint>              <type>      <opts>             <dump/pass>

    # NOTE: If your BOOT partition is ReiserFS, add the notail option to opts.
    /dev/hda1     /boot                     reiserfs    noauto,noatime     1 2
    /dev/hda3     /                         reiserfs    noatime            0 1
    /dev/hda2     none                      swap        sw                 0 0
    # I've added the new mount point for /path/to/new/directory here.
    # Make sure to change reiserfs to the file system you've used.
    /dev/hdb1     /path/to/new/directory    reiserfs    noatime            0 3
    /dev/cdrom    /mnt/cdrom                auto        noauto,ro,users    0 0
    ...

Mounting the Drive to an Existing Directory
Follow these steps if you plan on moving an existing directory to your new hard drive. In these steps we will say that /dev/hda3 is your old drive and that /dev/hdb1 is your new drive. Obviously, change these according to your own setup. So, let's say you want to move your /home directory to the new drive.
  1. We want to recursively copy everything over so that all the sub-directories are included, and we want to preserve all the file attributes.
    cp -pR /dev/hda3/home /dev/hdb1
  2. Now nose around on the new drive and verify that everything is there.
    cd /dev/hdb1 && ls -ashl
  3. Now mount the new drive to home.
    mount /dev/hdb1 /home
  4. Remove the /home directory from the old hard drive.
    rm -R /dev/hda3/home
  5. And edit your /etc/fstab so that the new drive gets mounted at boot. I use nano as my editor, so change the command to whatever your preference may be.
    nano -w /etc/fstab

    # /etc/fstab: static file system information.
    #
    # noatime turns off atimes for increased performance (atimes normally aren't
    # needed; notail increases performance of ReiserFS (at the expense of storage
    # efficiency).  It's safe to drop the noatime options if you want and to
    # switch between notail / tail freely.
    #
    # The root filesystem should have a pass number of either 0 or 1.
    # All other filesystems should have a pass number of 0 or greater than 1.
    #
    # See the manpage fstab(5) for more information.
    #

    # <fs>        <mountpoint>  <type>      <opts>             <dump/pass>

    # NOTE: If your BOOT partition is ReiserFS, add the notail option to opts.
    /dev/hda1     /boot         reiserfs    noauto,noatime     1 2
    /dev/hda3     /             reiserfs    noatime            0 1
    /dev/hda2     none          swap        sw                 0 0
    # I've added the new mount point for /home here.
    # Make sure to change reiserfs to the file system you've used.
    /dev/hdb1     /home         reiserfs    noatime            0 3
    /dev/cdrom    /mnt/cdrom    auto        noauto,ro,users    0 0
    ...

Apple Mac OS X
If you read through the first two sections of this guide and though, "Man! It's way easier to add a drive to Windows than Linux." Prepare yourself to be blown away.
  1. Turn the Apple computer on.
  2. Select your desired file system.
  3. Initialize the drive.
That's it. Once it's initialized, you'll see it on the desktop. Again, it's outside the scope of this article to discuss the benefits and drawbacks of each option, however, it should be noted that if this is an external drive you will be better served formatting the drive using the FAT32 file system. This will enable you to use the drive both on Mac and Window operating systems. If it is an internal drive, or you will never access the drive with a Windows operating system, you can go with the default HFS+ file system.

If you happened to ignore the dialog that popped up at boot, it's okay, you can still initialize the drive within the Mac OS environment. Just go to Utilities -> Drive Utility and select the drive that hasn't been initialized, and initialize it.
Last edited by titan on Sat Jan 09, 2010 2:16 am, edited 8 times in total.
The best things in life are free.
http://www.gentoo.org
Guy 1: Surely, you will fold with me.
Guy 2: Alright, but don't call me Shirley.
 
just brew it!
Administrator
Posts: 54500
Joined: Tue Aug 20, 2002 10:51 pm
Location: Somewhere, having a beer

Re: New hard drive? Read this first.

Tue Mar 25, 2008 10:41 am

In theory, you should not need to install the jumper to force SATA 1.5 Gb/s operation, even if the controller is 1.5 Gb/s and the drive is 3.0 Gb/s. The drive is supposed to figure things out automatically, and downshift as needed. I say "in theory" because there are some situations (e.g. 3.0Gb/s drives connected to certain older VIA southbridges) where the SATA speed auto-detection may not work properly.

At least one vendor (Hitachi) uses a software tool instead of a jumper to set the 1.5Gb/s option. You can get into a Catch-22 situation if you have a Hitachi SATA drive and one of the above mentioned problematic VIA southbridge SATA controllers, since the controller won't talk to the drive because of the speed mismatch, and you can't correct the speed mismatch because you can't talk to the drive. If this happens, you need to either A) connect the drive to another system, run Hitachi's option setting tool, then move the drive back to the system with the problematic southbridge; or B) install a third-party PCI-based controller and use that instead of the onboard SATA.
Nostalgia isn't what it used to be.
 
Krogoth
Emperor Gerbilius I
Posts: 6049
Joined: Tue Apr 15, 2003 3:20 pm
Location: somewhere on Core Prime
Contact:

Re: New hard drive? Read this first.

Tue Mar 25, 2008 10:48 am

HDD installation in Vista is identical to what it is in XP. ;)

It is a lot more involved with *nix family (depending on what flavor). ;)
Gigabyte X670 AORUS-ELITE AX, Raphael 7950X, 2x16GiB of G.Skill TRIDENT DDR5-5600, Sapphire RX 6900XT, Seasonic GX-850 and Fractal Define 7 (W)
Ivy Bridge 3570K, 2x4GiB of G.Skill RIPSAW DDR3-1600, Gigabyte Z77X-UD3H, Corsair CX-750M V2, and PC-7B
 
UberGerbil
Grand Admiral Gerbil
Posts: 10368
Joined: Thu Jun 19, 2003 3:11 pm

Re: New hard drive? Read this first.

Tue Mar 25, 2008 10:49 am

We should probably have a note on XP for the people who are installing Windows onto a new drive and can only see 128GiB / 137GB of it because they haven't slipstreamed the SP. I would've thought this situation was getting uncommon enough that it wouldn't be worth mentioning, but we had a thread on it just a few days ago.

(Aside: Here's where a TR Wiki would be cool)
 
morphine
TR Staff
Posts: 11600
Joined: Fri Dec 27, 2002 8:51 pm
Location: Portugal (that's next to Spain)

Re: New hard drive? Read this first.

Tue Mar 25, 2008 10:58 am

Titan, my suggestions: put "introduction and purpose" together and number the steps so that it's easier to read. As it is now, it's bound to scare the newbies (gaaah, too much text, my brain already hurts!).

Oh, but wait, I was supposed to write this. No sticky then, sorry. No soup for you!

Kidding, it's stickied :)
There is a fixed amount of intelligence on the planet, and the population keeps growing :(
 
titan
Grand Gerbil Poohbah
Topic Author
Posts: 3376
Joined: Mon Feb 18, 2002 7:00 pm
Location: Great Smoky Mountains
Contact:

Re: New hard drive? Read this first.

Tue Mar 25, 2008 11:55 am

morphine wrote:
Titan, my suggestions: put "introduction and purpose" together and number the steps so that it's easier to read. As it is now, it's bound to scare the newbies (gaaah, too much text, my brain already hurts!).

Oh, but wait, I was supposed to write this. No sticky then, sorry. No soup for you!

Kidding, it's stickied :)

Lol! Thanks. I had started writing it a few weeks ago, and forgot about. Don't ask me how, I had the text file saved on my desktop.

Off to edit it again.
The best things in life are free.
http://www.gentoo.org
Guy 1: Surely, you will fold with me.
Guy 2: Alright, but don't call me Shirley.
 
titan
Grand Gerbil Poohbah
Topic Author
Posts: 3376
Joined: Mon Feb 18, 2002 7:00 pm
Location: Great Smoky Mountains
Contact:

Re: New hard drive? Read this first.

Sat Apr 19, 2008 8:18 am

I've updated the the HOWTO. The Linux section should be complete. Let me know if I need to change something whether for clarity or correctness.
The best things in life are free.
http://www.gentoo.org
Guy 1: Surely, you will fold with me.
Guy 2: Alright, but don't call me Shirley.
 
titan
Grand Gerbil Poohbah
Topic Author
Posts: 3376
Joined: Mon Feb 18, 2002 7:00 pm
Location: Great Smoky Mountains
Contact:

Re: New hard drive? Read this first.

Thu Sep 25, 2008 8:36 am

I've updated the HOWTO once again. I corrected some grammar and added headers to the mounting section of the Linux part.

Most importantly, I finally added instructions of how to add a new hard drive to an Apple computer.

As always, please give me feedback.
The best things in life are free.
http://www.gentoo.org
Guy 1: Surely, you will fold with me.
Guy 2: Alright, but don't call me Shirley.
 
Richie_G
Gerbil XP
Posts: 474
Joined: Sat Mar 29, 2008 4:22 am
Location: Swenglandmark.

Re: New hard drive? Read this first.

Mon Jun 15, 2009 4:07 pm

Many thanks for this guide: it's just saved me a major headache getting a new drive working... :)
"Give a man a fire and he's warm for the day. But set fire to him and he's warm for the rest of his life."
 
Richie_G
Gerbil XP
Posts: 474
Joined: Sat Mar 29, 2008 4:22 am
Location: Swenglandmark.

Re: New hard drive? Read this first.

Mon Jun 15, 2009 4:35 pm

Just one question: when I first initialise a brand new drive in the disk manager, is it ok to do a quick format or should I leave it to do a full one?
"Give a man a fire and he's warm for the day. But set fire to him and he's warm for the rest of his life."
 
morphine
TR Staff
Posts: 11600
Joined: Fri Dec 27, 2002 8:51 pm
Location: Portugal (that's next to Spain)

Re: New hard drive? Read this first.

Mon Jun 15, 2009 5:44 pm

Richie_G wrote:
Just one question: when I first initialise a brand new drive in the disk manager, is it ok to do a quick format or should I leave it to do a full one?

A quick format is enough to get it up and working. The full format will completely format the disk's capacity. It'll take an hour(-ish), but you will get the disk's surface verified in the process, similar to a full surface scan in Windows, for example.
There is a fixed amount of intelligence on the planet, and the population keeps growing :(
 
Richie_G
Gerbil XP
Posts: 474
Joined: Sat Mar 29, 2008 4:22 am
Location: Swenglandmark.

Re: New hard drive? Read this first.

Tue Jun 16, 2009 3:48 am

Ah ok, thanks. I wasn't sure if it may affect the performance of the drive in some detrimental fashion.
"Give a man a fire and he's warm for the day. But set fire to him and he's warm for the rest of his life."
 
UberGerbil
Grand Admiral Gerbil
Posts: 10368
Joined: Thu Jun 19, 2003 3:11 pm

Re: New hard drive? Read this first.

Tue Jun 16, 2009 10:15 am

Richie_G wrote:
Ah ok, thanks. I wasn't sure if it may affect the performance of the drive in some detrimental fashion.
No, it won't affect performance at all. Some people always do a complete format, but if you trust the QA of the drive mfr at all (and if you don't, why did you buy the drive) you shouldn't need more than the quick format on a brand new drive. With drives that have been in use and/or may have had bad sectors, a full format is worthwhile.

What can affect performance is the format parameters (cluster size, etc) but these days the defaults are the right choice (if you know enough to be in a situation where they aren't, you probably know enough to know what the right parameters are). There's also an issue with SSDs (and pre-Windows 7 OSes) with aligning partitions on a block boundary, but that's not something you have to worry about with a traditional hard drive.
 
Richie_G
Gerbil XP
Posts: 474
Joined: Sat Mar 29, 2008 4:22 am
Location: Swenglandmark.

Re: New hard drive? Read this first.

Tue Jun 16, 2009 10:33 am

Ok thanks for the heads up. For the record it's a 1TB Caviar Green and is now working flawlessly, and silently for that matter.
"Give a man a fire and he's warm for the day. But set fire to him and he's warm for the rest of his life."
 
yogibbear
Gerbil Elite
Posts: 920
Joined: Fri Feb 08, 2008 11:30 am

Re: New hard drive? Read this first.

Sat Jan 09, 2010 12:37 am

Maybe just for anyone who's totally not able to click things without asking you could update the vista bit to say...

1. right click on Disk Icon on the left of the Black Bar
2. Click "Initialize"
3. right click on Black bar
4. Select "Simple Setup"
5. Choose MBR
6. NTFS
7. Go!
Core i7 4770K | eVGA GTX1080 FTW ACX 3.0 | 16GB DDR3 2133mhz | Asus Z87-PLUS | Corsair HX650 | Fractal Define R4 | Samsung 840 Pro 256GB | Windows 10 x64
 
Moneybit7
Gerbil In Training
Posts: 1
Joined: Thu Jan 19, 2012 7:49 pm

Re: New hard drive? Read this first.

Thu Jan 19, 2012 7:54 pm

thanks for the post, I was wondering if the steps are the same for windows 7 64 bit. I have a desktop that just went and I think its the hard drive. I was also wondering if anyone could help by answering the following question: is there any way to test a computer (diagnose) without having to use another pc?
MoneyBit
Necessity is the Mother of Invention
Shark Navigator Vacuum Man
 
UberGerbil
Grand Admiral Gerbil
Posts: 10368
Joined: Thu Jun 19, 2003 3:11 pm

Re: New hard drive? Read this first.

Fri Jan 20, 2012 6:06 am

Sure, there are a bunch of tools like memtest that you can run from a USB flash drive.
But you should start a new topic -- in General Hardware unless you're certain it's the HD -- and lay out your problem in detail (Is it booting to the BIOS? Can the BIOS see the hard drive? Etc)
 
UberGerbil
Grand Admiral Gerbil
Posts: 10368
Joined: Thu Jun 19, 2003 3:11 pm

Re: New hard drive? Read this first.

Wed Jan 25, 2012 2:36 am

 
DiMaestro
Gerbil Elite
Posts: 890
Joined: Wed Dec 26, 2001 7:00 pm
Location: North Dakota NoMoah!

Re: New hard drive? Read this first.

Mon Sep 10, 2012 10:58 pm

Got a new drive? Want to clone your partitions, regardless of size? Partition Magic using Gparted ... aka PartMagic or Clonezilla, both opensource freely downloadble software will help you clone your old drives to your new one.

links:
http://partedmagic.com/doku.php?id=downloads
http://partedmagic.com/doku.php?id=downloads

And as a sidenote, both can be used for raw sector by sector backups. Toss them onto a network drive, and use 'forfiles' to delete any file older than 7 days? Sheeit, that's symantec backup exec for free. But you gotta do some scripting/boot magic for it to work properly. Or one could use forfiles & windows backup on a 7 day backup rotation. I do this for a few servers at work. It's easy. and it's cheap. (zero dollars) - my favorite amount. Requires some disk dump space tho. 7x current disk usage for a weekly backup scheme.
 
UberGerbil
Grand Admiral Gerbil
Posts: 10368
Joined: Thu Jun 19, 2003 3:11 pm

Re: New hard drive? Read this first.

Tue Sep 11, 2012 3:04 pm

Not sure why this got necro'd, but I'll give a recommendation for the free version of Macrium Reflect, as suggested here. I used it for the first time a few weeks ago and came away impressed.
 
Thresher
Gerbil Jedi
Posts: 1612
Joined: Tue Jan 15, 2002 7:00 pm
Location: Bloomington, IL
Contact:

Re: New hard drive? Read this first.

Wed Mar 27, 2013 10:43 am

Regarding Macs:

I would suggest exFAT rather than FAT32 for external drives. FAT32 has a file size limit of 4GB, which can become an issue. The only real drawback is that it is not Linux compatible.
 
Deanjo
Graphmaster Gerbil
Posts: 1212
Joined: Tue Mar 03, 2009 11:31 am

Re: New hard drive? Read this first.

Sun Feb 28, 2016 10:20 am

titan wrote:
. Again, it's outside the scope of this article to discuss the benefits and drawbacks of each option, however, it should be noted that if this is an external drive you will be better served formatting the drive using the FAT32 file system. This will enable you to use the drive both on Mac and Window operating systems.


No..... just no. You have a few options on OS X if you want to cross platform mount. FAT32 shouldn't be needed in this day and age.

Options are

1) format in exFAT, both Windows and OS X can r/w to that filesystem and can be used in Linux as well.
2) enable NTFS write in OS X via editing stab
3) use 3rd party plugin on OS X to support NTFS such as Tuxera NTFS, Paragon NTFS or FUSE.
4) use 3rd party plugin on Windows to read HFS+ such as Paragons's HFS+ for Windows

FAT32 should never be used in this day and age.
 
Deanjo
Graphmaster Gerbil
Posts: 1212
Joined: Tue Mar 03, 2009 11:31 am

Re: New hard drive? Read this first.

Sun Feb 28, 2016 10:23 am

Thresher wrote:
Regarding Macs:

The only real drawback is that it is not Linux compatible.


Linux can R/W exFAT fine via exfat-fuse.
 
The Egg
Minister of Gerbil Affairs
Posts: 2938
Joined: Sun Apr 06, 2008 4:46 pm

Re: New hard drive? Read this first.

Sun Feb 28, 2016 2:36 pm

Deanjo wrote:
titan wrote:
FAT32 should never be used in this day and age.

Many consumer electronics (TVs, car stereos, etc) STILL only read FAT32. Sad but true.
 
biffzinker
Gerbil Jedi
Posts: 1998
Joined: Tue Mar 21, 2006 3:53 pm
Location: AK, USA

Re: New hard drive? Read this first.

Sun Feb 28, 2016 3:00 pm

Why are you guys responding to a 3 year old thread? :P
It would take you 2,363 continuous hours or 98 days,11 hours, and 35 minutes of gameplay to complete your Steam library.
In this time you could travel to Venus one time.
 
localhostrulez
Minister of Gerbil Affairs
Posts: 2481
Joined: Sun Mar 09, 2014 11:26 pm

Re: New hard drive? Read this first.

Sun Feb 28, 2016 3:26 pm

The Egg wrote:
Deanjo wrote:
titan wrote:
FAT32 should never be used in this day and age.

Many consumer electronics (TVs, car stereos, etc) STILL only read FAT32. Sad but true.

Doesn't Microsoft hold the patents for exFAT/FAT64, hence devices that still don't have it?
 
biffzinker
Gerbil Jedi
Posts: 1998
Joined: Tue Mar 21, 2006 3:53 pm
Location: AK, USA

Re: New hard drive? Read this first.

Sun Feb 28, 2016 3:34 pm

localhostrulez, I think you meant to refer to FAT16, and FAT32? For exFAT from wikipedia, "It is proprietary and Microsoft owns patents on several elements of its design."

Edit: Design of the FAT file system
File Allocation Table - Patents
Last edited by biffzinker on Sun Feb 28, 2016 3:38 pm, edited 1 time in total.
It would take you 2,363 continuous hours or 98 days,11 hours, and 35 minutes of gameplay to complete your Steam library.
In this time you could travel to Venus one time.
 
Captain Ned
Global Moderator
Posts: 28704
Joined: Wed Jan 16, 2002 7:00 pm
Location: Vermont, USA

Re: New hard drive? Read this first.

Sun Feb 28, 2016 3:37 pm

biffzinker wrote:
localhostrulez, I think you meant to refer to FAT16, and FAT32? For exFAT from wikipedia, "It is proprietary and Microsoft owns patents on several elements of its design."

He was explaining why FAT32 lives on in things like TVs and car stereos. The head unit in my 2016 Subaru will talk only to FAT16/FAT32 drives in bare-metal mode.
What we have today is way too much pluribus and not enough unum.
 
localhostrulez
Minister of Gerbil Affairs
Posts: 2481
Joined: Sun Mar 09, 2014 11:26 pm

Re: New hard drive? Read this first.

Sun Feb 28, 2016 4:30 pm

biffzinker wrote:
localhostrulez, I think you meant to refer to FAT16, and FAT32? For exFAT from wikipedia, "It is proprietary and Microsoft owns patents on several elements of its design."

Edit: Design of the FAT file system
File Allocation Table - Patents

No, I do mean exFAT - Microsoft has to license it, so others (like car stereos that Ned mentioned) tend to avoid it.

Still, Ned, you're lucky that your car stereo knows what USB is. :lol: At least the 4GB FAT32 file size limit isn't a big deal for music...
 
biffzinker
Gerbil Jedi
Posts: 1998
Joined: Tue Mar 21, 2006 3:53 pm
Location: AK, USA

Re: New hard drive? Read this first.

Sun Feb 28, 2016 5:23 pm

Maybe I should of pointed out there is no FAT64 unless we have switched from calling exFAT to FAT64. :wink:
It would take you 2,363 continuous hours or 98 days,11 hours, and 35 minutes of gameplay to complete your Steam library.
In this time you could travel to Venus one time.

Who is online

Users browsing this forum: Google [Bot] and 1 guest
GZIP: On