Daniel Schwager
2008-Jun-20 15:20 UTC
[zfs-discuss] howto resize/extend an existing ZFS volume ?
Hi, i would like to resize an existing volume. Is this possible ? i can''t find any relating zfs-command for this task. [root at storage10 ~]$ zfs list NAME USED AVAIL REFER MOUNTPOINT pool1 35.2G 72.1G 18K /pool1 pool1/solaris-b90-t1.img 9.89G 72.1G 8.79G - This message posted from opensolaris.org
Darren J Moffat
2008-Jun-20 15:27 UTC
[zfs-discuss] howto resize/extend an existing ZFS volume ?
Daniel Schwager wrote:> Hi, > > i would like to resize an existing volume. Is this possible ? > i can''t find any relating zfs-command for this task. > > [root at storage10 ~]$ zfs list > NAME USED AVAIL REFER MOUNTPOINT > pool1 35.2G 72.1G 18K /pool1 > pool1/solaris-b90-t1.img 9.89G 72.1G 8.79G -# zfs get volsize tank/vol tank/vol volsize 64M - # zfs set volsize=72M tank/vol # zfs get volsize tank/vol tank/vol volsize 72M - -- Darren J Moffat
Daniel Schwager
2008-Jun-20 15:38 UTC
[zfs-discuss] howto resize/extend an existing ZFS volume ?
Great. Thx very much. Danny This message posted from opensolaris.org
Gary Pennington
2008-Jun-20 16:04 UTC
[zfs-discuss] howto resize/extend an existing ZFS volume ?
On Fri, Jun 20, 2008 at 08:20:29AM -0700, Daniel Schwager wrote:> Hi, > > i would like to resize an existing volume. Is this possible ? > i can''t find any relating zfs-command for this task. > > [root at storage10 ~]$ zfs list > NAME USED AVAIL REFER MOUNTPOINT > pool1 35.2G 72.1G 18K /pool1 > pool1/solaris-b90-t1.img 9.89G 72.1G 8.79G - > > > This message posted from opensolaris.org > _______________________________________________ > zfs-discuss mailing list > zfs-discuss at opensolaris.org > http://mail.opensolaris.org/mailman/listinfo/zfs-discussYou must set the volsize property. man zfs(1M) Gary