Hi I''m a new user of OpenSolaris 2008.11, I switched from Linux to try the time-slider, but now when I execute the time-slider I get this message: http://img115.imageshack.us/my.php?image=capturefentresansnomfx9.png Thanks you and happy new year ^^ -- This message posted from opensolaris.org
On Mon, Dec 29, 2008 at 8:21 AM, Charles <seriphyde at gmail.com> wrote:> Hi > > I''m a new user of OpenSolaris 2008.11, I switched from Linux to try the time-slider, but now when I execute the time-slider I get this message: > > http://img115.imageshack.us/my.php?image=capturefentresansnomfx9.pngTry running svcs -v zfs/auto-snapshot The last few lines of the log files mentioned in the output from the above command may provide helpful hints. -- Mike Gerdts http://mgerdts.blogspot.com/
Hi there, Charles wrote:> I''m a new user of OpenSolaris 2008.11, I switched from Linux to try > the time-slider, but now when I execute the time-slider I get this > message: > > http://img115.imageshack.us/my.php?image=capturefentresansnomfx9.pngI wish we''d release-noted this particular problem. I''m willing to bet it''s due to the same issue as mentioned under "Services inexplicably dropping to maintenance mode" at http://blogs.sun.com/timf/entry/zfs_automatic_snapshots_in_nv - there''s a bug filed against ZFS for this behaviour, http://bugs.opensolaris.org/view_bug.do?bug_id=6462803 and a workaround you can use in the meantime. cheers, tim
Thanks you all for you help First, I tried the command and this is what I get: svcs -v zfs/auto-snapshot STATE NSTATE STIME CTID FMRI online - 14:48:56 - svc:/system/filesystem/zfs/auto-snapshot:weekly online - 14:48:57 - svc:/system/filesystem/zfs/auto-snapshot:monthly maintenance - 14:48:59 - svc:/system/filesystem/zfs/auto-snapshot:daily maintenance - 14:49:01 - svc:/system/filesystem/zfs/auto-snapshot:hourly maintenance - 14:49:01 - svc:/system/filesystem/zfs/auto-snapshot:frequent And for timf, I have red your pages, but I don''t understand what to do. In the bug report, the workaround is to unmount and mount the filesystem, but I don''t know how to do this with zfs. When I enter "zfs list" I get that: NAME USED AVAIL REFER MOUNTPOINT rpool 32,8G 424G 75,5K /rpool rpool/ROOT 5,15G 424G 18K legacy rpool/ROOT/opensolaris 8,96M 424G 2,47G / rpool/ROOT/opensolaris-1 5,14G 424G 4,78G / rpool/dump 4,00G 424G 4,00G - rpool/export 19,7G 424G 19K /export rpool/export/home 19,7G 424G 19K /export/home rpool/export/home/charles 19,7G 424G 16,2G /export/home/charles I don''t know what to unmount here thanks again for your help :) -- This message posted from opensolaris.org
Hi Charles, Charles wrote:> And for timf, I have red your pages, but I don''t understand what to > do. In the bug report, the workaround is to unmount and mount the > filesystem, but I don''t know how to do this with zfs. > > When I enter "zfs list" I get that: > > rpool/ROOT/opensolaris 8,96M 424G 2,47G / > rpool/ROOT/opensolaris-1 5,14G 424G 4,78G / > > I don''t know what to unmount hereIt''s most likely the rpool/ROOT/opensolaris dataset causing the "dataset is busy" message. So do: $ pfexec zfs set mountpoint=legacy rpool/ROOT/opensolaris $ mkdir /tmp/a $ pfexec mount -F zfs rpool/ROOT/opensolaris /tmp/a $ pfexec umount /tmp/a $ svcadm clear frequent daily frequent hourly cheers, tim