Monday, September 12, 2011

ZFS in Sun (Oracle) Solaris 10


Zettabyte File System(ZFS)
====================

Major Feature:

>> 256 quadrillion zettabytes

What is Zettabytes?
(Terabytes-Petabytes-Exabytes-Zettabytes)

which zpool

zpool list  - lists pools

zpool create pool1 c0t1d0

Full disk in Pool

mount

/pool1 rw

ls -l /pool1

zpool list

Zpool Pool Status:
Online
Degraded
Faulted
Offline
Unavailable
zfs list

zfs mount

zpool status

zpool status -v pool1

zpool destroy pool1 (to remove)

zpool status

zpool create pool1 c0t0d0

Creating File System Under pool:

zfs create pool1/home

zfs list

SET QUOTA...

zfs set quota=1G pool1/home

zfs list

Creating Userbased file system under pool1/home

zfs create pool/home/u1

zfs set quota=500M pool1/home/u1

zfs list

zfs get -r quota pool1

zfs get -r compression pool1

<There are lots of Variables like that>

Adding Storage:

zpool add pool1 c0t2d0

No comments:

Post a Comment