Follow Slashdot stories on Twitter

 



Forgot your password?
typodupeerror
×
Portables (Apple) Businesses Apple Hardware

Flash Drives in Future Apple Laptops? 353

danscript writes "Samsung hopes that falling prices for flash-memory chips will mean solid-state memory can eventually replace hard-disk drives in Apple PowerBooks and iBooks as well as other devices, Macworld UK is reporting. The benefits? - silent; less power; reliable and faster."
This discussion has been archived. No new comments can be posted.

Flash Drives in Future Apple Laptops?

Comments Filter:
  • Flash (Score:5, Funny)

    by Zlib pt ( 820294 ) on Saturday June 25, 2005 @09:50AM (#12908664)
    "I'm sorry sir. You can only install OSX 10 times. Then you ran out of read/write operations"
    • Re:Flash (Score:5, Interesting)

      by FidelCatsro ( 861135 ) <.fidelcatsro. .at. .gmail.com.> on Saturday June 25, 2005 @09:54AM (#12908680) Journal
      That's not really a worry any more , modern flash memory has a substantially greater number of read/ write cycles.
      IIRC the numbers are good enough that they would probably live as long if not longer than your average laptop HDDs .
      • Re:Flash (Score:5, Funny)

        by advocate_one ( 662832 ) on Saturday June 25, 2005 @10:09AM (#12908744)
        IIRC the numbers are good enough that they would probably live as long if not longer than your average laptop HDDs.

        the only people who might possibly run into the write limit would be Gentoo users...

        • by Anonymous Coward on Saturday June 25, 2005 @11:31AM (#12909113)
          It used to be higher, (up to 100,000), but new MLC flash has lower numbers. Note that the 1,000,000 numbers you read is low-density NOR flash, not the NAND flash a hard drive would be made of.

          You must wear level, so the real life of the drive is basically 10,000*num sectors writes. A sector is 128KB or so, depending on the flash type.

          This seems like a lot until you realize that often you write sectors over and over. Also, due to the large sector/page size of flash, you end up doing multiple writes when you think you are doing a single one. For example, if you write to a file in 4 chunks, 32K at a time, it uses up 4 of your writes. It might be possible to remove this with intelligent caching, but you're gonna need a lot of RAM for the caching.

          Honestly, this is just an idea that isn't ready yet. Flash is too slow to write right now. The life is decent. Reads work well.
          • Flash is too slow? The article I read said it was much faster, but maybe they were only dealing with reads.

            I thought flash was slow, too, but then I reconsidered. Since I only ever use flash over a USB connection, I assumed it was the flash that was slow, when it might have been the connection.

            Anyone used flash on anything but USB? Not sure what native speed would be...
          • by Shanep ( 68243 ) on Saturday June 25, 2005 @01:33PM (#12909620) Homepage
            due to the large sector/page size of flash, you end up doing multiple writes when you think you are doing a single one. For example, if you write to a file in 4 chunks, 32K at a time, it uses up 4 of your writes. It might be possible to remove this with intelligent caching, but you're gonna need a lot of RAM for the caching.

            That is interesting. I know modern CF cards employ wear levelling within the cards themselves, but I was previously leaning on BSD's soft-updates and noatime to prolong to life of the CF cards in a few servers and firewalls. Maybe some slices should also have FFS file systems with a 128kb block size to limit any block to no more than one file. I'm off to see if FFS in OpenBSD can use a block size of 128kb. Assuming this would actually cause 128kb block sized writes?

            Honestly, this is just an idea that isn't ready yet. Flash is too slow to write right now. The life is decent. Reads work well.

            Yes I must say that I find the high speed flash cards I use, which are directly plugged into my motherboards IDE controllers via passive IDE-CF converters (no electronics, just different connectors at either ends of the converters), are slow to write.

            I have Lexar Pro series 80X CF's and San Disk Ultra II CF's. The Lexar's are WAY faster than the San Disk's BTW. But still they're pretty slow. I use them in Sun Ultra 10's and 5's, which have really slow IDE interfaces, but the CF's are slower than these and are also slow in various PC's I've tried them in.


            # dd bs=64k count=1024 if=/dev/zero of=/tmp/64MB.bin
            1024+0 records in
            1024+0 records out
            67108864 bytes transferred in 54.374 secs (1,234,192 bytes/sec)

            # dd bs=128k count=512 if=/dev/zero of=/tmp/64MB.bin
            512+0 records in
            512+0 records out
            67108864 bytes transferred in 54.322 secs (1,235,385 bytes/sec)

            # dd bs=64k count=1024 if=/dev/zero of=/var/log/pf/64MB.bin
            1024+0 records in
            1024+0 records out
            67108864 bytes transferred in 4.043 secs (16,594,884 bytes/sec)

            # dd bs=128k count=512 if=/dev/zero of=/var/log/pf/64MB.bin
            512+0 records in
            512+0 records out
            67108864 bytes transferred in 3.980 secs (16,858,338 bytes/sec)



            Here I have written 64Mb to a San Disk Ultra II, first with 64kb chunks and then with 128kb. I did this because I usually use 64kb chunks and thought that 128kb would be faster for CF. Turned out to not be so, unless dd is writing 128kb chunks but the writes are being committed to the file system at no greater than the filesystems block size at a time.

            The two last dd's are the same thing but being written to a 120GB Seagate 7200 RPM PATA drive. Both the CF and HDD are directly connected to the on board IDE controllers of a Sun Ultra 10, each seperately as masters without slaves.

            The IDE controllers on Sun Ultra 5/10 motherboards are garbage BTW. They can get the best out of the CF cards I have, but certainly not the Seagate HDD, which does about 2-3 times better transfer rates in some of my PC's.

            I feel compelled now to do these tests again but to raw devices instead of to files within a filesystem. If the results were that 128kb block size filesystem is likely to be many times faster than a filesystem with much smaller blocks, I might be inclined to build filesystems with 128kb blocks on my CF based machines. But I think I would be limited to 1024 files on a 128Mb slice. Which might not be workable.
            • by RzUpAnmsCwrds ( 262647 ) on Saturday June 25, 2005 @07:54PM (#12911298)
              Your results are not indicative of flash performance - CF is simply not that fast. I frequently get 10MB/sec with my USB 2.0 SD card reader and generic PQI 1GB SD card.

              Flash can be *very* fast. Remember, you can interleave many flash chips using RAID-like techniques without the cost of having multiple disk assemblies.
            • I'd be concerned that setting up 128K blocks would be counter-prodcutive, since you'd have a hard time getting your your blocks to align perfectly with the drive's hardware blocks. After all, you lose a few K here for the partition table, another few bytes there for filesystem info...
      • Re:Flash (Score:3, Informative)

        by TCM ( 130219 )
        That's true if each block of the disk was written equally often. AFAIK, unless you use special file systems, that's not the case with common file systems today. Let's say you write one file once and only read it from then on. The access time would get updated each time, wearing out a single block faster than the rest.
        • I would imagine samsung have considered that , well i hope they had.
          But i think the numbers are for complete write /erase (which i should of written above as opposed to write /read) of every block , so each block will last up to that amount of read write cycles so when one is spent i imagine it would take a few years for that to occur and hopefully the hardware/software can account for it and mark it as dead and move the data for future writes. so the drive would reduce in size over time giving you ample
        • Re:Flash (Score:3, Informative)

          I'm guessing these drives would have a sort of "wear leveling" just like they have in most compact flash cards.

          The wear leveling works by keeping a table of what physical flash is mapped to what address. The trouble comes when power is yanked whilst the table is in the middle of an update.

          Brett
        • Re:Flash (Score:5, Informative)

          by alienw ( 585907 ) <alienw.slashdotNO@SPAMgmail.com> on Saturday June 25, 2005 @11:58AM (#12909212)
          Not true. Modern Flash cards have wear leveling built into the hardware. The address the computer sees is actually the logical address that the controller translates to a hardware-specific address. The controller automatically adjusts addresses to spread out the writes and to detect and remap bad blocks (this should occur without loss of data, since blocks only go bad when you write to them).
    • Heh.

      Seriously, that was the first thing that came to mind. TFA claims that flash memory is "more robust" than hard drives -- that may be true in the sense that a flash chip can take more physical shock than a hard drive and still keep its data, but it definitely wasn't true in terms of capacity for repeated use, last time I checked. Has this changed recently? I mean, I'd absolutely love it if HD's could be replaced by flash memory with similar durability, but I'll take some convincing before I believe i
    • I regularly use Knoppix or another live CD system with a flash card. I might write a file to the flash 10 times on a busy day. I could probably get 10 years out of a modern flash card at that pace. Now granted, my primary system at home and work have several large hard drives, but I get a lot done on systems that don't have a hard drive spun up at all.

      Most users just don't need to write local files that often. They email, chat, and browse the web. Sometimes they install a free game or a whole lot of m

  • by Anonymous Coward
    Now that the idea has been leaked Apple won't do it even if they were planning to.
    • Now that the idea has been leaked Apple won't do it even if they were planning to.
      Yeah. Because that's exactly how it worked with the leak of the PowerMac G5, Tiger, the switch to Intel chips.

      Retard.
      • Now that the idea has been leaked Apple won't do it even if they were planning to.

        Yeah. Because that's exactly how it worked with the leak of the PowerMac G5, Tiger, the switch to Intel chips.

        No No you misuderstood. Someone leaked that they were NOT going to swich to intel so they had to

        • by rednip ( 186217 ) *
          No No you misuderstood. Someone leaked that they were NOT going to swich to intel so they had to
          Well, I've heard from a 'very' reliable source in Apple, that they will not be giving a free notebook to anyone with the Slashdot nick of "rednip".
  • by Metaphorically ( 841874 ) * on Saturday June 25, 2005 @09:52AM (#12908674) Homepage
    I remember talking to a guy at Radio Shack about flash-based drives and how this was going to be the new option back in 1992. I think they were calling it a "hard card." Looking back, it was probably the same thing as PCMCIA Flash drive. That's the precursor to Compact Flash cards for you young'uns.

    It wasn't new then and it isn't new now. Is it time? Sure. It's long overdue and I'd love to see solid state drives suddenly become financially feasable.

    I doubt it's going to happen though because it seems like the cost of the magnetic materials used in disc platters will always be low and a solid state memory cell (flash, ram, eeprom, whatever) takes a couple transistors. The price of both drops, but hard drive price per GB (or MB, TB, whatever) always drops faster because of the lower transistor count.

    • SCSI, SATA and ATA controllers found on each and every hard drive made take quite a bit more than a couple transistors.
    • Sometimes good tech just takes years to catch on and neigh on useless legacy crap takes forever to die off. Just look at the fact that FDDs are still clinging on tooth and nail in the PC world.
      LPT ports are still used for printers , serial ports still come as standard on most motherboards .

      I think the principle advantage is in the power consumption for laptops, Batteries are really expensive , if you use your Laptop on the road a lot then it has two principle advantages , lower power consumption and its far far more robust to damage due to things like dropping .
      In this field of the ultra compact laptops i would say that the Power consumption and durability will outweigh the per GB cost .
      If the write/erase cycles are now within the realms that samsung is considering offering these drives for commercial sale then i would defiantly want one in my laptop , i could easily cope with 15GB on a portable device for work.
      • Serial is by far not even close to dead.

        I deal with so much equipment that has a life cycle in the 30+ years that it's just amazing by comparison. So in another 10 years when more long lived technology has died off we might see the end of serial, but there is simply too much non-pc equipment in the world to do away with it.

        Nearly every electronic requires a serial port or some form there of.

        It's slow, clunky and definatelynot the newest thing, but it's a good standard and far too many things in this worl
        • I agree with you there , i probably should of clarified more as i really meant for consumer products.
          Most people have no use for the ports these days i would imagine, in several fields they are useful because of legacy equipment( i have a couple of ruggedised network test handhelds which require serial)
          So i agree it is not dead , but it certainly is becoming less relevant (iirc you can pick up fairly good Serial to USB converters fairly cheaply as well) but its defiantly a niche
    • by pedantic bore ( 740196 ) on Saturday June 25, 2005 @10:05AM (#12908731)
      No, the "hard card" was a self-contained hard drive that could be installed, like a peripheral card, directly into a mobo slot. Nice idea for old cases that didn't have expansion drive bays. Saw lots in stores, but never saw many in actual computers...

      On the other hand, you might be thinking of bubble memory... which was going to be the next big thing in the early 80's. Still waiting on that one.

    • The price of both drops, but hard drive price per GB (or MB, TB, whatever) always drops faster

      This isn't to say that solid state drives won't become popular. If I can get a 80GB solid state drive for the price of a standard 400GB HD, I'd go for it. I think this is exactly what'll happen. As capacity grows, it becomes less and less important for people to have the largest HD on the market. Sure, many people have the need for large drives (video editing, pr0n, etc.), but most can do just fine with tenth th

    • You missed the boat.

      Samsung to release 16GB IDE flash drive in august [betanews.com].

      I want them in my servers.
    • I remember talking to a guy at Radio Shack about flash-based drives and how this was going to be the new option back in 1992. I think they were calling it a "hard card." Looking back, it was probably the same thing as PCMCIA Flash drive. That's the precursor to Compact Flash cards for you young'uns.

      The "hard cards" available at Radio Shack were ISA cards that had standard magnetic media on them. They were basically an integrated RLL (or MFM, I don't recall) and hard drive all in one clean upgrade kit.

  • faster writes? (Score:5, Informative)

    by nblender ( 741424 ) on Saturday June 25, 2005 @09:54AM (#12908683)
    They must be talking about some other kind of flash than anything I've used... I routinely rewrite 128MB-512MB CF cards for an embedded product and it's nowhere near the speed of a laptop disk. Maybe they're thinking some sort of RAM cache.
    • Re:faster writes? (Score:3, Informative)

      by syukton ( 256348 )
      What interface are you using? USB? ATA? other? Maybe you're encountering a bottleneck that has little to do with the card technology itself?
    • Re:faster writes? (Score:5, Informative)

      by Metaphorically ( 841874 ) * on Saturday June 25, 2005 @10:27AM (#12908848) Homepage
      Write speed for flash is slower than read speed for flash, but making a direct comparison like that can be tricky because of differences in the technology.

      Flash memory has to be erased before it can be written and has an inherent minimum erase block size. This has made designers put some write buffering in the card (at least in the older PC Card devices, which afaik are just bigger versions of CF cards). That write buffering is one layer of caching, then there can be additional layers of read and write caching in the driver.

      Generally those caches improve normal use of the device, but in cases like yours you blow right through all those caches since you're rewriting the whole card.

      btw, that caching is why you have to tell Windows to eject the device before you pull it out. Your write might not have actually finished even though you can do other things to the drive in Explorer.
    • really?

      i doubt hard disk will be able to cope with the speed of electronic components. Look at the progress of the speed of the PC components: CPUs have double their speed lots of times, but hard disk speed has not been increased a lot, which is THE major slowdown you can find in today's PCs.

      This is because the hard disk is the one "mechanical" component remaining on today's computers, and some day it'll have to go away. har disks are not that fast, my UDMA 133 disk can do 40 MB/s in sequential reads,
    • I can't believe nobody has seen this yet. One of the constant user annoyances is that your machine won't boot/shut down fast enough. Well with Suspend to Flash Ram, you are able to close your laptop, take out your battery, and leave it in the closet for two months, come back, put the battery back (assuming it's charged), open it up and be **exactly** where you were before you shut down.

      It's been something I've wanted for years. Flash is now cheap enough to use as a secondary storage/boot drive. So why not?
    • Flash released in this way will be the "high-speed" variety. If you're using USB 1.1 or something, you've got a bottleneck anyway - but if you've just got a regular CF card, it's not built for speed anyway.
  • by Anonymous Coward on Saturday June 25, 2005 @09:56AM (#12908693)
    Show me a flash drive that survives a couple of million write cycles, and I might consider using a flash drive instead of a normal hard drive.
    • here you go:

      >5,000,000 Write/Erase cycles, unlimited Read

      http://www.m-systems.com/content/Products/product. asp?pid=34 [m-systems.com]
    • Server for Showgirls (Score:3, Interesting)

      by suso ( 153703 ) *
      Maybe this isn't write cycles, but when I was at ApacheCon 2001, I met the guy who setup the webserver for the Showgirls (movie) website. He had the server right there and it used a 32MB flash drive for storage. That's a lot of read cycles.
  • Data recovery? (Score:2, Interesting)

    I dont know much about flash... Can anybody clarify on how data can be recovered from a corrupt Flash based HDD?
    • I used some freeware prog I found online once to retrieve images from a corrupted CompactFlash card. I'm assuming a new market for retrieval tools would be created for flash based HDs (assuming modifications to existing utils wouldn't work).
    • Flash chips have a interface similar to RAM chips (address / data bits, chip select, write enable, ...) If your filesystem is corrupt, you can still read the data contents byte-wise,
  • extra bonus (Score:4, Funny)

    by justforaday ( 560408 ) on Saturday June 25, 2005 @09:59AM (#12908704)
    The extra bonus: Apple gets to sell you a new one after 1,000 or so boots... : p
    • by rokzy ( 687636 ) on Saturday June 25, 2005 @10:05AM (#12908732)
      who is booting a Mac 1000 times?

      you're obviously a Windows user.
      • ;) actually come to think about it , 1000 boots and a new drive does not seem too bad for a flash drive on a mac , just thinking i normally boot my mac once a day (sometimes i leave it on overnight , but not too often) 1000 boots on a mac for me is around 3 years(most likely 2 and a half to 3 really , i like to patch at the end of a day anyway and then shut down to save extra boots or anything that requires a reboot) , which is when i would normally wish to replace a hard drive anyway
      • Install OS 9 on it and it won't even last 6 months... : p
  • From TFA:

    The drives are also typically lighter and can read and write data faster than conventional drives.

    AFAIK, flash memory reads data faster than a hard drive, but writing is slow as hell because of the long block erase cycles,

    does samsung have a new technology for flash chips?
    or do they eventually use MRAMs? :-D

  • Flash Buffer (Score:2, Interesting)

    by Lockelator ( 874494 )
    It certainly wouldn't hurt to have a 1 gb flash buffer to lessen wear and tear on the HD.
  • by G4from128k ( 686170 ) on Saturday June 25, 2005 @10:06AM (#12908734)
    We know that the black turtle-necked one hates noisy machines and I agree with him. I configured an old Powerbook 190cs to boot from a CF card in the PCMCIA slot -- wonderfully silent and much faster than booting from the HD. Of course on that old machine, the OS, a couple of applications, and some files fit nicely in only a 4 MB flash memory. In contrast, OSX, modern apps, and files will need 1024 times that space (4 GB) at a minimum and tens of GB if the person has even a modest collection of media files.

    I can only hope that Samsung's technology roadmap (16 GB by 2006, 100 GB by 2008) is correct although I wonder how HD technology will have evolved over those same years.
  • by Idou ( 572394 ) * on Saturday June 25, 2005 @10:07AM (#12908739) Journal
  • The recent Samsung announcements were for 16 gig [pctalk.org] drives for this year. Considering that most laptops are being pushed with 100+ gig HDs, Flash still have some ways to go.
    • by Anita Coney ( 648748 ) on Saturday June 25, 2005 @10:21AM (#12908813) Homepage
      Not every one is concerned about massive drive sizes. There are plenty of people who would choose the battery saving advantages of flash drives in their laptops.

      I'm of the opinion that laptops should be as small and energy efficent as possible. I just don't get the point of using them desktop replacements. If you want something as huge and powerful as desktop, buy a friggin' desktop. If you want something portable, buy something portable.

      I mean, what's the point of a "portable" computer if you have to plug it in all the time?!
      • what's the point of a "portable" computer if you have to plug it in all the time?!

        I agree that there is always a place for small laptops, but a desktop replacement laptop has many advantages:

        • If you need to move office, just pick it up and go. I need to go to the US occasionally for work - when I do, I can just find an empty desk and plug in my complete development environment without sacrificing processor speed.
        • One desktop replacement laptop is much cheaper than one decent desktop and one small lapto
        • I'm not saying that large laptops are necessarily bad. If you want to play Doom3 or edit movies on a long flight, you're going to need a powerful laptop. My point is that three are advantages to both. There are people who want small and efficient and those who want huge and powerful.

          In other words, I think flash drives will succeed in laptops, just not in all of them.
      • You can take it traveling. You can use it on the train, you can use it in your hotel room. Those are the main advantages I see to a portable computer even if you have to plug it in. There's a type of computer that's meant to be used when moving around, running off its own power, it's called a PDA and they are already using flash drives. A laptop should be as close to a desktop in power (disk space, etc) as you can get it.
      • Also footprint size. The case is attached to the screen and fits on the desk instead of having to have it on the floor or somewhere else. Also with a laptop "desktop replacement", you minimize cableage between case, screen, and peripherals; sure you can use wireless everything on a desktop, but who does that (and the receivers still need to be wired to usb or something). The mac mini has in my opinion been able to successfully exploit the gap between the desktops and laptops, sort of like the dome-shaped im
      • I just don't get the point of using them desktop replacements. If you want something as huge and powerful as desktop, buy a friggin' desktop. If you want something portable, buy something portable.

        Or get something that is small, light, portable and close enough to as powerful as a desktop as makes no practical difference.

        Consider a laptop that weighs 5 pounds, has a 1.9GHz Pentium M, 2GB of RAM, 120GB of disk space, a DVD burner, WiFi, a 15" high-resolution screen, and runs for 6+ hours on a fully-ch

      • The point of using a laptop as a desktop, in our case, is very simple.

        You take it to work, work 8 hours straight (plugged in), take it home and you're able to continue to work. Easy. And because it's laptop, you can work during your commute as well.

      • I mean, what's the point of a "portable" computer if you have to plug it in all the time?!

        Given the complete scarcity of electrical outlets, I'd have to agree with you!

    • Considering that most laptops are being pushed with 100+ gig HDs, Flash still have some ways to go.
      Unless you consider that most 100 GB hard drives are about 15% full...
  • Samsung has also teamed with Microsoft to create a hybrid Flash/Platter device that uses less power, is quieter, and more shock resistant. You'll have to wait for Shorthorn, though.

    Samsung teams with Microsoft [samsung.com]
  • by intmainvoid ( 109559 ) on Saturday June 25, 2005 @10:22AM (#12908821)
    The most recent IDC data ranks Samsung as the world's number one producer of flash chips


    So of course "Hwang Chang-Gyu, president and CEO of Samsung's semiconductor business" wants his company's technology to take over from hard drives. That's very different to Apple saying it will happen.

  • by AdamInParadise ( 257888 ) on Saturday June 25, 2005 @10:24AM (#12908837) Homepage
    I've been thinking about this for a long time. What about using a flash drive for the important stuff (OS+user docs) and a hard drive for the unimportant stuff (divxes, CD backups, you name it)? Basically, the hard drive would be powered down most of the time, bringing down noise and heat, therefore driving up the reliability of the whole system. That's certainly possible with every kind of computer out there, but it would be better with specific OS support. For example, the OS could transparently copy your data back and forth between both drives, like the iPod does (with RAM instead of Flash).

    Regards
  • by Wdomburg ( 141264 ) on Saturday June 25, 2005 @10:34AM (#12908869)
    I don't doubt flash may make some headway in the ultraportable market, but the advances in microdrive technology promise escalating capacity with reduced power consumption. Toshiba's already announced an 80GB drive in a 1.8" form factor, drawing around 1.4W and Hitachi has been talking up plans for a 20GB drive in a 1" form factor.
  • In the future, everything will have flash drives. The question is, of course, how far in the future. These will show up on the apple when the flash drives become a commodity item.
  • by Dolphinzilla ( 199489 ) on Saturday June 25, 2005 @10:39AM (#12908887) Journal
    http://www.m-systems.com/content/Products/product. asp?pid=34 [m-systems.com]

    M-Systems has been providing fast FLASH based 2.5" laptop drives in the 1 GB to 128 GB range for a while - while they are god awful expensive, they do work very well and I have used them in several mission critical applications. My hope is that Samsung can get the price point down by an order of magnitude (or two)
  • I seem to recall an ABB Robotics person telling me that their S4PC products (PC controller for industrial robots) were all memory based drives. This'd've been in 1997 or so, Win95 (yeah, yeah), and "only" 256MB drive would have been adequate for the purpose (hey, my 100MB ZIP was a dream come true at the time).
  • Uhmmm... (Score:2, Interesting)

    by Cinquero ( 174242 )
    ... and what makes Apple notebooks (!) so special that flash drives only fit into that brand?
  • Gigabyte is preparing an interesting solution. AnandTech give us a brief overview as seen in the last Computex:
    http://www.anandtech.com/tradeshows/showdoc.aspx?i =2431&p=5 [anandtech.com]

    Basically they just use ordinary DDR and use a pack of batteries to keep the data when the computer is powered down. The batteries have a maximum life of 16 hours. So this is for enthusiasm that leave their computer always on. I wouldn't install an OS on this since in case of long power failre you would loose eveything, but I real
  • Consider that this has a LOT better random access time than a solidate disk.
    Put most of the filesystem except home, tmp and var to this disk, and using a normal HD for them and t. Should reduce reboot times, and application launch times by a sizable margin. This thing could be usefull for server enviroments too if reliable enough. Its main advantage would be reduction of downtime by being able to get up quicker.
    (No V!46R4 jokes plz)
  • The limitations of optical media are ever-present. Heat generation, great potential for mechanical failure.... solutions have been sought for decades for these problems and others. Remember the DIMM-based hard drives? One solution, however an expensive, cumbersome, and unmaintainable one.

    Flash technology gives us a chance to gain most of the advantages in that old unmarketable drive. The reusability used to be an issue, but manufacturing processes, as previously stated under this discussion, are refine
  • All these moving arms and gears and spinning disks. Gah! Might as well have steam powered computers.

    Can't wait for solid state!
  • by Bones3D_mac ( 324952 ) on Saturday June 25, 2005 @01:00PM (#12909479)
    While this certainly sounds interesting, I can't see Apple committing entirely to flash drives until they hit the 80-100GB point.

    However, one thing I can see Apple doing is giving the user 8-10GB of high speed flash memory to use in tandem with a standard hard drive, in which the user can install the OS and their primary applications. The benefit to this, is that it could make the system faster, while allowing it to conserve power at the same time. (The only time the hard drive is accessed is to either write data, or read user-selected data / secondary applications.)
  • by nadador ( 3747 ) on Saturday June 25, 2005 @01:38PM (#12909642)
    They're out there in the embedded market, where your option is paying more for a flash disk or having your spinning mag plates fly apart because of shock/vibe.

    http://www.m-systems.com/Content/Markets/Embedded. asp [m-systems.com]

    As others may have noted, there are different kinds of flash, some that have good write performance, some that have good read performance, and some that have both.

    And if you want to pay, you can get an Ultra320 flash disk:

    http://www.m-systems.com/Content/Products/product. asp?pid=41 [m-systems.com]

The optimum committee has no members. -- Norman Augustine

Working...