The State of Solid State Storage 481
carlmenezes writes "Pretty much every time a faster CPU is released, there are always a few that are marveled by the rate at which CPUs get faster but loathe the sluggish rate that storage evolves. Recognizing the allure of solid state storage, especially to performance-conscious enthusiast users, Gigabyte went about creating the first affordable solid state storage device, and they called it i-RAM. Would you pay $100 for a 4GB Solid State Drive that is up to 6x faster than a WD Raptor?"
Let me think. (Score:5, Interesting)
Nope. I'd rather wait longer and have more capacity for less money. After all, I use Windows as my primary OS. I'm used to waiting.
Truthfully, though, if the price came down, I'd be interested in this for a Windows install, and then install all my apps and save all my docs to an external IDE.
Re:Let me think. (Score:4, Insightful)
Re:Let me think. (Score:3, Insightful)
-Jesse
Re:Let me think. (Score:3, Informative)
Re:Let me think. (Score:2)
Especially since the $100 is just for the card, and considering that you have the data loss issue to worry about, I don't think it's worth the money at this point.
Re:Let me think. (Score:5, Insightful)
I also wonder if the benchmarks were done with drive caches on or off. I would imagine that this drive would be faster with caches off. With what might as well be zero latency on disk accesses, the benefit of a cache is lost; reading ahead probably will only waste bandwidth reading stuff we may not need.
I'm very disappointed that the article didn't mention SATA2 (300MB/s), which is already available in most new motherboards. With double the bandwidth it would have made a big difference. It's very likely the device doesn't support SATA2. However the Anandtech article makes NO MENTION at all of SATA2, not even to the point of saying "We'd like to see this drive with SATA2 support."
no database test.... (Score:3, Interesting)
I thought that, maybe, the FPGA they use cannot reach such a performance yet, and it could come with next revision, when they produce their own package from end to end.
I was more wondering about some tests missing using databases.
What better test than a database, say for a small website, with few modifications to the base and the biggest problem being that hdds are a latency hel
I Would! (Score:2)
Non-Technical Users Don't Understand (Score:5, Interesting)
An affordable 4 GB is fantastic for this kind of thing. Use your imagination:
1. Imagine how fast your system would be installed on a battery-backed up RAM drive.
2. Imagine how fast your system would be with your memory swap file installed on this.
3. Imagine how fast your database server would be with its transaction log installed on this. Hey, throw the tempdb (for SQL Server) on there as well.
4. Many other things.
If you're thinking of this as a standard hard drive to store your DivX movies and MP3 files, you're not thinking right. Solid state drives are miracles that can speed up systems beyond anything you would expect.
Re:Non-Technical Users Don't Understand (Score:5, Insightful)
3. Imagine how fast your database server would be with its transaction log installed in a memory file. Hey, throw the tempdb (for SQL Server) on there as well, or since the memory is now just standard memory and won't need a special driver, you can just switch to Linux and use a real database.
Re:Non-Technical Users Don't Understand (Score:3, Interesting)
I do this all the time (it makes windows tolerably fast). You do get a strange "out of memory" warning when the memory is about half full.
It might be memory overcommit which is a problem under Linux too.
Re:Non-Technical Users Don't Understand (Score:3, Informative)
1. In the article, system boot time went from approx. 15 seconds to approx 10 seconds. Hardly seems worth it.
2. Specifically addressed in the article. 32-bit Windows XP Pro can only handle 4GB of RAM total (including swap file.) Why not just max out your system with 4GB of physical ram and kill the swap-file altogether? You wouldn't need to buy a $150 card and bottleneck all tha
Re:Let me think. (Score:4, Funny)
on that note, they could use the speed as their sales pitch. "Formats Windows partitions 6 times faster!!!" *ducks*
I know it's just a joke, and I'm going maybe a bit off topic here, but have you ever formatted a Windows partition in Linux? Seriously, this is the way to fly...even if you don't use Linux much, it's worth your time to go download Knoppix or something and learn the few commands used to partition and format. You can format a 300GB drive as either FAT32 or NTFS in less than 10 seconds.
1)fdisk /dev/hda (/dev/hda == primary master...hdb==pri/slave, hdc==sec/mast, etc.) /dev/hda1 -or- mkfs.vfat -F 32 /dev/hda1 (choose the partition number you created in step #1.)
2)Use self-explanitory one-letter commands to navigate fdisk and create either an NTFS (type 7) or FAT32 (type b) partition.
3)mkntfs -Q
There are two great parts about this. First is the speed....It takes several hours to do this in Windows, but this takes seconds and works great with Windows afterward. But just as nice is the ability to create really big FAT32 drives. The format allows for huge (16TB or something?) volumes, but for some stupid reason the format utility provided in Windows restricts you to 32GB.
That brings up an incredibly frustrating story, about the last time I tried to format a drive in Windows. It was a USB drive, so I wanted to use FAT for portability. I tried to format it, and in about 5 seconds the program told me the size of the drive and had me hit enter to confirm that I wanted it all as one big FAT32 volume. Then it verified the drive integrity for 7 and a half hours at the end of which it said "Volume is too large for FAT32."
YOU MOTHERFUCKERS! YOU KNEW HOW BIG IT WAS WHEN YOU FUCKING STARTED!!!!
Anyway, that's how I came to realize how much better it is to use Linux to format all your Windows drives. I won't be going back until MS forces a new filesystem on us.
Would I pay... (Score:2)
I'd use Raid (Score:2, Informative)
Re:I'd use Raid (Score:5, Informative)
Re:I'd use Raid (Score:2, Informative)
Re:I'd use Raid (Score:4, Insightful)
Latency comes from three sources:
1) Head latency.
2) Rotational latency.
These are the two sources you have considered. Striping indeed does absolutely nothing to help there.
You forgot the third source of latency:
3) The-disk-is-busy-serving-another-request latency.
Your comment would be true for a primitive OS with a single-threaded I/O method, and/or a RAID system with no command queue.
Given that modern RAID systems are NOT primitive, I/O performance is no longer measured with rotational + head latency vs. throughput, because those measurements no longer make sense.
There are two kinds of performance measurements for modern disk subsystems:
1) MB/sec. (bandwidth) This is what most people think of when they think of throughput.
2) I/O / sec. This measurement is simply the reciprocal of the head+rotational latency in the case of a SINGLE DRIVE. However, in a multi-drive setup, max I/O / sec. increases proportionally with the number of drives, up to a point (eventually you hit the limits for the RAID controller, bandwidth, whatever).
If we measure latency a the time it takes a single drive to physically get the data given a single request, sure, mutiple drives don't help. If we measure latency as the amount of time between when the application asks for the data, and when the disk delivers it, RAID helps quite a bit, beacuse the different I/Os are distributed to multiple disk heads, each of which can contribute it's own I/O handling capacity.
SirWired
More than $100... (Score:5, Informative)
Re:More than $100... (Score:2)
Re:More than $100... (Score:2, Insightful)
That means this card uses your old chump-RAM, or very very cheap to buy RAM. It's a good deal, just in that it gives me something to do with all the PC2100 I've got laying around.
Re:More than $100... (Score:2)
Then I read this posting, followed by reading TFA. No. Not buying that today !
Am I getting old? (Score:5, Insightful)
Re:Am I getting old? (Score:2)
New Tech (Score:3, Insightful)
15,000 for a 500gb solid state drive isn't affordable
100 for a 4gb solid state drive is affordable, but not worth the price.
What they need to do is make the tech better, yet affordable. What makes it so expensive to competetivly price large solid state storage devices?
On a sidenote, is anyone going to buy this drive that is 4gb and costs 100 bucks? I don't think it's much use to anyone.
Incredibly useful (Score:4, Interesting)
In the era of cheap, throwaway crap, I'm pretty much by myself when I say "I want QUALITY". So yes, I'm planning on buying several of these later today to put them in my main machines in my business. they'll be running our mission-critical cash registers.
Re:New Tech (Score:3, Informative)
For you maybe, but people do this every day http://www.nextag.com/serv/main/buyer/outpdir.jsp ? search=compact+flash&nxtg=67b8d_D13E150C29EFE508 [nextag.com]
What makes it so expensive to competetivly price large solid state storage devices?
No moving parts. No "spin up" time. No power used when idle. Ability to transfer the storage like a CD/DVD.
On a sidenote, is anyone going to buy this drive that is 4gb and costs 100 bucks? I don't t
Umm more then that... (Score:5, Insightful)
Nope (Score:2, Interesting)
RamDrive, FlashDrive, etc. are all appropriate names, but iRam? Could the product name be any less descriptive?
Re:Nope (Score:2)
It's named after it's creator, Iram Wolfestrom.
Could be, anyway. Best reason I could come up with for a stupid name like that.
Eh (Score:5, Informative)
I'll take it! (Score:2, Interesting)
A small capacity flash drive is just what I need in this applicat
Surely! (Score:4, Interesting)
Audio (Score:2)
This is what I was thinking. Most of my audio and projects would fit on a 4G drive (4G would be tight for video). A drive like this would get used while I was working on the project, and then finished projects would get moved to to my online and offline storage.
Yes, for the OS (Score:3, Interesting)
I'd love to have a super quick HD for the OS because it's accessed more frequently than, say, some old data file you haven't touched in over a year.
Music, movies, documents, pictures - I don't think these need to be on solid state drives, because they're accessed just fine (except moving GB's of files still needs to be faster), but things like the OS and applications would seem to run a lot quicker if they would all be in ram-like storage.
Re:Yes, for the OS (Score:2)
Swap Drive (Score:3, Insightful)
Swap? Just put the RAM in the motherboard (Score:2)
Re:Swap Drive (Score:2)
The only inhibitor is RAM slots on the main board, but a lot of current boards can take 8GB of RAM.
Deja-Vu all over again (Score:3, Insightful)
Looks like they dug up an old PCB screen, added a battery backup and changed the connectors to work with modern RAM
Among other things, I handle the physical hardware design spec for my companies product (the product is software which is loaded onto a hardware to make an "appliance"). I've received emails from quite a few vendors recently offering this sort of solid-state NV storage. I think this market sector is really starting to creep forward, and these might be the kinds of "disks" we see as the norm in the not-so-distant future.
I think first off, though, these will be like caching drives - holding only the data that is most seek-time sensitive to a particular application.
RTFA (Score:2)
No it is not. If you cared to RTFA, you'd see that this card is NOT using any of the PCI logic and only gets its power from it. It has a SATA connector and should be connected to a SATA controller and emulated the functionality of a normal SATA hard disk. Why? Because you don't need any new device-driver for your OS (whatever it is) to you this card if you
Don't forget the RAM in i-RAM (Score:2)
Would you pay $100 for a 4GB Solid State Drive that is up to 6x faster than a WD Raptor?
Maybe. But I can't get it. According to the article, the i-RAM costs $150 and that only gets you the card -- you still have to populate the DIMM slots. So the price of that fast solid state drive is about $400 unless you happen to have lots of spare RAM lying around unused.
If you happen to have some DDR 2200 DIMMs that can't be used in your current machine(s), then perhaps you can spend $150 to get some use out
Darn straight I would/will! (Score:5, Interesting)
Mmmm, hyper-fast builds that don't depend on the latency of moving parts...
Re:Darn straight I would/will! (Score:2, Informative)
Moving parts suck, but t
And other uses... (Score:3, Interesting)
Yeah, I think I might have to snag a couple of these.
Re:Darn straight I would/will! (Score:5, Insightful)
Mmmm, hyper-fast builds that don't depend on the latency of moving parts...
This doesn't make sense. I suspect that you were misled by the incorrect summary. You don't get 4GB of solid state storage for $100.-. That would actually be a really good deal. All you get is a card which has SATA on one side and RAM slots on the other side.
So instead of buying this card you could take the $100 towards a motherboard that supports > 4GB of RAM. Then the RAM will be sitting on a bus that can actually sustain datarates WAY higher than SATA.
Since you don't need persistent storage for cache it makes little sense to stick it on a bus that can theoretically do, what, 150 MB/s? When you can stick it on a bus which can do several GB/s.
I don't really see the point of this card, since it will only keep the data for 16 hours if not powered. In other words, if you leave for a weekend and for some reason the power to your PC is turned off, your tough out of luck.
Other cards that I have seen in the past that make more sense, actually have a normal drive for persistent storage. If power fails, there's enough backup power to write everything to disk. That's basically like having cache on the disk equal to the size of the disk.
Bottom line; this is a rehash of what's been done many times before, didn't really take off then, and considering a relatively stupid implementation, probably won't take off now.
Re:Darn straight I would/will! (Score:2)
I don't have a motherboard that can hold 4GB of RAM, so I'd tend to disagree.
Swap Drive (Score:2, Funny)
Re:Swap Drive (Score:3, Informative)
Point number two: it is perfectly possible to disable swapping in Linux and probably in most other systems. However, in speed tests on systems with lots of RAM enabling swapping has actually been shown to lead t
Yes (Score:2)
But what the summary should ask: Do you want to spend 500$ for the SSD-Card plus 4*1GB Dimms... and then the answer would be a clear no (thats more than a decent budget computer in total, and i would rather put the Dimms into my motherboard than into the card (if i feel the need, i can create a ramdisk at any point later, anyway, and with 6GByte/s and 100ns , not 140MByte/s and 100us like this one)
triple setup (RAM + SSHD + HD) (Score:2, Interesting)
Patent Pending? (Score:2)
Copy Kickstart on to this, then use it to boot and you could boot an Amiga 3000 in 3-5 seconds. Wonderful device.
[Note: DKB = Dean K. Brown's company that did some real nice, and popular, hardware for the Amiga.]
-Charles
What about virtual memory (Score:2)
wouldn't this significantly (well, x6) enhance the performance of applications that require a lot of virtual memory?
That seems like it might be worth it for, say, large databases or graphics rendering.
Re:What about virtual memory (Score:2)
What happened to Ramdrive? (Score:3, Interesting)
Would I pay $100 for this? (Score:3, Interesting)
It just seems to me that the card itself is very bulky, and a similarly-priced RAMdisk with greater storage and a better form-factor is just waiting to be implemented. Oh, and it's not 4GB RAMdisk for $100, b/c you have to purchase the DDR as well
Re:Would I pay $100 for this? (Score:3, Informative)
YES! Imagine a 4gb solid state swap drive/ram disk (Score:2)
Probably. However comma... (Score:2)
Re:Probably. However comma... (Score:2)
unfortunately, this is a somewhat misplaced enthusiam. multitrack digital audio recording will indeed burn large quantities of disk, but not at the rate cited above (even adjusting for the possibility that "track" means "stereo"). 18 tracks at 2 bytes per sample at 44100 samples per second is about 1MB/sec, not 100MB/sec.
more importantly, as others have pointed out, you can massively increase disk data rates by using RAID, which provides much better bytes/sec/<monetary-unit> and is likely to for
The real question (Score:2)
*IF* if were 4gb of very reliable and very fast storage, then yes, it would be worth $100.
Can you say ram disk? (Score:2)
productivity is worth $100 (Score:2)
My partner Stuart, for instance, is addicted to capucino (has a $10,000 machine of his own at home where he does
Surely? (Score:2)
Drive speed not the limiter (Score:2, Interesting)
Other bottlenecks are sure to limit this (CPU, etc).
Until I see a way to make this actually very useful (other than having one modern game on it to get better fps), there's no way I would buy at that price.
Volatility (Score:3, Interesting)
A better idea would have been to have a bank of Flash EEPROM built onto the card as a backup device, with loss of power triggering the automatic dumping of RAM contents to Flash, and resumption of power repopulating RAM from Flash on demand/during idle time. Given that it is now possible to fit 4Gb in a Compact Flash card, there is little excuse for not having such a backup subsystem.
In a heartbeat... (Score:2)
I would use it to replace the 4G hard disk in my aging but faithful Libretto.
Asymmetric disk pairs (Score:2)
1. it works with old DDR memory. You can put newer memory, but it's only gonna be clocked at 100MHz DDR (DDR-200), mostly because the SATA cable is the limiter. IOW, if you're doing an upgrade you can put your old DDR to good use.
2. Nobody says one should make it the "only" drive. It can only get you 8GB anyway. What you can do - asymmetric pairing with a regular hdd. For instance, you could have the journal of a data-
Compact flash cards a better solution... (Score:3, Informative)
I'd pay $100 for 4GB of flash in a PCI or hard drive form factor, for a solid-state BSD or Linux webserver.
I don't think I'd pay $100 for a 0GB hard drive emulator that takes up both a PCI slot AND an SATA cable, and I still have to populate with RAM, and that will lose all its data if you leave it off too long.
Given that you can get a 2GB Compact Flash drive for $100 or 4GB for around $200 and you can hook those up to PATA with a $40 adapter, and populating this thing to 4GB will set me back more than that... I don't see the point.
Re:Compact flash cards a better solution... (Score:2)
Also, flash RAM tends to have limited write cycles.
Nice way to put in a fast *scratch* disk (Score:2)
I'm afraid... (Score:2, Insightful)
Camcorder! (Score:2)
Reliability (Score:2)
No, but I'd pay $100 for a 4 gig drive that is up to 6 times more reliable than a WD Raptor (or any modern hard drive with moving parts).
And we need this for... what? (Score:2, Informative)
First off, this thing costs WAY too much in both terms of the card and terms of the memory to populate it. This board should cost about $50 not $150. I'm saying mainly $50 mostly for the fact that it comes with the lithium battery and charging feature.
Secondly, it is way too small. If it were 8GB I could use it for something like backing up dvds that play hell with hard dr
Solid State is not the only one... (Score:2)
If properly supported (Score:2)
One possible use would be to make it faster to suspend and restore, that would be nice.
Summary (Score:2)
At first it sounds so simple but what a brilliant idea. For years my university saved a fortune by running everything off a network boot system, using a large ramdisk as a root drive.
This sounds like the perfect hardware solution for them, that doesn't need special drivers or software configurations or even specialist hardware, just ordinary RAM chips, a cheap a
Heck yeah! Maybe (Score:2)
1. I don't get why using SATA instead of PCI for data xfer is making it infinitely more useful. Dumb! Put another FPGA on there and watch scientific users grow.
2. Or put base libraries and CPAN on there, with Perl on XILINX then we're cooking! How about a benchmark with compiling a big app?
3. Obviously it would be a big win for when the network is faster than your st
ramdisk comments (Score:5, Informative)
I submitted this as a story back on June 4. Since it was rejected (too verbose?), I posted it to my /. journal [slashdot.org]. My main question to other folks relates to how this
would compare to using a regular ramdisk. The main deficiency with a
ramdisk is that you'd have to reload the contents every time you reboot.
Here's my article, with all its links:
Giga-byte Technology recently came out with a DRAM-based PC card that operates as a SATA hard drive. The product, iRAM, uses power from the motherboard to keep memory active when the system is shut down. During power outages, the product uses a on-board battery to retain memory for up to 90 minutes. The iRAM card is being talked about in the news (InfoWorld [infoworld.com], itWorldCanada [itworldcanada.com], engadget [engadget.com], PCWorld [pcworld.com], multiplay forum [multiplay.co.uk]) as a means of booting Windows faster. That is, you install Windows onto the iRAM drive to take advantage of the RAM's faster read-access time. Just hope that you don't lose power for more than 90 minutes.
Is boot time really that important, since many computers are on all the time? A ramdisk might have better uses, perhaps for caching frequently-accessed files such as databases and webservers. Or, if you insist on having faster bootup, instead of putting Windows on the iRAM disk, why not just store the hibernation file there?
I implemented a RAM-based database for an internet tool in 1998 to alleviate the read/write load on my local hard drive. It turned out to be a simple solution for the problem. At the time, it was just a matter of using a DOS-based ramdisk driver (ramdisk.sys). On application startup, it copied the database files to the ramdisk. During operation, everything was read/written to the ramdisk, and periodic backups were made to the physical disk. There are some inherent risks, such as loss of data during a crash since data isn't immediately written to a physical hard drive, so it may not be a great solution for a mission-critical production database. The iRAM product would make this type of database even more stable, in that the risk of loss of data is much less.
That was a while ago, so I thought I'd look into setting up a ramdisk in XP for some amusement. Follows are the results of that search. It seems that the options are relatively sparse beyond the DOS-based driver. A few freeware and commercial packages are available, though. One key factor beyond price is the size limit of ramdisk.
Microsoft's ramdisk [microsoft.com] offerings since Win2k are limited. Included with the XP OS is a ramdisk sample driver that "provides an example of a minimal driver. Neither the driver nor the sample programs are intended for use in a production environment. Rather, they are intended for educational purposes and as a skeletal version of a driver." Installation isn't simple enough for most users to benefit.
Alternatives include a shareware ramdisk [majorgeeks.com], AR ramdisk (archive link: http://web.archive.org/web/20041011170408/http:/ww w.arsoft-online.de/products/product.php?id=1 [archive.org]) (freeware, 2GB limit, discontinued [arsoft-online.de], available for download here [nyud.net]), a freeware (64MB limit) and shareware (2GB limit) version here [ramdisk.tk],
Disk evolution (Score:5, Insightful)
On the contrary, I've always been amazed at the rate of price/performance evolution in HD technology.
Consider that in 1982 a 10 MB disk cost something on the order of $3500 while today you can reasonably expect to get an 80 GB disk for $50, that's a drive that has 8000x the storage for 1/70 the price or a price/MB improvement of roughly 420,000x. And, that doesn't take into account the dramatic improvement in reliability and speed (both access and interface) that the newer drives exhibit. Do you think CPUs have kept up with this?
I've heard people predict the end of moving-parts mass storage for years now, but it still seems pretty distant considering the great values we're getting with HD technology.
Re:Disk evolution (Score:3, Informative)
I only wish it were so for latency. Around 1980, seek times were in the neighborhood of 20ms. CPUs for personal computers were running at about 1 MHz (the Apple ][, for example), or a cycle time of 1 ms. So the computer would wait 20 cycles for a seek.
Today seek times are around 5ms and CPU speeds are 3+ GHz, or a cycle time of about 1/3 nanoseconds. So now CPUs have to wait 15,000 cycles for a seek. Relatively speaking, disk is a lo
Re:Disk evolution (Score:3, Insightful)
If I could make a not-so-appropriate industrial comparison to the article summary:
Pretty much every time a faster F1 engine is released, there are always a few that are marveled by the rate at which carts get faster but loathe the sluggish rate that diesel engines evolves.
HDD and CPUs are different beasts that do different tasks, and fight different issues. It is not surprising that one can pick up spe
Re:Disk evolution (Score:3, Funny)
Or 560,000x if calculated on a PowerPC with AccurateIntegerMath (tm) technology.
Dubious design - power up when removed (Score:4, Interesting)
boot disk (Score:3, Informative)
Yeah, I would only have my OS and applications on there with everything else on a second hard drive.
Could be great for some data servers (Score:3, Insightful)
Re:No Way! (Score:3, Interesting)
That being said, I do like the idea, and when they have something that's 300GB+ and solid state, I'd be happy to pay a few hundred dollars for it. It would be quite useful for a media system.
Re:No Way! (Score:2)
Re:No Way! (Score:5, Interesting)
Re:No Way! (Score:3, Insightful)
Re:No Way! (Score:3, Interesting)
Now most HDD will do 20MB/s so either this is going to be to small or a normal HDD is going to work fine for you. Anyway look into getting a 4+ disk RAID 5 array. I got one for 800$ that can store 900Gigs and can do something like 50MB/s transfers.
PS: What this disk is going to be great for is non-sequential storage. If you work with 30+ tracks you either need to have a lot of buffer / ram space (So you can store up lots of info then pu
Re: (Score:3, Interesting)
Re:No Way! (Score:5, Informative)
Actually I don't know where they even got $100 from because the article says:
"Gigabyte has told us that the initial production run of the i-RAM will only be a quantity of 1000 cards, available in the month of August, at a street price of around $150. "
OH, and did anyone notice the price does not include RAM? So you're paying $150 for a card that can accept up to 4GB not "$100 for a 4GB Solid State Drive ".
That's got to be the most misleading quote ever on a /. article description since u'll spend closer to $500+ for the card and four 1GB DIMMS
Re:No Way! (Score:3, Interesting)
OK WTF??
Again, from the freaking article:
"Armed with a 64-bit memory controller and DDR200 memory, the i-RAM should be capable of transferring data at up to 1.6GB/s to the Xilinx chip; however, the actual transfer rate to your system is bottlenecked by the SATA bus. The i-RAM currently implements the SATA150 spec, giving it a maximum transfer rate of 150MB/s."
Someone please explain what's going on here?? Did the person that wrote the description EVEN RE
Re:No Way! (Score:3, Informative)
Seek times and sustained transfer rates. The memory-based-disk has essentially 0ms seek times, wheras the Raptor averages 8.6ms. Also, the Raptor can only put out a sustained 63MBps reading start to finish from an contiguous, unfragmented file. If you are doing random seeks (database or file fragmentation) -- and most hard drive access is random -- the memory unit will kick the rotating hard drive in the teeth.
Re:Not Compatible with Linux (Score:2)
Re:Not Compatible with Linux (Score:3, Funny)
It's called "lazy writes", i.e. the OS waits until all the disk buffers are full, or a time limit expires before it writes a buffer to disk. It's a pretty standard operating system optimization - Windows uses it too. "The whole sync() thing" flushes all the buffers and updates the superblock, telling the OS that the file system is "clean". Windows does this also, this is why you see CHKDSK (the Windows version of fsck) running after a rare Windows system crash.
Re:Gentoo?? (Score:2)
I use Gentoo; how does this affect me?
Uh, why wouldn't it? To the system it's just a SATA drive. I've got a gentoo system that's taking up 1.8GB and doing useful stuff. It's not very performance intensive right now, as I've only got 5 phones attached to it (it's an asterisk PBX), but should I go and attach another 100 or so, I can see how this would be pretty cool. I could store the voicemail off on some big disk, and the rest of everything would be perfectly happy on this drive.
Of course, I do wonder
Non-PCI solution. (Score:2)
http://www.elx.com.au/item/CFIDE1 [elx.com.au]
http://www.newegg.com/product/Product.asp?Item=N82 E16820160137&CMP=OTC-Froogle&ATT=Transcend+4GB+Com pact+Flash+(CF)+Card+Model+TS4GCF45 [newegg.com]
4GB, populated, probably fits in a 2.5" drive bay let alone 3.5". There's actually versions that have 2.5" connectors and mounting brackets so you can use them directly in a laptop, but