

Seagate to Drop IDE Drives by Year End 566
ianare writes "Seagate plans to cease manufacturing IDE hard drives by the end of the year and will focus exclusively on SATA-based products. Seagate is the first major hard drive manufacturer to announce such plans, though others will likely follow suit. That's not to say support for the 21-year-old PATA standard is going to vanish overnight; similar to how ISA slots were available long after most of us had ditched our old ISA peripherals."
Gone missing? (Score:5, Funny)
Re:What about osdev? (Score:5, Interesting)
You an still have fun with an ARM breadboard kit, though :-)
PS2 keyboards (Score:4, Funny)
Re:PS2 keyboards (Score:5, Funny)
Your proposal is acceptable.
Re:PS2 keyboards (Score:4, Funny)
I have a very old Fujitsu keyboard with excellent key layout and feel. It has an AT connector which I now plug into an AT-to-PS2 adapter which plugs into a PS2-to-USB adapter which finally plugs into my new Shuttle XPC that does not have a PS2 port. The absence of legacy ports on the Shuttle was one of the many reasons I bought it.
I expect that someone will have to pry my old Fujitsu keyboard from my cold dead fingers, and by then the list of adapters will be longer.
And finally, yes, all my storage devices in the Shuttle use SATA connectors.
Re:PS2 keyboards (Score:5, Funny)
Having USB ports for the mouse & keyboard would take the fun out of that!
Huh, the numlock light is on, but nothing's working.
Re:PS2 keyboards (Score:5, Funny)
Re:PS2 keyboards (Score:4, Funny)
Re: (Score:3, Informative)
Re: (Score:3, Interesting)
Re: (Score:3, Funny)
Re: (Score:3, Informative)
PATA is long overdue to be obsoleted, even optical drives are starting to come in SATA interface configurations. Next to go should be PCI slots.
Re:PS2 keyboards (Score:4, Interesting)
If you have a legacy IDE system, you can always get IDE to sata converters. Ditto for PS/2 to USB.
Really old legacy PC's just are not worth the trouble. If you have need for a low-end firewall box (always the stated use for an ancient box) you are better off with an embedded device running openWRT or something similar. A big old Pentium 133 that can't boot off a CD just needs to be retired already.
I'm just blown away that nearly every modern motherboard still has IDE, parallel, serial, and PS/2 ports. Hard to find ones that don't. I don't want the interrupts wasted! I don't want the board real estate wasted! I want more USB and ESATA ports on the back panel instead... Heck, if you feel you REALLY need the ports on the motherboard, put them on a header that I can extend to a few jacks on a PCI slot bracket, but I would prefer that they not be there at all.
Re: (Score:3, Informative)
I also lament the loss of serial ports on most new motherboards. I still use the serial port on a fairly regular basis (lots of hardware has RS232 diagnostic ports), and USB->Serial converters are surprisingly flaky (although not that surprising I guess, UARTs have tiny buffers and tight timing because everybody still seems to use chips from 1980 to make them. I even have some PCMCIA serial
Re: (Score:3, Insightful)
Forget space, there are very practical reasons for keeping keyboards a PS/2 Port. The fact is, if I have a functional keyboard plugged into a PS/2 port it just works, no special settings or configuration, no checking for compatibility or support. It works in simple utilities loaded off boot
Re:PS2 keyboards (Score:5, Informative)
Re: (Score:3, Insightful)
For instance, with my adapter, when I'm holding shift or ctrl for 5 seconds, it silently "forgets" that I'm holding the key. This is annoying when I'm paging in xterm (shift+page[up/dn]), hunting for a lost session in screen, etc. For games its beyond annoying, as your keyboard casually "forgets" that you're walking forward every 5 seconds.
Re: (Score:3, Informative)
Re: (Score:3, Interesting)
It's sad that it's far easier to use an Ethernet card at the lowest level than it is to use a USB host controller.
If I were to write an OS from scratch I would probably only implement support
Re:What about osdev? (Score:5, Informative)
Re:What about osdev? (Score:4, Informative)
http://www.missl.cs.umd.edu/winint/index2.html [umd.edu]
A few equipment query functions and a lot of INT 13 calls to read sectors off the disk. And INT 13 supports 64 bit LBAs which will last essentially forever - drives of upto 8 Zetabytes ( 8*(2^70) bytes ) are possible.
The original reason for EFI was because Itaniums needed a firmware standard because the Bios is x86 only. Macs use it mostly to stop people booting OSX on normal PC hardware as far as I can see.
There's a good reason for not using EFI too. EFI graphics cards need to have EFI byte code in Flash along with a normal x86 Bios unless they want to only work on EFI systems. That means more flash memory. Or the installation utility could copy the EFI driver into a FAT formatted EFI system partition, but that means if something corrupts it the card will stop working on a legacy free EFI system.
Actually, come to think of it, video bioses are a special case. On Windows XP, the driver can use Int 10 to call the video bios.
Hmm, it seems that this is disabled on Vista -
http://72.14.235.104/search?q=cache:URuKNsrXQDAJ:
So it seems like the Bios is used so little and is so futureproof that it doesn't do any harm to keep it. It's also small and simple and can run purely from Rom, whereas EFI needs a special partition which could be corrupted.
Re: (Score:3, Informative)
Really now? Ever heard of a thing called ACPI? If you have a laptop and have used the hibernation mode, you're executing code that is more or less in the BIOS. There's also lots of other power management, hot swapping and thermal management code in the BIOS.
And lets not forget that booting is still an important role in itself. Not only is there hardware initialisation, but there's the important role of loading the OS and/or boot loade
Re:What about osdev? (Score:5, Interesting)
Unfortunatly no vendor that supports EFI (including all Linux distros I have seen) gets it totally right (where any boot time configuration options are handled through EFI and not through another bootloader)
Well, EFI may not be the best way to get away from proprietary stuff. It seems that EFI explicitly vacilitates such behaviour by hardware manufacturers:
Interview with Ronald G. Minnich [fosdem.org] (Google cache) [209.85.135.104]
I have spoken with the EFI authors at length. They make no secret of the fact that a "core value" of EFI is the preservation of intellectual property related to chipset programming and internal architecture. To put it another way, EFI is dedicated to the preservation of "Hard" hardware (as defined above), and the provision of binary interfaces and subsystems to BIOS vendors and others.
It is not really possible to build a full open-source BIOS if EFI is involved. The Tiano [tianocore.org] system, which Intel claims is an open source BIOS, can not be used to build a BIOS unless it is attached to proprietary, binary-only BIOS code provided by a vendor.
Another important thing to realize about EFI is that it also contemplates enabling chipset features that will trap certain OS operations to an EFI-based control system running in System Management Mode. In other words, under EFI, there is no guarantee that the OS owns the platform.
Accesses to IDE I/O addresses, or certain memory addresses, can be trapped to EFI code and potentially examined and modified or aborted. Many see this as an effort to build a "DRM BIOS".
I am not sure what the real intent of this design is, but is is a real concern in secure environments (such as those found in governments, banks, and large search engine companies). A number of vendors and users have told me that they are not sure they can ship an EFI system they are willing to trust in a secure environment.
Re:What about osdev? (Score:5, Insightful)
Re: (Score:2, Informative)
Compaq HD interface - the original IDE (Score:3, Interesting)
Out of curiosity, did IDE have a standard interface when it started, or did everyone adopt the most popular one?
The original 'IDE' drives were made for Compaq by Control Data (whose disk drive division is now part of Seagate), so that could be thought of as the original standard. The intent was to have something that acted a bit like a standard MFM drive + controller to allow for a simple interface to the ISA bus. The original IDE port was on Compaq's multifunction I/O card that had the FD controller, parallel port, serial port and IDE port on one card. The original drives were 'dumb' with no information on drive ge
Re:What about osdev? (Score:4, Informative)
Re: (Score:2, Informative)
Depending on how you're written your IDE code, it should work on most SATA controllers + drive, since most SATA controllers also operate in compatability mode.
I recently tested my IDE driver on a SATA controller + drive and it worked without a problem.
You'd think they'd know better (Score:5, Funny)
Re: (Score:3, Funny)
Re:You'd think they'd know better (Score:4, Funny)
and employees get six. <---joke
^
|
joke
well, shit. (Score:5, Funny)
bastards.
Re:well, shit. (Score:5, Funny)
Long story short, don't bother with the ascii art.
Does it really matter? (Score:2)
Re:Does it really matter? (Score:5, Insightful)
Re:Does it really matter? (Score:5, Insightful)
Re:Does it really matter? (Score:5, Insightful)
Re: (Score:2)
Re: (Score:3, Informative)
PATA has nothing going for it.
SATA cables... (Score:4, Insightful)
Re: (Score:3, Interesting)
Re:Does it really matter? (Score:5, Funny)
Oh boy. I'll probably hate myself for this (Score:3, Funny)
Re: (Score:2)
Re: (Score:2)
Re: (Score:2)
Re: (Score:2)
I haven't put a floppy into a new machine for over 2 years. And I don't own a USB floppy drive either.
The floppy is finally going away.
Good (Score:5, Interesting)
Re: (Score:3, Interesting)
Oh fuck. (Score:4, Interesting)
I happen to like my computer. Being fanless and well-built, it is quite reliable except for the damn hard drive.
Re: (Score:2, Informative)
It's not ideal, but it works plenty well enough.
Re: (Score:3, Informative)
Re: (Score:2)
http://sewelldirect.com/IDE-to-SerialATA-Converte
a little pricey, IMO, but it's there if you want it.
Re: (Score:2, Funny)
Re: (Score:2)
But the Hard Drive is always the problem. HDD's don't generally have thermal protections, and the kinds of problems you're likely to see with hard drives are the ones that show up s
Re: (Score:2)
Re:Oh fuck. (Score:4, Funny)
Well, you shouldn't have bought Maxtor drives to begin with.
Re: (Score:2)
Re: (Score:2)
works fine (Score:2)
I don't even have a moving part for the power switch. I own a piece of history: the Mac G4 Cube.
but the motherboards! (Score:5, Insightful)
Re: (Score:2)
Re:but the motherboards! (Score:4, Insightful)
I recently purchased a couple new Dell computers for my company and couldn't justify paying extra for a floppy drive or hunting the site for a model with PS/2 ports. Instead I got 6 USB2.0 ports.
ISA ports, serial/paralell ports, PS/2 ports, floppy drives, PATA; it's all old technology. Let it go already. Much like cars gave up on carburetors, houses gave up wood-based heating, etc. so must computers give up the antique technologies we cling to so dearly.
Re: (Score:2, Insightful)
It's an unfortunate truth.
Re: (Score:2, Insightful)
Re: (Score:2, Informative)
All-in-all it took rather longer than it would have to just do it normally, and I coaster
Re:but the motherboards! (Score:5, Informative)
Re: (Score:3, Interesting)
Of course, a little USB-Serial dongle solved that issue for me when I had a thinkpad t42 at work a while ago...
Re: (Score:3, Informative)
P.S. - I work for an Advertising firm in my city. We run a few big digital (LED) billboards. One of which is pretty old and requires a serial port. The others are Ethernet.
Re: (Score:3, Insightful)
USB to serial is an extra device, costs money compared to a simple serial cable, and requires drivers (for some reason they still haven't standardised a usb to serial protocol, dammit!). It's a lot of hassle compared to walking up to a router and plugging the laptop into it.
Even more stupid is usb to serial adapters seem to all be cables with fixed plugs on the end, rather than a standard serial port - so you need a differ
Re: (Score:3, Interesting)
Re: (Score:2, Interesting)
I don't know about you, but I'd MUCH rather have parallel, serial, PS/2, and IDE connectors--which are backwards-compatible with most everything and do what they are meant to do well--than a half-dozen more USB or FireWire ports that don't even correspond to any devices that I personally use.
USB keyboards require special drivers and offer no interface-speed advantages unless you type at superhuman speeds.
Re:but the motherboards! (Score:5, Funny)
Did you miss the Microsoft to Drop Windows 95 by Year End article back in 2001? :)
Comment removed (Score:5, Interesting)
Re: (Score:2)
Too bad... (Score:2, Funny)
Re: (Score:3, Informative)
I generally only buy Seagate or WD.
It's sour. (Score:2, Interesting)
Re: (Score:2)
While I don't think I do anything that saturates a PATA connection, I like the fact that SATA drives can just be plugged into a backplane without fancy adapter circuitry, pro
Re:It's sour. (Score:4, Interesting)
Indeed. I was one of the poor unfortunate clods who went and upgraded his video card during the transition from AGP to PCI-e. I could have gotten a PCI-e version of my card but I only wanted to upgrade my video card, not my mother board etc. so I went AGP. I guess by now (about 2 years later) I got some good use out of it. But I'm the type of guy who likes to upgrade one component at a time as priority demands. Problem now is, in the last 2 - 3 years so many standards have changed so quickly. Much faster than I remember them changing (though that could just be due to aging). My current PC is pretty ok for my needs. But I'm starting to feel obsolete. It's single-core. 2Ghz. 1GB Ram. AGP card. IDE drives. When I upgrade I'm going to have to ditch this PC entirely and go BTX, dual or quad core, SATA, PCI-e etc. It will be an investment of a grand or two when I'm used to just investing a hundred or two here or there to upgrade what needs it.
I strongly believe that the main reason so many people are stuck with ancient old PCs from the mid - late 90's is price above anything else. Yes computer prices have come down dramatically. You can buy a PC for a couple hundred now. But a lot of people have WAY more important things to spend a couple hundred on. Like bills and food etc. And if their PCs fulfill their basic requirements then there's no reason to go brand spanking new. Right now we seem to be at a point where it's brand new or nothing. Simply because so many standards have been ditched for new ones in such a short period of time (ATX to BTX, 32-bit to 64-bit, single core to multi, IDE to SATA, DDR to DDR2 just off the top of my head).
Even if most of the standards have existed for some time, it's the manufacturers who, all of a sudden, decided to force the new ones all at once. That's how it feels from a budget conscious consumer.
Re: (Score:3, Informative)
But still, you're right that you will need to completely replace your pc to upgrade though, and while quite annoying, it's not the end of the world. You can still choose not to upgrade, and all you'll miss out on is
Eh (Score:2)
Re: (Score:2, Offtopic)
I have to say that I'm impressed. It's pretty quiet, has adequate air flow, and more than responsive enough for a storage drive.
It feels nice to have real drive space again a
PATA won a ribbon cable (Score:5, Funny)
They're a bunch of SASies.
PC Joe won't understand SCSI isn't old enough.
ISA... (Score:4, Insightful)
What's next??? (Score:2, Funny)
When will old PCI die? (Score:5, Interesting)
When will old PCI die? Perhaps very small format motherboards and laptops will eventually drive demand for 1xPCI-e cards?
For that matter - is there any reason for low-end PCI-e graphics cards to be 16x, rather than 8x or even 4x? (They'd still fit in a 16x slot.) I suppose there is no demand - any PCI-e motherboard has a 16x slot, and there isn't anything you'd want to put in it except a GPU. About the only use I can think of is if you wanted one computer to run many low-performance displays - e.g. 8 monitors off four GPUs, each using a 4x slot.
Re:When will old PCI die? (Score:5, Informative)
1. There are PCI-e 1x gigabit NICs and some of 1x video cards around. I think I've seen some 1x RAID cards as well, but I wouldn't swear to it.
I've got a PCI-e 1x gigabit NIC I put into machines without onboard gigabit - performance and CPU usage are both excellent. Gigabit on PCI tends to saturate the PCI bus and have much higher CPU usage - you should always check that any onboard gigabit NIC is PCI-e.
2. Tweaktown did some comparisons of a 7300GT on 1x and 16x - the results show significant differences:
http://www.tweaktown.com/reviews/1045/pci_e_x1_gr
Tom's Hardware have two articles comparing 1x, 4x, 8x and 16x by masking off pins on graphics cards. The performance graphs are very interesting.
Original article - X600XT, X800XT, 6800GT
http://www.tomshardware.com/2004/11/22/sli_is_com
Newer article - X1900XTX, 8800GTS
http://www.tomshardware.com/2007/03/27/pci_expres
The basic conclusion is that you only need 4x for lower-end resolutions and quality, but if you're pushing high-end cards you really want 16x.
Re: (Score:3, Informative)
Just a thought, but as it stands, there's just about zero advantage for a home user to switch to 1x PCI-e, which is the same speed as PCI.
Sure, PCI is (usually) a shared bus, while PCI-e is point-to-point, but nobody really gives a fuck because they're all using the SATA and ethernet ports on that are built into the motherboard (which generally get their own bus these days, anyway)
ISA is dead? (Score:2, Funny)
IDE graveyard (Score:4, Interesting)
I also like to go back and play with a older OS sometimes which doesn't even see a SATA drive. Guess it's time to stock up on a few IDE drives.
Re: (Score:3, Informative)
USB to Serial dongle
USB to Parallel dongle
Quite nice actually, one little USB hub on the right spot, and just one tiny cable to the PC.
And yes, I am buy my laser printers second hand; the LaserJet 6MP is perfectly fine for most
purposes, and good, low page count second hands go for little money.
It's a bad idea (Score:5, Funny)
Hardware: Seagate to Drop IDE Drives by Year End
They don't work so well after dropping them. I, for one, will not buy one of these dropped drives at any price.
What about SCSI? (Score:2)
What about USB enclosures? (Score:3, Interesting)
As far as I've seen, most USB enclosures have IDE harddisks inside them. The same is probably true for firewire as well. So there's still a lot of IDE harddisks on the market, and people do want bigger capacities as well.
Of course as a private company, Seagate are welcome to do as they please. There's still a few other manufacturers out there.
For desktop PCs, I think it would be silly to buy IDE-to-SATA converters. At least the ones in Korea cost close to 30 bucks. Most of the IDE harddisks people have are probably around 100-250 GB size, and you can already get that size SATA drives for less than 50 bucks. So the converter is not much of an investment really.
Why are so many complaining? (Score:4, Insightful)
If you want to connect your old IDE drive to a new computer, just buy a converter [addonics.com], if you can afford the computer, I'm sure you can find the extra $20 somewhere.
If your old IDE drive breaks and you need a new one, get a SATA card [cooldrives.com], it costs less than $30, so if you can afford the new drive, I doubt you will have a problem paying the extra $30.
If you want to add storage space to your existing computer and all your PCI slots are gone or you don't know how to open a computer, get a USB drive. Since you don't have a SATA connection, I doubt speed is your main concern.
Finally, if you don't have USB connections, get something like the NSLU2 [linksys.com], you can even run Linux [nslu2-linux.org] on it (I'm running two of those at home with Debian Etch, works really well).
I'm sure you could come up with some scenario where the IDE drive would be useful and there really isn't any other option, but for the vast majority of people complaining, there are solutions already out there that will solve the problem.
Sources????? (Score:3, Insightful)
So there seems to be some doubt about the article. When you visit the Ars link to the Inquirer, there are no references whatsoever beyond "Chanel sources". The only other news article I can find links back to the Inquirer.
I think I'd need to see a press release from Seagate before this gets any more of my attention.
No more IDE? (Score:3, Insightful)
When will people learn that SATA is also IDE...
Windows has a minor problem with SATA (Score:4, Informative)
Searching around to see who's got the same problem on Windows XP + SP4, I found out that it's a common problem for Windows not yet solved by Microsoft.
IDE disks do not have such a problem. I was thinking of buying IDE disks instead of SATA, but seeing that companies will drop IDE, it's not a very good long term investment.
Seagate = Maxtor, Maxtor still making IDE (Score:3, Informative)
And even if they stop, there are small SATA to IDE bridges available for about $20 which should work just about everywhere when space isn't a problem. Laptops might have issues, but I suspect 2.5" IDE dives will stay fround for a while for this reason.
This has happened in the past people. Remember MFM?