[zfs-discuss] c1t0d0 to c3t1d0

2008-09-30 Thread dick hoogendijk
I have a ZFS disk (c1t0d0) in a eSATA/USB2 enclosure. If I would build this drive in the machine (internal SATA) it would become c3t1do. When I did it (for testing) zpool status did not see it. What do I have to do to be able to switch this drive? -- Dick Hoogendijk -- PGP/GnuPG key: 01D2433D

Re: [zfs-discuss] c1t0d0 to c3t1d0

2008-09-30 Thread Will Murnane
On Tue, Sep 30, 2008 at 14:00, dick hoogendijk [EMAIL PROTECTED] wrote: What do I have to do to be able to switch this drive? I'd suggest running zpool import. If that doesn't show the pool, put it back in the external enclosure, run zpool export mypool and then see if it shows up in zpool

Re: [zfs-discuss] c1t0d0 to c3t1d0

2008-09-30 Thread andrew
Inserting the drive does not automatically mount the ZFS filesystem on it. You need to use the zpool import command which lists any pools available to import, then zpool import -f {name of pool} to force the import (to force the import if you haven't exported the pool first). Cheers Andrew.