Slashdot Mirror


Seagate Confirms 3TB Hard Drive

Stoobalou writes "After a few weeks of rumours, Seagate's senior product manager Barbara Craig has confirmed that the company is announcing a 3TB drive later this year, but the move to 3TB of storage space apparently involves a lot more work than simply upping the areal density. The ancient foundations of the PC's three-decade legacy has once again reared its DOS-era head, revealing that many of today's PCs are simply incapable of coping with hard drives that have a larger capacity than 2.1TB."

66 of 467 comments (clear)

  1. does it work with Windows 98? by alen · · Score: 5, Funny

    i have to know because i have a Win98 PC that i use to play some old games and i wanted to upgrade it

    1. Re:does it work with Windows 98? by Pojut · · Score: 2, Interesting

      If games are the only thing holding you back, let me recommend GOG.com or if you're really old school Dos Box.

      Both are awesome suggestions, but I still like having a top-of-the-line PC circa the year 2000 with Windows 98 installed on it laying around. It's like using an NES emulator vs. playing a game on NES hardware. Sure, you technically are playing the same game...but the experience isn't quite the same :-)

    2. Re:does it work with Windows 98? by aardwolf64 · · Score: 5, Funny

      I think you could probably install EVERY game from the 90s on that hard drive and still have 2.09 TB left over. :-)

    3. Re:does it work with Windows 98? by hedwards · · Score: 2, Funny

      Eh, just install Linux. You can then install a Cron script to randomly reboot the system at odd intervals. Bonus points if you make it see how important the work you're doing is and crash after you've been more than 10 minutes without saving.

      Same experience exactly.

    4. Re:does it work with Windows 98? by Iron+Condor · · Score: 2, Informative

      FAT32 is a file system type. It can at most limit the size of a partition. It has nothing whatsoever to do with the size of a disk.

      --
      We're all born with nothing.
      If you die in debt, you're ahead.
  2. 2TB with 512-byte sectors by crow · · Score: 4, Insightful

    If you move to 4K sectors, that should change the limit to 16TB, meaning that this shouldn't be an issue for several years. Why would you want .5K sectors on such a large drive anyway?

    1. Re:2TB with 512-byte sectors by Gr8Apes · · Score: 2, Insightful

      Because 512 byte sectors allow for less empty space waste than anything larger.

      Imagine wasting 4095 vs 511 bytes for every file on your system (worst case scenario)

      --
      The cesspool just got a check and balance.
    2. Re:2TB with 512-byte sectors by larry+bagina · · Score: 5, Informative

      most file systems already use a 4k sector.

      --
      Do you even lift?

      These aren't the 'roids you're looking for.

    3. Re:2TB with 512-byte sectors by omnichad · · Score: 2, Informative

      And if their sectors don't fall on a physical boundary, then you've just used 8KB on the physical drive.

    4. Re:2TB with 512-byte sectors by Anonymous Coward · · Score: 3, Informative

      If you're on windows, you'll either need EFI or a separate boot drive.
      Windows cannot boot from driver larger than 2 TB

      The issue is, MBR doesn't support drives that big, so you have to use GPT (which Windows won't boot from w/o EFI).
      So if you're on Windows, but without EFI, you're SOL. ;)

      Also, kind of a pain on *nix+BIOS combos too.

    5. Re:2TB with 512-byte sectors by maxume · · Score: 5, Funny

      Yeah, you would only be able to store 800 million of your oddly small files on this new drive. What a disaster.

      --
      Nerd rage is the funniest rage.
    6. Re:2TB with 512-byte sectors by twidarkling · · Score: 5, Funny

      Seriously? If you've got a 3TB drive, are you seriously suggesting a person be counting wasted bytes? You lose more space than what you're suggesting just in the conversion from "vendor measurement" to "OS measurement" of space on the disk.

      --
      Canada: The US's more awesome sibling.
    7. Re:2TB with 512-byte sectors by instagib · · Score: 2, Informative

      And if the physical boundary is 512 bytes, this won't happen.

    8. Re:2TB with 512-byte sectors by Jah-Wren+Ryel · · Score: 4, Informative

      And if their sectors don't fall on a physical boundary, then you've just used 8KB on the physical drive.

      100% false.

      You still only use 4K on the physical drive. You just have to read & write 8K at a time because the misaligned 4K filesystem block straddles two physical blocks. But since filesystem blocks are packed sequentially there is no wasted space, they are just all misaligned by the same offset.

      --
      When information is power, privacy is freedom.
    9. Re:2TB with 512-byte sectors by omnichad · · Score: 2, Informative

      That's what I get for responding too quickly. You're totally right.

    10. Re:2TB with 512-byte sectors by Bing+Tsher+E · · Score: 3, Funny

      Quick access means updating from a mechanical to an optical paper tape reader.

    11. Re:2TB with 512-byte sectors by Simetrical · · Score: 3, Informative

      Because 512 byte sectors allow for less empty space waste than anything larger.

      Um, no. The sector size dictates what boundaries the OS has to do reads and writes on. It doesn't dictate how the OS uses the space. 4k sectors means that to read or write an aligned 4k filesystem block, the OS has to do one I/O operation instead of eight; and that if it wants to write a 512-byte block, it has to do a read-modify-write cycle.

      How efficiently small files get stored is a property of the filesystem, which doesn't even know about the sector size. Common filesystems all use 4k blocks or bigger anyway. Some filesystems store files smaller than 4k efficiently by packing them in with the metadata or dedicating some blocks to store several files per block. Filesystems that do this include, most notably, NTFS, and also some Linux filesystems like ReiserFS and btrfs. Wikipedia calls this block suballocation (don't know if this term is standard). This is totally orthogonal to the sector size.

      --
      MediaWiki developer, Total War Center sysadmin
  3. Linux can handle it just fine by basketcase · · Score: 4, Informative

    I ran into that a few years ago when I added a 4TB hardware RAID5 to my Linux server. The partition table that is made by fdisk can't handle it. I was forced to use parted to make an EFI partition table instead. It was a little different but completely doable. Took me about 2 minutes on Google to find a howto.

    1. Re:Linux can handle it just fine by danomac · · Score: 4, Informative

      You can also create a filesystem on the device without partitioning it. (create a filesystem on /dev/sda instead of /dev/sda1.) No worries about partitioning problems then. I did this on a 3 TB array.

    2. Re:Linux can handle it just fine by 0100010001010011 · · Score: 2, Informative

      You mean GUID partition Table. It is part of the EFI standard, however you can use a GUID partition with BIOS. Linux and FreeBSD are the only 2 OSs that can Boot from a BIOS/GUID setup.

      Windows can boot from a GUID partition table, but only on an EFI motherboard and those aren't exactly falling from the sky right now.

      Personally all of my disks are on GUID because my main OSes are Linux/MacOS X, other than my OpenSolaris server which just uses ZFS on the devices.

    3. Re:Linux can handle it just fine by vlm · · Score: 2, Informative

      I'm not familiar with LVM. Mind giving a quick "noob's guide on what you should know"?

      Its a "pulling oneself up by ones bootstraps" thing. He was trying to make a "funny". So, on my AMD64 from like five years ago, running linux 2.6 from like five years ago, I can theoretically provision a 8 Exabyte LVM logical volume (LV) which would seem to mean a 4TB LV is small potatoes. But LVs live inside PVs (simplification). All you gotta do, is use fdisk to create a honking big 4TB physical volume partition with type 8E. Oh wait, the problem was fdisk doesn't work. A real knee slapper. But not as funny as trying to use NTFS or windows on it.

      Actually the real answer is you physically reconfigure your disks (how?) to make two little 2TB PVs then combine them into a VG (volume group) then put the 4 TB LV inside the VG. Then next year, when your collection of pr0n is like 3.9 TB, you buy a new 10 TB drive, add it to the VG, and remove the old drives from the VG. How you expand the LV to use the new space is your problem but it probably involves our old pal ext2resize or whatever appropriate.

      --
      "Science flies us to the moon. Religion flies us into buildings." - Victor Stenger
    4. Re:Linux can handle it just fine by Stradenko · · Score: 3, Informative

      Not exactly a "noob's" guide, and it hasn't been updated in awhile, but: http://tldp.org/HOWTO/LVM-HOWTO/

      Think of LVM as a layer of abstraction between physical devices (your disks and/or arrays) and the logical devices that you can then put a filesystem on. LVM lets you break your physical disks into bite-sized pieces called extents (say, 32MB each, but it's configurable), and then you can add/remove extents to a logical disk device. If you have a filesystem that supports it, you can then grow/shrink the filesystem to use the space you've allocated.

      There are also other benefits (snapshots, etc.).

    5. Re:Linux can handle it just fine by vlm · · Score: 2, Informative

      Not exactly a "noob's" guide, and it hasn't been updated in awhile, but: http://tldp.org/HOWTO/LVM-HOWTO/

      Not a bad noob reference. Its funny in a quaint way how it squeals about root LVM... that hasn't been a serious problem since like the Clinton administration. I know I've got vanilla out of the box Debian boxes from like half a decade ago with root LVM, just not an issue.

      It does suck in the "Why" section, in that all it does is list "What" it can do.

      Assuming the prerequisite of understanding what Xen/KVM/VMware does, think about how it wedges a layer in between the OS and the CPU so you can pool, combine, snapshot, transfer, share, shrink, expand, what the OS sees as "its" CPU. LVM does the same thing, except living between the partition table and the physical hardware. The analogy is LVM is to disks, like KVM/Xen/Vmware is to CPUs. I kind of enjoy this paragraph, I think its the best description of LVM I've ever read, and not just because I wrote it...

      --
      "Science flies us to the moon. Religion flies us into buildings." - Victor Stenger
    6. Re:Linux can handle it just fine by Hal_Porter · · Score: 5, Informative

      The Bios doesn't know anything about partitioning. It only knows it needs to read sector 0 of a disk into memory at 0x7c00 and jump to it. If the disk is MBR partitioned that's the MBR and the code there knows how to scan the partition table, and load the boot sector of the partition table using INT 13h. If it's not partitioned sector 0 is the boot sector of the partition table already and will use INT 13h to load the OS boot loader.

      GPT is different because sector 0 contains a "Protective MBR" that just reserves the whole disk. That doesn't contain any code - EFI Bioses need to read boot code from a special FAT formatted partition (Macs apparently use HFS+ instead). EFI Bioses offer a much more complicated API than the Bios, which is good in some ways (flexibility) and bad in others (more chance of bugs).

      But non partitioned disks have always been supported. In fact floppy disks are always non partitioned.

      Actually it's a shame that sector 0 of an GPT disk doesn't contain code to load a boot manager that understands GPT to allow booting from a GPT disk with an old fashioned Bios. Or that some way for old style Bioses to boot from disks with a partition table with 64 bit LBAs in wasn't developed - MBR partitioning only has space for 32 bit LBAs. Which means no support for disks bigger than 2TB.

      --
      echo -e 'global _start\n _start:\n mov eax, 2\n int 80h\n jmp _start' > a.asm; nasm a.asm -f elf; ld a.o -o a;
    7. Re:Linux can handle it just fine by evilviper · · Score: 3, Informative

      Actually it's a shame that sector 0 of an GPT disk doesn't contain code to load a boot manager that understands GPT to allow booting from a GPT disk with an old fashioned Bios.

      They do just as soon as you install Grub on it (either version 2 or a patched older version).

      EFI is uncommon, but raid arrays with 4 or more TB+ HDDs are VERY COMMON. What do you think everyone's been doing with those TB+ enterprise HDDs for the past couple years?

      --
      Slashdot gets worse every day... Pipedot: News for nerds, without the corporate slant
  4. 3TB - that's all you'll ever need! by filesiteguy · · Score: 2, Funny

    I can see the reviews coming in now stating that "3 terabytes is all you'll ever need to store your documents and information."

    1. Re:3TB - that's all you'll ever need! by The+MAZZTer · · Score: 4, Funny

      Yes, "documents".

  5. XP + 3 TB?? by DinZy · · Score: 2, Insightful

    Why would anyone running XP fork over the dough for a 3TB HDD? XP is 9 years old and Win7 is a very good replacement for newer machines, particularly ones who's owners might want a 3TB drive for.

    1. Re:XP + 3 TB?? by psbrogna · · Score: 2, Insightful

      Win7 is NOT replacement for XP if drivers for your hardware aren't available for Win7 & this often the case.

    2. Re:XP + 3 TB?? by Facegarden · · Score: 2, Insightful

      Why would anyone running XP fork over the dough for a 3TB HDD? XP is 9 years old and Win7 is a very good replacement for newer machines, particularly ones who's owners might want a 3TB drive for.

      Because some people are perfectly happy running XP, or don't want to pay $100-$200 for a legal copy of windows 7, and don't want to pirate.

      I have a perfectly good fileserver at home that just runs XP. I use XP because it is also my backup computer for various tasks, and mostly I've just been too lazy to move it to linux.

      Either way, i've got 5TB of storage and I'd love to throw in another 3TB. Even if I fork over the money for a 3TB drive, i might not want to spend *another* $100 just for a compatible OS, even if I have all the money in the world.

      XP is a perfectly good OS for most people for another 5 years if not longer. I love windows 7 and have it on 3 machines of mine, but that doesn't mean XP isn't totally fine much of the time.

      Plus, you can find legal copies of XP for free, in the trash. When someone throws out an old PC, it often still has XP, so I snap a picture of the license sticker and use that with an OEM disc next time I need a copy of XP on something. Legally gray but I consider it fair use.
      -Taylor

      --
      Worldwide Military budgets: $2100 billion. Worldwide Space Exploration budgets: $38 billion. Really, world? Really?
    3. Re:XP + 3 TB?? by maxwell+demon · · Score: 2, Interesting

      Perhaps you missed his comment "for newer machines"?

      Because there's no way anyone would attach old peripherals to newer machines ...

      --
      The Tao of math: The numbers you can count are not the real numbers.
  6. Not a huge deal by Anonymous Coward · · Score: 4, Insightful

    FTFA:

    According to Seagate, this includes the 64-bit versions of Windows 7 and Vista, as well as modified versions of Linux, but it doesn’t include Windows XP. Not only that, but you may not even be able to see 2.1TB of a 3TB drive when using Windows XP.

    Sure, Windows XP won't allow it - but your grandmother who is still running XP isn't going out to buy a 3 TB drive. The early adopters who want or need this are the ones who are already running a compatible OS.

    1. Re:Not a huge deal by gumbi+west · · Score: 2, Insightful

      Wow dude, you have totally missed out on the last 10 years of OS improvements then.

  7. Takes me back... by Verteiron · · Score: 2, Funny

    I had a sudden and vivid memory of the little blue ASCII box displayed by the special Western Digital bootloader I needed to bypass my old BIOS's 2GB drive size limit.

    --
    End of lesson. You may press the button.
    1. Re:Takes me back... by jspayne · · Score: 3, Funny

      I remember upgrading systems from DOS 3.3 to 4.0 to support larger than 32Mb hard drives. Now get off of my lawn!

  8. Re:Mac OS X by commodore64_love · · Score: 4, Informative

    Everything works on Mac, because Apple doesn't support legacy stuff. They assume any Mac older than ~5 years is obsolete, and therefore moved to 64-bit addressing long ago.

    (No I'm not trolling. I'm bitter. I had to toss a perfectly good Mac G4, just because Apple stopped supporting it, and its ancient Safari 2 browser could no longer render the web properly.)

    --
    "I disapprove of what you say, but I will defend to the death your right to say it." - historian Evelyn Beatrice Hall
  9. How long can the growth last? by alvinrod · · Score: 4, Interesting

    I'm aware that hard disk capacity follows a trend similar to Moore's law in that capacity roughly doubles every two years or thereabouts, but much like the CPU industry, does anyone know how far into the future magnetic storage will continue to scale at that pace? Even though solid state drives are becoming more affordable and the performance issues are being ironed out, when magnetic storage is only $70 / TB, it's hard to pass up. I'm just interested in how much longer we can expect to see capacity gains like this.

    Is there anyone who currently works in that area or has a background in magnetic storage who has a better idea?

    1. Re:How long can the growth last? by 0123456 · · Score: 4, Insightful

      Without multi-core, Moore's law would have ended recently.

      Since Moore's law is about the number of transistors on a die and nothing to do with performance (except to the extent that more transistors allows higher performance), multiple cores are irrelevant: we could be running Pentium-4s with 16MB of cache instead of hexa-cores with 12MB of cache and Moore's Law would be just as valid.

    2. Re:How long can the growth last? by kimvette · · Score: 4, Insightful

      I'm just interested in how much longer we can expect to see capacity gains like this.

      Do you know how long that question has been asked, and how many times "theoretical limits" would be reached within a year at the current rate, and each time, new techniques have been developed which increase density many times more than anyone previously imagined? I think storage density will be increasing for that much longer.

      15 years ago when you were paying $500 for a 320MB hard drive, did you ever anticipate your home PC would someday have a capacity of multiple terabytes? Could you imagine that a laptop would ever be able to hold over a terabyte? The capacity we have nowadays is staggering, and when back when you had your 320MB to 512MB hard drive and were thinking "I'll never fill this up" only a few were bothering with MP3s and PVR technologies (I bought my first video capture/TV tuner card around that time) and I'll bet few ever fathomed that a user could fill terabytes' worth of hard drives. Now it's cheap to build home recording studios, or even engage in amateur independent movie production with only a few hundred dollars' worth of equipment, running free software.

      It's amazing, and with storage capacity growth increasing (not decreasing) we'll find new ways to fill up the storage media, very likely doing things we haven't anticipated even today.

      --
      The Christian Right is Neither (Christian nor right). See: Matthew 23, Matthew 25, Ezekiel 16:48-50
    3. Re:How long can the growth last? by gemada · · Score: 4, Funny

      as long as there is porn, the growth will continue (pun intended)

    4. Re:How long can the growth last? by vlm · · Score: 3, Informative

      15 years ago when you were paying $500 for a 320MB hard drive, did you ever anticipate your home PC would someday have a capacity of multiple terabytes? Could you imagine that a laptop would ever be able to hold over a terabyte?

      Yes, yes I did. I notice your very high six digit UID. Now when my father's employer paid something like $20K for a 5 meg DASD the size of a filing cabinet when I was a little kid, I never imagined I could buy my own personal "winchester disc" for less than "a buck a meg" but I finally did that on sale around 1990-ish timeframe. At that point you kind of get the idea that increasing capacity is a way of life. And its been that way for decades.

      --
      "Science flies us to the moon. Religion flies us into buildings." - Victor Stenger
  10. Re:Legacy be damned. by pz · · Score: 3, Interesting

    We are counting in binary are we not?

    Not when it comes to disk drives. The total storage in a spinning media drive is based on the number of platter sides used, which can range from 1 to 6 (or perhaps 8 ... does anyone still use four platters?), the areal density of storage on the surface, and how much of the surface is devoted to spare tracks to cover for manufacturing defects (and probably other factors I'm forgetting). None of these are based on powers of two phenomena.

    --

    Put my fist through my alarm clock with its ding-dong death inside my ear. - The Blackjacks.
  11. Re:Legacy be damned. by krnpimpsta · · Score: 3, Informative

    One other issue with this announcement; why did they bother with 3TB? Should the next step be 4TB? We are counting in binary are we not?

    No, we are not. We may count in binary for memory, but it's different for physical hard drives with spinning disks. For these, we count in platters (the actual physical disk(s) spinning in the drive).

    Hard drives typically have somewhere between 1 to 4 platters. Drives with more platters exist, but they're less common.
    Common platter sizes: 500GB, 375GB, 333G, 250GB

    I didn't RTFA (this is slashdot, come on), but I'm guessing what Seagate really did was come out with a 750GB platter, that can be used to produce a 3GB drive with 4 of those platters. You'll probably see the 4TB drive you want when they come out with a 1TB platter.

    --

    New webcomic updated on Sundays: HERE

  12. Re:Mac OS X by Low+Ranked+Craig · · Score: 3, Insightful

    Safari 3.0.4 runs on 10.4.x
    Safari 4 runs on 10.5+

    What G4 do you have that you can't install leopard on? I shoehorned Tiger onto an ancient G3 iMac from 2000, surely you can install leopard on a fairly recent G4, and if you can't you could have tried this http://lowendmac.com/osx/leopard/openfirmware.html

    Perhaps you simply wanted a new Mac?

    --
    I still cannot find the droids I am looking for...
  13. Re:So maybe they could by twidarkling · · Score: 2, Insightful

    Yes, let's design and manipulate an entire standard in order to work around a problem based entirely on the fact that people won't upgrade. And then you just need them to buy this and upgrade their compu...

    waaaaaaaaaaaaaait a second.

    --
    Canada: The US's more awesome sibling.
  14. use a 64-bit OS and GUID disk partitioning by YesIAmAScript · · Score: 3, Informative

    You need to be able to use larger than 32-bit block addresses. This is possible since the LBA spec uses 48-bit addresses. But the internals of some OSes use only 32-bit block addresses. The solution to this is to use a 64-bit OS. That allows 48-bit addresses (and then some).

    Another other problem is that the MBR disk partitioning scheme uses 32-bit block addresses, so you can't partition a disk larger than 2TB. But the answer to this is to use GUID disk partitioning.

    Finally there's your BIOS, it probably only supports MBR and 32-bit LBA. GUID disk partitioning supports making your disk look like an MBR disk so you can boot off it. You'll have to boot off a partition that starts within the first 2TB of the disk, but other than that you should be okay. Just make sure to never use any tools that think your disk is an MBR disk when you are repartitioning it or otherwise accessing it directly.

    Windows 7 (or Vista) 64-bit supports >32-bit LBA and GUID disk partitioning.

    And then finally hope you don't get any nasty viruses that try to go around the OS to access the disk (so as not to be detected) and mess it up when the calculations overflow 32 bits.

    --
    http://lkml.org/lkml/2005/8/20/95
  15. Re:Can we move on? by fuzzyfuzzyfungus · · Score: 3, Insightful

    Probably because "the big boys" in HDD manufacture have basically nothing interesting to bring to the SSD table(other than, possibly, some fairly generic interface patents). With the possible exception of HDD r/w head manufacture, which has gotten more chip-fab like as sizes and tolerances have gotten more demanding, the manufacturing methods for the two types of drive are basically nothing alike.

    Even the controller/controller firmware design isn't all that similar. HDD controllers have the task of extracting useful digital data from the ever fainter and denser analog magnetic fields on the platter. SSD controllers basically spend their time papering over the fact that Flash has highly asymmetric read/write behavior.

    Unless they fancy the idea of trying to recast themselves as semiconductor companies all of a sudden, the HDD guys are doing pretty much the most sensible thing available to them: running like hell in the direction of capacities that SSDs can't touch for less than a king's ransom.

  16. Re:Mac OS X by diamondsw · · Score: 3, Insightful

    And Firefox wouldn't work? If the machine still works for what you need to do, then you don't need to upgrade for the sake of upgrading. If it doesn't meet your needs anymore, then why complain about upgrading?

    Vendor support doesn't dictate what use you can get out of a machine. I have friends who are still running OS 9 (eek) on a G3, because it does what they need it to.

    --
    I don't know what kind of crack I was on, but I suspect it was decaf.
  17. Re:Can we move on? by Voyager529 · · Score: 3, Insightful

    Why can't we just move on and apply the sweet R&D money on the SSDs?

    They are.

    I guess that the "classic" hard drives will reach some sort of physical limit sometime in the (not so distant) future.

    Of course they will. But at that point they'll start talking about alternative form factors if they can't squeeze more bits into the same space.

    Why won't the big boys start to work hard on the SSDs?

    They are. The problem is that they're still expensive to manufacture and they still need to pay off their R&D.

    It's almost as reading a headline like this "New awesome floppies will be released in a new 10 MB size! - 'USB flash disks are overrated and expensive, nothing beats a good old floppy disk' a spokesperson for a floppy disk manufacturer said"

    More like "New awesome floppies will be released in 500MB size and cost 10 bucks a pop" circa 2002 when 128MB USB flash disks cost nearly $100. the proportions might be off, but ultimately flash media outran the floppy disk 'cuz it quickly outpaced it in cost/MB, transfer rates were dog slow, and they were incredibly unreliable. Note that in 2010, I bought a 250GB external hard drive for $50 at Wal-Mart, whereas a 256GB flash drive costs over $800 on Newegg. A 1TB Seagate spinning platter drive costs $85 on Newegg, wheras 1TB of OCZ flash memory costs over $3,000 and is the highest I've seen commercially avaialable. I personally don't mind saving $2,915 by using an older technology.

  18. Re:Mac OS X by M8e · · Score: 5, Funny

    Some dude had to buy a perfectly good Mac G4, just because Apple stopped supporting it, and its ancient Safari 2 browser could no longer render the web properly.

  19. Re:Legacy be damned. by JoshuaJ · · Score: 2, Insightful

    One other issue with this announcement; why did they bother with 3TB? Should the next step be 4TB? We are counting in binary are we not?

    Well, probably for the same reason that we had 1.5 TB drives in between 1TB and 2TB. The most popular sizes at NewEgg include 150GB, 250GB, 320GB, 500GB, 640GB, 750GB, 1TB, 1.5TB. So maybe you're counting in binary, but it looks like nobody else is.

  20. Re:Legacy be damned. by SIR_Taco · · Score: 2, Funny

    why did they bother with 3TB? Should the next step be 4TB? We are counting in binary are we not?

    Ok.... then lets call it an 11TB drive then and the next one can be an 100TB drive :)

    --
    I say don't drink and drive, you might spill your drink. Before you get behind the wheel just stop and think.
  21. Re:Mac OS X by maccodemonkey · · Score: 3, Insightful

    What price? He bought hardware that got old. It wasn't new enough to run the latest version of Mac OS X. He had many other options. He could have upgraded to Safari 3.0 which was supported on his machine. He may have been able to install Leopard with a new version of Safari. He could have moved to Firefox. He could have moved to Linux. He had plenty of options, I'm not sure why he didn't take any of them.

    As far as being able to upgrade the hardware, most things in an iMac G4 are perfectly upgradable, however, the CPU isn't. This is true of most all in one computers and laptops. I don't see anything implicitly Apple about any of this.

  22. Seagate reliability by mollog · · Score: 3, Interesting

    Seagate used to be the go-to disk drive maker. But in the last few years their quality has slipped and Western Digital became the better manufacturer.

    But I seem to detect that quality and reliability is returning to Seagate's devices. Does anybody have any recent experience with Seagate to share?

    --
    Best regards.
    1. Re:Seagate reliability by hedwards · · Score: 2, Insightful

      How recent? My 1tb disks have had no problems at all. I haven't had any trouble with them in years, I just like having the 5 year warranty. To date I haven't had any problems.

    2. Re:Seagate reliability by zaffir · · Score: 2, Insightful

      Anything short of a rather large scale, and therefore statistically valid, study is pretty much worthless. A pile of anecdotes in slashdot comments won't get you many facts.

      That said, I have never had a problem with a Seagate drive- including the 2 that I have been running in RAID-0 for the last 4 or 5 years.

      --
      "Upon attaching the waterblock to my penis, I began to notice that I know nothing about computers." -- JRockway
  23. Re:So maybe they could by vlm · · Score: 2, Informative

    (a hardware RAID ..... but you get massive speed increases).

    Hasn't been true since like the 90s. Linux software raid is always quicker, and far more interoperable and standardized.

    --
    "Science flies us to the moon. Religion flies us into buildings." - Victor Stenger
  24. Re:Legacy be damned. by vlm · · Score: 2, Interesting

    I'm guessing what Seagate really did was come out with a 750GB platter, that can be used to produce a 3GB drive with 4 of those platters.

    Minor nitpick but that would be a 6TB drive. Probably 2 dual sided platters at 0.750TB per side.

    --
    "Science flies us to the moon. Religion flies us into buildings." - Victor Stenger
  25. nominees of the future by tverbeek · · Score: 3, Funny

    Am I the only one who misread this as "Senate Confirms 3TB Hard Drive"? I didn't even know that machines could be nominated to the Supreme Court!

    --
    http://alternatives.rzero.com/
  26. Re:Mac OS X by cocotoni · · Score: 2, Informative

    Not only can you get the latest Safari 3 (3.2.3) to run on Tiger and it's only a year old, you can get the latest and greatest Safari 4.0.5 on Tiger.
    Links:
    Safari 4.0.5
    Safari 3.2.3 for Tiger

  27. Re:Mac OS X by Low+Ranked+Craig · · Score: 2, Informative

    Yes it does, according to Apple: http://support.apple.com/downloads/Safari_3_2_3_for_Tiger, and you could still install Leopard on your machine...

    --
    I still cannot find the droids I am looking for...
  28. Re:Mac OS X by mario_grgic · · Score: 2, Informative

    Snow Leopard is not pure 64 bit OS. By default it has 32 bit kernel on all hardware except the XServe, and it can be booted with 64 bit kernel on some other more recent hardware but not all things work in that configuration.

    --
    As the island of our knowledge grows, so does the shore of our ignorance.
  29. Booting Linux with a workaround, added benefits by xororand · · Score: 2, Insightful

    There's a simple workaround for the MBR problem with 2TB+ hard drives - for Linux.

    1) Store your boot files on a small secondary device, e.g. a USB stick. That includes: Master Boot Record, boot loader (e.g. GRUB or LILO), kernel, initrd - about 10 megabytes are easily enough.
    2) Boot the USB stick. The initrd mounts your hard drive and starts the actual /sbin/init process.

    This comes with several nice options:
    - Encrypt every single byte of your hard drive. A script in the initial ram disk asks for the passphrase, creates the dm-crypt device and mounts /.
    - You don't need a partition table. Just use the LVM2 inside the encrypted block device.
    - Add a Live CD image to the USB stick (separate FAT32 partition, convert isolinux config to syslinux, chainload from GRUB)

    I'm using all 3 of the aforementioned options and you'd have to take them from my cold, dead hands ;)

  30. Re:Mac OS X by not-my-real-name · · Score: 2, Insightful

    I won't argue about what wikipedia and apple.com say, but I will add an anecdote. I just checked the versions and I'm posting this from Safari 4.0.5 running on MacOS X 10.4.11. I don't remember doing anything special to install Safari. I may have downloaded it separately rather than using the Software Updater, but it seems to be working fairly well. I'm also running Firefox 3.6.3 and it's running well too. This is on an iMac G5.

    --
    un-ALTERED reproduction and dissimination of this IMPORTANT information is ENCOURAGED
  31. Re:Mac OS X by TheRaven64 · · Score: 3, Insightful

    I just checked my Powerbook, and it has Safari 4.0.4 (great version number for a web browser) running on OS X 10.4. I just ran Software Update, and 4.0.5 is in the queue. So, as per usual, you are talking complete nonsense. Oh, and for reference, that machine is 7 years old. It also has an iTunes update in the Software Update queue.

    --
    I am TheRaven on Soylent News
  32. Re:Legacy be damned. by dhanson865 · · Score: 2, Insightful

    To any average user the GB on the box is one thing and the GB Windows shows is another. They look at it just like they do CRT diagonal size of advertised vs visible.

    Yes both measurements of the CRT are just measurements. One matters to the manufacturer one matters to the consumer.

    Take the WD6400AAKS
    BOX Windows
    640GB = 596.13GB*

    Yes 1000/1024 conversion takes me from 640GB advertised to 596GB usable. In your case you mentioned 3TB on the box is about 2,794GB in Windows.

    I know this is /. and MacOS/Ubuntu are changing to Base10 file size nomenclature but Windows is still 80+% of the market and 90+% of the installed OSes including older versions of linux/MacOS will still report file sizes in base2.

    Until the advertised disk capacity is in the same format as the OS reports for the majority of users I think it's fair to say that the average user considers this misleading.

    Call it crap if you want but I didn't create the divide I'm just straddling it.