Catch up on stories from the past week (and beyond) at the Slashdot story archive

 



Forgot your password?
typodupeerror
×
Technology (Apple) Businesses Apple Technology

iSCSI for Mac OS X? 60

CoffeePlease asks: "Is anyone aware of development going on for iSCSI drivers for Mac OS X? I really need this but it's only out for Windows and Linux so far. I can't use the Linux drivers - they might run, but only as a command-line process, and I need other software to recognize the drives."
This discussion has been archived. No new comments can be posted.

iSCSI for Mac OS X?

Comments Filter:
  • Not to my knowledge (Score:5, Informative)

    by Matthias Wiesmann ( 221411 ) on Tuesday February 18, 2003 @01:43PM (#5326990) Homepage Journal
    • There is no mention of iSCSI on apple's site, and I never heard of apple supporting iSCSI.
    • You cannot run Linux drivers on Mac OS X, drivers is one area where Darwin is very different from Linux. You might have more luck with BSD drivers.
    • Running the drivers as command line makes little sense: drivers don't have much interfaces. You might need the command line to start or install drivers.
    • Assuming an iSCSI driver existed for Mac OS X / Darwin, then the system could see a remote device and handle it. Assuming the file-system on this device would be supported by Darwin then all applications, with or without GUI would 'see' this file-system.
  • by Draoi ( 99421 ) <draiocht&mac,com> on Tuesday February 18, 2003 @01:50PM (#5327060)
    You might have more luck with BSD drivers

    Nope, unfortunately. File system drivers for MacOS X would have to be written as a kext and would be IOKit-based. Totally un-BSD ...

    My first point of call would be the Darwin-Drivers [apple.com] mailing list and archives.

  • by Anonymous Coward on Tuesday February 18, 2003 @01:53PM (#5327087)
    They just just just agreed on the final technical specs and most certainly haven't gotten to officially ratifying those specs as the standard yet.
  • iSCSI on Linux... (Score:4, Informative)

    by molo ( 94384 ) on Tuesday February 18, 2003 @01:54PM (#5327098) Journal
    Looks like there is a project that is implementing it as a kernel-level driver (as it should be, IMO). It exports the device as /dev/sda (etc.). It certainly seems to be in active development.

    http://linux-iscsi.sourceforge.net/
  • oh, whatever (Score:4, Informative)

    by Twirlip of the Mists ( 615030 ) <twirlipofthemists@yahoo.com> on Tuesday February 18, 2003 @02:14PM (#5327267)
    Nobody "really needs" iSCSI. iSCSI isn't real yet. It's still one of those "coming soon" things, like Infiniband. And we saw how well Infiniband worked out.

    iSCSI is just another way of solving a problem that's already been solved in any number of other ways. You need to attach a computer to some storage. Okay. You can use direct-attach FireWire storage. That has the advantage of being absolutely bullet-proof. Or you can use Fibre Channel to attach to a switched fabric. That works fine, too; just present a LUN to the Mac and let it format and mount it. Or you can use a network storage technology, like AppleShare or NFS. Those work fine, too, and the Power Macs, PowerBooks, and xServes are all shipping with 1000BASE-T, so that's not a problem.

    There are any number of ways to ameliorate your so-called "real need" for iSCSI. These work today. Use them.
  • Re:oh, whatever (Score:3, Informative)

    by Anonymous Coward on Tuesday February 18, 2003 @04:35PM (#5328470)
    ------
    1) firewire - no managment, just loose drives attached to single machines. might as well suggest a usb memory stick. firewire drives don't make a san.
    ------

    no, firewire drives can be attached to many machines
    at the same time. there -are- firewire san solutions out
    there right now.

    ------
    2) fibre channel - cost of entry approaching $50k. that adds up to about 50k reasons not to use it on a home machine or small network.
    ------

    no, have a look at Apple's Xraid box. Much cheaper than
    $50k.

    ------
    i think the real reason is that very few people are using macs in a data center serving up real applications to lots of clients - the sorta place where a well managed SAN makes sense. now that the draft standard has been finalized (but not ratified), i imagine that you'll see iSCSI becoming more commoditized and more software being made available for more OSs.
    ------

    I think the main reason that macs are doing that job
    is that there haven't been any mac capable of doing
    that job.
  • by questionlp ( 58365 ) on Tuesday February 18, 2003 @06:37PM (#5329825) Homepage
    It may not be Mac OS X or Darwin-specific, but it seems that Intel is working with Wasabi Systems/NetBSD [open-mag.com] to work on getting iSCSI to run on NetBSD. Some of this may work up to Darwin, then into Mac OS X... but it will take a while, mostly when Apple is focusing on Fibre Channel with their XServe RAID units.
  • by porkchop_d_clown ( 39923 ) <<moc.em> <ta> <zniehwm>> on Tuesday February 18, 2003 @10:27PM (#5331691)

    As some writing SRP drivers for a living - iSCSI is a protocol that allows you to send SCSI commands between to machines linked by TCP/IP. It doesn't "bridge" IP and SCSI - it's not like you can use it to ping your hard drive.


    The intent of iSCSI is to allow people to build SANs without having to shell out actual money for a fibre channel installation.

  • Re:oh, whatever (Score:3, Informative)

    by benh57 ( 525452 ) <bhines@alumnREDH ... edu minus distro> on Tuesday February 18, 2003 @10:36PM (#5331742) Homepage
    Your fibre channel numbers are way off. You can get an XServe RAID Fibre Channel and 2.5TB for $10999. The FC host PCI card from apple is $499. 400MB/s throughput.
  • Re:oh, whatever (Score:2, Informative)

    by Anonymous Coward on Wednesday February 19, 2003 @12:03AM (#5332302)
    The 50K number isn't off the mark really. The $12,000 for XRAID buys you just two arrays attachable to two servers. If you want to put the XRAID behind one or two (for redundancy) fiber channel switches. Those run as much or more than the XRAID itself.

    One of the benefits of iSCSI would be that the very pricey FC Switched network would be unecessary -- you could leverage your LAN.
  • by ZigMonty ( 524212 ) <slashdot.zigmonty@postinbox@com> on Wednesday February 19, 2003 @06:07AM (#5333568)
    Incorrect. Although device drivers are IOKit-based, the VFS layer of darwin (filesystems) is almost straight FreeBSD. There are problems with the fact that Darwin's locking is different and probably VM issues. You definitely can't just take a FreeBSD filesystem and throw it into Mac OS X but it would only be a porting effort, not a rewrite.
  • by mkldev ( 219128 ) on Wednesday February 19, 2003 @05:40PM (#5338625) Homepage

    File system drivers for MacOS X would have to be written as a kext and would be IOKit-based. Totally un-BSD ...



    If it were a file system, you would be wrong (since the VFS layer is basically BSD), but it isn't a file system; it's a block device. So yes, it would be an I/O Kit KEXT.

    However, to say that it's "totally un-BSD" is a stretch. BSD drivers are relatively easy to port to Mac OS X if they are written correctly. The wrapper tends to be relatively small, with additional changes needed for synchronization where applicable.

To do nothing is to be nothing.

Working...