Slashdot Mirror


OpenSolaris Indiana Released

Lally Singh writes "The Linux-friendly OpenSolaris Indiana has been released! A new, modern package manager and all the goodies of Solaris: ZFS, DTrace, SMF, and Xen on a LiveCD that was designed for Linux users. 'Why use the OpenSolaris OS you ask? It's pretty simple, you'll find it full of unique features like the new Image Packaging System (IPS), ZFS as the default filesystem, DTrace enabled packages for extreme observability and performance tuning, and many many more. We think you'll be quite happy to came by to take a look!'"

34 of 359 comments (clear)

  1. Re:ZFS simply rocks by larry+bagina · · Score: 3, Informative

    ZFS on Linux won't happen. But Linux on ZFS is possible today. Solaris has a LX BRANDZ container which emulates the linux system call api. So you can create linux container and install RedHat in it.

    --
    Do you even lift?

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

  2. Relegated to VMWare on x86 by Anonymous Coward · · Score: 3, Informative

    The darn thing never even boots successfully on most all of my machines - on the one machine where it does - the network card (wired) is not detected making it unusable. OpenSolaris seriously needs a bunch of smart driver developers contributing drivers and general x86 workarounds - just not suitable for x86 hardware as of today (unless the h/w happens to be Sun).

    1. Re:Relegated to VMWare on x86 by njcoder · · Score: 2, Informative

      I ran into a similar problem. In a lot of cases, the drivers for the network cards are actually available. The problem seems to be that there is no mapping of the PCI id in /etc/driver_aliases. I've found that in many cases you can just add a line in that file with the appropriate pci vendor and product id and the nic will work. You can find the pci vendor and product id using prtconf -v and searching for the Ethernet Adapter section.

      There are also a bunch of free network drivers for Solaris can be found here.

  3. Re:Still not sold by Tuzanor · · Score: 5, Informative
    ZFS doesnt offer me anything as im not managing servers
    Don't want easy raid/storage expansion on your desktop? You don't want efficient storage?
    Dtrace doesnt offer me anything as im not a developer
    You don't want to know how your system is performing in a way like never before? I'm not a developer, but a sysadmin and use dtrace every day to tell those pesky developers that yes, it's actually THEIR CODE that's at fault at not the server I setup for them. It's also neat to be able to easily see what process is using how much network bandwidth in realtime. That was difficult before.
    SMF doesnt offer me anything i cant do with startup
    I don't like the complexity of SMF, but it's self-healing for the stuff that's already built for it is cool as is it's dependancy checking.
    IPS doesnt seam any better than deb or rpm
    It's better than just RPM, but it's about the same as deb or yum. It's a big step foreward for what was a commercial OS.

    I can tell you haven't even tried solaris 10, but give it a swig. Before solaris 10 I wrote (often rightly) wrote of Sun. Why would I pay a premium for something FreeBSD can do for free and outperforms it? The hardware is cool (see coolthreads processors...it's hyperthreading done right), it's affordable, and it's innovative. It may not be compelling enough to switch from linux or whatever if all you use from a desktop is firefox and thunderbird, but there is actually some VERY cool stuff in there. Don't write it off. There's a reason FreeBSD is taking in a lot of these features.

  4. Re:Difference between Indiana and Nexenta? by njcoder · · Score: 3, Informative

    Ok, you're going to find better explanations elsewhere but this is my understanding of it.

    OpenSolaris is not necessarily a "distribution". Nexenta, Shillix, etc are "distributions" built on OpenSolaris. Project Indiana as I understand it, is a distribution coming directly from the OpenSolaris project.

    At first OpenSolaris wasn't supposed to come up with it's own distribution, and now that it is it did some people didn't like it. Or they didn't like that they were going to call it OpenSolaris instead of Indiana or something like that. I'm not clear on all the details.

    Since Solaris will be built using OpenSolaris, Project Indiana is also kind of like an early access release of Solaris 11, without JDS.

  5. Re:ZFS simply rocks by Anonymous Coward · · Score: 2, Informative

    You, sir, are unmitigatedly fuckin' retahdid.

    "Conditioned upon Your compliance with Section 3.1 below and subject to third party intellectual property claims, the Initial Developer hereby grants You a world-wide, royalty-free, non-exclusive license ... under [patent claim(s), now owned or hereafter acquired, including without limitation, method, process, and apparatus claims, in any patent Licensable by grantor] ... to make, have made, use, practice, sell, and offer for sale, and/or otherwise dispose of the Original Software (or portions thereof)." -CDDL Section 2.1(b)

  6. Re:Image Packaging System? by anilg · · Score: 5, Informative

    "Image" in the name refers to the ability of the packageiung system to install to a chroot-like enviornment. The Distribution constructor (what actually builds the iso) basically creates an "image" area, installs the packages to this are, compresses it, and converts it to an iso.

    Apart from that, you can also create partial images, which is a space you as a normal user can install packages to. These link back to the libraries already installed.

    I'm sure some of these features are available in existing linux packaging systems. But these are things the Opensolaris community has wanted for a long time.

    Apart from these features IPS also has automatic snapshoting (using ZFS in the background), so you can revert your system back to earlier snapsots.

    All in all a very effective packaging system

    --
    http://dilemma.gulecha.org - My philospohical short film.
  7. Re:IP Issues with OpenSolaris? by njcoder · · Score: 2, Informative

    Sun had a lot of rights under previous licensing agreements before Novell even purchased the rights to Unix. The SCO deal seemed to be for some additional licensing and some drivers. Novell has claimed they won't be suing anybody over Unix anyway.

  8. Re:Image Packaging System? by anilg · · Score: 2, Informative

    I've tried to explain the use of "image" in my other comment http://tech.slashdot.org/comments.pl?sid=543728&cid=23305852

    --
    http://dilemma.gulecha.org - My philospohical short film.
  9. Re:Still not sold by Sillygates · · Score: 5, Informative

    ZFS is a marginal improvement at best over what's already available. I disagree. I guess you haven't seen one of the common types of data corruption that can happen with raided disks.
    It's a common misconception that raid "prevents" data corruption.

    RAID only protects you against (complete) hardware failures, and "noisy" IO errors.
    Consider:
    You have bad data on disk, but the hard drive reads the bad data without error.
    With parity, (even assuming the parity is read upon each read request, which would be a faulty assumption), raid 5 has no way of telling which disk is bad, or whether the parity is bad.

    Unlike raid, ZFS has end to end checksumming, so it knows when the data on disk is bad, and it knows which copy is bad, too.

    Unfortunately though, from what I've heard, ZFS isn't stable enough for production environments yet:
    http://www.datacenterknowledge.com/archives/2008/Jan/15/joyent_backup_services_down_for_three_days.html
    read these comments
    --
    I fear the Y2038 bug
  10. Re:ZFS simply rocks by larry+bagina · · Score: 3, Informative
    Sure.

    The source code (which remaps linux systems calls to open solaris and fudges inconsistencies)

    Info on installing debian (it's designed for RedHat based linux, so it's slightly painful ... though possibly out of date).

    Brand Z info

    Overview of linux support

    I haven't tried it, but there shouldn't be much overhead/performance loss.

    --
    Do you even lift?

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

  11. Re:Still not sold by QuantumRiff · · Score: 4, Informative

    Sun has a video out that I'm too lazy to search for here, where they run ZFS on a bunch of pen drives, plugged into a USB 2.0 Hub. Faster, and fault tolerant. Pretty amazing. ZFS is not for just servers. Think of apples "time machine" software. Also, ZFS includes lots of Metadata and checksums, to prevent bit-rot of your files.

    --

    What are we going to do tonight Brain?
  12. Re:Image Packaging System? by AKAImBatman · · Score: 2, Informative

    The high level parts of the system may be written in Python but the underlying tools it uses are Java. You can actually run some of the command line tools to save memory.
    You use the term "underlying", but then refer to the ability to run command-line tools directly. I think you're confused. You're probably thinking of the Sun Management Center, a graphical tool that allows you to manage your Solaris-based system. It is based on Java, but it's also sitting ABOVE the command-line tools, not below them as you surmised.

    As it happens, it's actually not a bad tool. From SMC you can manage users, track workloads, install patches, and do dozens of other day-to-day functions for all the servers on your network. The "slowness" you're talking about is just Solaris, not the tool. It takes just shy of forever to get a fresh Solaris system up to date with the latest patches. (I swear, Sun releases WAY too many patches.) A secret for you is that you don't actually have to install all of those patches. Pick the patches that apply to you and ignore the rest. (e.g. If you don't have a Sun Elite Graphics Card, why are you bothering to install patches for it? On occasion, some of the patches can even be exclusive to each other depending on your configuration!)

    Of course, all of this has absolutely NOTHING to do with the new IPS system. Standard Solaris 10 installs include the tradition Solaris packaging system, not the updated IPS system. So you should really give back that mod point that was so kindly provided to your rant.
  13. Re:zfs by larry+bagina · · Score: 2, Informative

    Apple didn't have a problem putting dtrace and ZFS into darwin/OSX. FreeBSD didn't have a problem putting ZFS into FreeBSD.

    --
    Do you even lift?

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

  14. Re:Still not sold by Anonymous Coward · · Score: 5, Informative

    (I work for Sun)

    These days we see a lot of performance related calls being logged by customers
    DTrace is a massive leap forwards
    I would really not write off Solaris, it's far from dead

  15. Re:Finally... by Constantine+XVI · · Score: 2, Informative

    JNode (http://en.wikipedia.org/wiki/JNode) would like a word with you.

    --
    "I think an etch-a-sketch with an ethernet port would beat IE7 in web standards compliance."
  16. Re:Difference between Indiana and Nexenta? by Anonymous Coward · · Score: 4, Informative

    Solaris 11 = The upcoming version of Solaris.

    "Project Indiana" was just the codname for founding OpenSolaris

    OpenSolaris = Bleeding-Edge Test Version of Solaris 11 (Think "Alpha")
    Solaris Express = Snapshot of OpenSolaris found to be "relatively stable". (Think "Beta")
    Solaris 10 = The full "retail" version, often updated with features seeping up from OpenSolaris, that needs to run fine and be perfectly stable on Big Iron.

  17. Re:the true shame... by Anonymous Coward · · Score: 3, Informative

    It's apparently on their radar, but at a frustratingly low priority. I agree that the omission of this seemingly simple feature was a major oversight on their part. Here's a link to blog post by one of the developers at Sun:

    http://blogs.sun.com/ahl/entry/expand_o_matic_raid_z

  18. Re:Still not sold by njcoder · · Score: 2, Informative

    Unfortunately though, from what I've heard, ZFS isn't stable enough for production environments yet:

    http://www.datacenterknowledge.com/archives/2008/Jan/15/joyent_backup_services_down_for_three_days.html

      read these comments From that same article you linked to:

    UPDATE: See our follow-up story for more. Joyent was using an older version of ZFS, and the bug in question was fixed nearly a year ago. From that article it seems that patching/updating OpenSolaris isn't the same as patching/updating Solaris. I have no personal experience in updating OpenSolaris though. OpenSolaris does seem to have the smpatch utility.

  19. Re:the true shame... by njcoder · · Score: 2, Informative

    I'm not sure if this is the case, but I got the impression that RAID-Z isn't the way they'd like you to use ZFS because you'd get better reliability and performance from just adding multiple mirrored sets to the pool. You can add multiple RAID-Z sets to a pool and that will give you better performance than adding one big RAID-Z. I can't find the link but there was a blog posting comparing IOPS in different setups and the recommendation was to use a max of 4-5 drives per RAID-Z vdev.

    I haven't played around with ZFS so I'm surprised to hear that it can't grow like you described. Hopefully that changes soon.

    Do you know if you can add a mirrored vdev to a pool that contains a RAID-Z vdev?

  20. Re:Image Packaging System? by AKAImBatman · · Score: 3, Informative

    I stand by my original statements 100% (I'm a certified SAP basis engineer on Sun equipment).
    I might believe you if I wasn't a professional Software Engineer with over a decade of experience with Java and access to the IPS source code on the OpenSolaris site. Alas, however, I am a professional Software Engineer with a decade of Java experience and I can read the source code. There is no Java visible in these tools. It's a completely Python-based system. I seriously doubt you'll find an OpenSolaris developer who will tell you otherwise.

    You may believe what you're saying, but you're probably just confused. Don't worry about it. It happens to the best of us.
  21. Re:installing now by njcoder · · Score: 2, Informative

    If I remember correctly, they swapped linux kernel with sun kernel and added some tools. Since debian (foundation of Ubuntu) is kernel agnostic (but linux is the working kernel), SUN just ported Ubuntu to solaris.
    More on it: http://en.wikipedia.org/wiki/Nexenta_OS What you said relates to Nexenta which is a distribution of OpenSolaris. Indiana is the distribution from OpenSolaris.
  22. Re:the true shame... by this+great+guy · · Score: 2, Informative

    You can't grow a ZFS pool except by adding similarly-redundant vdevs.

    This is not exactly true. No matter what your pool config is, you can always grow it by adding any sort of top-level vdev to it. For example if you have a N-drive raidz, you can add to it a 1-drive "mirror" (no redundancy, not recommended), or a 2-drive mirror, or a 3-drive raidz, or a 4-drive raidz2, etc.

    I think what you tried to say is that it is not possible to convert a N-drive raidz/raidz2 array into a (N+1)-drive array. The reason Sun hasn't implemented this feature yet is because (1) ZFS provides more features than your average RAID layer, so they face implementation problems no one else has ever had to solve when dynamically reconfiguring the layout of a RAID array, and (2) ZFS targets mostly machines with lots of drives where storage expansion is often done by adding a bunch of disks at a time (which is possible, see above) rather than occasionally adding single drives.

  23. Re:Hey! It's Debian! by the_B0fh · · Score: 2, Informative

    Unless of course, you expect to use it in production. Even freebsd zfs developers say it is not ready on freebsd yet.

  24. Re:Still not sold - OpenSolaris in Peril by rubycodez · · Score: 2, Informative

    things not looking so good after reading the transcripts of the Novell/SCO trial, Novell wasn't properly involved nor paid in SCO's granting to Sun the ability to open source System V technology in OpenSolaris. Uh oh, what SCO lied about Linux might be 100% dead on with OpenSolaris, stolen Unix IP!!!

  25. Re:Still not sold by nessus42 · · Score: 3, Informative

    I believe your evaluation to be incorrect on several levels. Firstly, the issue you point out is true for RAID-anything, as the filesystem has to be able to survive the loss of one of the disks for RAIDZ. RAID5 is no different in this regard.

    Secondly, with RAIDZ (or RAID5) and 4x500GB, you wouldn't end up with 2TB of disk space -- you'd end up with 1.5TB due to the overhead of the parity data.

    Thirdly, you don't have to replace all of the disk drives with RAIDZ to increase the amount of disk space dramatically. You seem to be thinking of RAID5, not RAIDZ. With RAIDZ replacing one of your 500GB disk drives with a new 2TB disk drive would indeed still leave you with only 1.5TB of disk space, due to the requirement for redundancy, but if you bought a pair of 2TB disk drives to replace two of your 500GB disk drives, you would increase your disk capacity from 1.5TB to 3TB, and if you just added the pair of 2TB disk drives to the pool as a mirror, as opposed to replacing existing drives, then you'd increase your disk capacity to 3.5TB.

    Fourth, no one is forcing you to use redundancy with ZFS if you don't want to suffer the redundancy/reliability overhead. You can add non-redundant disk drives to a ZFS pool.

    If you want extra reliability, you have to pay for it somehow.

    |>oug

  26. Re:What is the news ? by tytso · · Score: 2, Informative

    ext3 has a 4TB partition size limitation, 1TB filesize limit, and requires a fsck every X mounts.

    Actually, this is incorrect. Ext3 can support up to 16TB (there were some bugs for kernels older than 2.6.18 for really big filesystems, but even back then 8TB was no problem). The filesize limit is 2TB, and with ext4 that limits for the filesystem and individual files with be 1024 Petabytes, or 1 Exabytes.

    As far as requiring an fsck every X mounts, thats basically due to paranoia because PC class hardware, is, well, PC class hardware. You can disable that if you wish, and if you have an enterprise grade RAID array with a robust controller and disk-level checksums, it would probably make sense to turn it off. On a typical PC class-whatever-is-the-cheapest-parts-that-fell-off-the-board-from-Taiwan white box, where companies are competing for price much more than reliability or quality, then a periodic fsck is a good idea. But it's always something you can turn off if you wish.

  27. Re:Still not sold by GuyverDH · · Score: 4, Informative

    zfs is light years beyond typical raid environments... software or hardware...

    most raid environments don't do checksumming at every step of the data write / read process.
    most raid environments cannot detect silent corruption (bad cache, bad sector, flipped bit, etc) once the data has been read or written.
    most raid environments don't offer double parity.
    most raid environments require that the entire raid array be initialized at once, wasting potentially hours of time for the formatting/initializing to be completed.
    most raid environments when using off the shelf SATA/PATA drives can potentially go bad, even with parity... If you were doing a RAID 5 array with TB size drives, there's a potential that the MTBE can be reached while regenerating data on a replaced volume from parity causing the entire array to be toasted.

    All of these things are not issues with ZFS....

    ZFS is easily expandable, automatically realigns that data as you expand the pool, can have multiple sub-mount points (mounted anywhere) that can have different attributes - like compressing/shared/extended permissions/iSCSI and more on the way, like encryption, multiple compression algorithms, etc....

    I've played/worked with ZFS now for over 2 years and have never lost a single bit of data - even though I've tried...

    Build your RAIDZ pool on 20 drives, in 2 disk expansion units attached to 2 channels of a single SCSI card (10 drives per channel)... now shut the box down, remove all the drives, move them around between units, add an additional scsi card to the box, split the disks up between the scsi cards so they are now split 5 per channel, take one drive back out, and erase it... hold onto it for later...

    Bring the box back up... the pool will come back online without problems, running degraded as one drive is missing.
    now put the erased drive back in, and issue a resilver command, wait a while (not as long as a standard raid controller would take) and voila - all data that was stored on that erased drive is back and in place, and the pool is no longer running in degraded performance mode.

    try any of that with a standard raid controller and your data is f0rked!

    --
    Who is general failure, and why is he reading my hard drive?
  28. Re:Unix is dead by symbolset · · Score: 2, Informative

    You get the Blackberry answer because I'm remote.

    stupid enough? I don't know about the characterization.

    They had the rights to SVR4 that Solaris is based on to use it, to develop their own OS based on it, to sell it under trade secret and copyright protection but not to make it open. They then bought that right for a song from SCO because at that moment the latter needed a cash infusion to continue their jihad against Linux.

    The judge in te SCO V Novell case ruled last August that SCO does not own the copyright to SVR4 and it follows had no right to sell the right to make it open. Novell owns that right and reserved it in a document called th APA. You can read about it on groklaw.

    The reason why Novell reserved that right - and why the rights to unix were split so badly as to make it irretrievably dead had to do with Ransom Love's hubris. Hubris is the arrogance of pride.

    Mr. Love was president and founder of one of the earliest commercial Linux companies, the Santa Cruz Operation (not to be confused with SCO). When his IPO went bizarrely huge for no good reason its treasury stock was worth several more digits than he was used to dealing with. Paid in equity grew to half a billion and they never sold the majority of treasury stock. Marke cap was several times that early on. Of course he bought all the toys the bubble millionaires like and threw huge company parties, but he was also an old school geek like you find here on slashdot now and then.

    It happened that at that precise moment the company that had purchased the rights, code and business of unix from bell labs in their breakup (but not the trademark oddly enough), Novell was finding no success with unix and needed a cash infusion to retake ownership of the network, which had been their genesis. (Some will get the irony of this!). Being an old school geek Ransom wanted to "buy unix" as a trophy for having built a successful Linux business.

    Unfortunately he didn't have enough to buy the whole thing and being as he was still wet behind the ears in corporate goverment and his company had never ever turned a quarterly profit, Novell insisted on terms. Here's where the hubris come in. He bought the right to market unix for 5% of the gross with the rest going to Novell plus the right to develop a new and better unix he could keep all of the profits from. For rhis he paid in company stock that I hope Novell sold right away because within a year it was nearly wothless. I think he really believed he could mix in GNU/Linux and come out with something like this Open Solaris and buy up the rest of the rights and take over the server market. It didn't work out because he didn't have the rights to open it fully to attract open developers, his ipo money bled out too fast and eventually his company was bought out by an investment group (this one is the SCO we know and loathe)

    By making the attempt he fractured the rights to unix in such a way that the OS languished for over a decade, much to the glee of Microsoft which spent that decade taking ownership of the desktop network client and nearly half of servers. In software a decade is a very long time.

    I hope this explains it well enough. My thumbs hurt now.

    --
    Help stamp out iliturcy.
  29. Re:Still not sold by flnca · · Score: 2, Informative
    BTW, here is an article for you:

    Linux 2.6 Kernel AIO (and its flaws)

    Support for kernel AIO has been included in the 2.6 Linux kernel. (...) On ext2, ext3, jfs, xfs and nfs, these do not return an explicit error, but quietly default to synchronous or rather non-AIO behaviour (...) AIO read and write on sockets (doesn't return an explicit error, but quietly defaults to synchronous or rather non-AIO behavior) Linux kernel AIO to do list.

    Google is your friend! ;-)

    (BTW and it was 2005 when I needed it; it killed the performance of my code because it was executed synchronously instead of asynchronously)
  30. Re:Want to smash a harddrive like this guy by Anonymous Coward · · Score: 1, Informative

    everything in zfs , per the manual is either:

    a series of disks
    a series of disks in a stripe
    a series of disks in a stripe with single parity
    a series of disks in a stripe with double parity.

    please read the man page:

    uname -a
    SunOS opensolaris 5.11 snv_86 i86pc i386 i86pc

    cat /etc/release
    OpenSolaris 2008.05 snv_86 X86
    Copyright 2008 Sun Microsystems, Inc. All Rights Reserved.
    Use is subject to license terms.
    Assembled 26 April 2008

    Virtual Devices (vdevs)
    A "virtual device" describes a single device or a collection of devices organized according to certain performance and fault characteristics. The following virtual devices are supported:

    disk
    A block device, typically located under "/dev/dsk". ZFS can use individual slices or partitions, though the recommended mode of operation is to use whole disks. A disk can be specified by a full path, or it can be a shorthand name (the relative portion of the path under "/dev/dsk"). A whole disk can be specified by omitting the slice or partition designation. For example, "c0t0d0" is equivalent to "/dev/dsk/c0t0d0s2". When given a whole disk, ZFS automatically labels the disk, if necessary.

    file
    A regular file. The use of files as a backing store is strongly discouraged. It is designed primarily for experimental purposes, as the fault tolerance of a file is only as good as the file system of which it is a part. A file must be specified by a full path.

    mirror
    A mirror of two or more devices. Data is replicated in an identical fashion across all components of a mirror. A mirror with N disks of size X can hold X bytes and can withstand (N-1) devices failing before data integrity is compromised.

    raidz
    raidz1
    raidz2
      A variation on RAID-5 that allows for better dis- tribution of parity and eliminates the "RAID-5 write hole" (in which data and parity become inconsistent after a power loss). Data and parity is striped across all disks within a raidz group.

      A raidz group can have either single- or double- parity, meaning that the raidz group can sustain one or two failures respectively without losing any data. The raidz1 vdev type specifies a single-parity raidz group and the raidz2 vdev type specifies a double-parity raidz group. The raidz vdev type is an alias for raidz1.

      A raidz group with N disks of size X with P parity disks can hold approximately (N-P)*X bytes and can withstand P device(s) failing before data integrity is compromised. The minimum number of devices in a raidz group is one more than the number of parity disks. The recommended number is between 3 and 9 to help increase performance.

    spare
    A special pseudo-vdev which keeps track of available hot spares for a pool. For more information, see the "Hot Spares" section.

    log A separate intent log device. If more than one log device is specified, then writes are load-balanced between devices. Log devices can be mirrored. However, raidz and raidz2 are not supported for the intent log. For more information, see the "Intent Log" section.

    cache

    A device used to cache storage pool data. A cache device cannot be mirrored or part of a raidz or raidz2 configuration. For more information, see the "Cache Devices" section.

    Virtual devices cannot be nested, so a mirror or raidz virtual device can only contain files or disks. Mirrors of mirrors (or other combinations) are not allowed.

    Meaning no RAID 10.

  31. Re:Still not sold by diogenesx · · Score: 2, Informative

    I find this interesting, as I just had an issue related to this last Sunday. I tried to play a video from my Ubuntu fileserver running software RAID-5 and found the video was corrupted. It would jump and skip with no sound. In fact *all* the files on the RAID array were corrupted, videos, images, mp3's and everything else.
    I checked /proc/mdstat and it said everything was fine. So I checked each drive with fdisk and found one of the 5 drives had no TOC, so I wrote a new TOC to it and tried to re-add it to the array, only to find the new TOC didn't stick.
    I dropped the drive off the array, and reassembled it, and all my files were fine afterward. I am currently mirroring everything to a 1 TB external drive.

  32. Re:Want to smash a harddrive like this guy by Tuzanor · · Score: 2, Informative
    but as far as I can tell you still cant make a RAID10 (1+0) device in there, and you could with disksuite.

    zpool create tank mirror c0t0d0 c0t1d0 mirror c2t0d0 c2t1d0 :-)

  33. Re:Still not sold by nessus42 · · Score: 3, Informative

    With ZFS, a pool is a collection of "vdevs", and you can add new vdevs to the pool at any time to increase the capacity of the pool. A vdev is either a RAIDZ (which is kind of like RAID5), a RAIDZ2 (which is kind of like RAID6), a mirror (which is kind of like RAID1), or a bare disk. The pool is then is kind of like a RAID0 over all the vdevs.

    |>oug