Difference between revisions of "Storage: ZFS"

From Proxmox VE
Jump to navigation Jump to search
Line 26: Line 26:
 
== Debian GNU/kFreeBSD ==
 
== Debian GNU/kFreeBSD ==
  
zfs work much better using kFreeBSD
+
zfs work much better using Debian/GNU kFreeBSD  
  
 
after installing the system
 
after installing the system
Line 52: Line 52:
  
 
*make a pool
 
*make a pool
 +
 +
*links

Revision as of 19:45, 23 February 2012

How to install ZFS-fuse under Proxmox

(Tested with Kernel 2.6.32)

 apt-get install build-essential libaio-dev libattr1-dev libacl1-dev libz-dev libz-dev libfuse-dev libfuse2 scons libssl-dev
 wget -nd http://zfs-fuse.net/releases/0.6.0/zfs-fuse-0.6.0.tar.bz2
 tar jxvf zfs-fuse-0.6.0.tar.bz2
 cd zfs-fuse-0.6.0
 cd src
 scons
 scond install

Fire up ZFS-fuse daemon

 /usr/local/sbin/zfs-fuse

Create Zpool

 zpool create -m /var/lib/vz/images2 /dev/sdb

Create ZFS

 zfs create images2/109

ZFS clone a vm 109 to vm 110

 zfs snapshot images2/109@master
 zfs clone images2/109@master images2/110

Debian GNU/kFreeBSD

zfs work much better using Debian/GNU kFreeBSD

after installing the system

  • add some disks . in KVM i was only able to get ide to work.
  • the scsi disks look like:
ls /dev/ad*
/dev/ad10  /dev/ad10s1  /dev/ad10s2  /dev/ad11  /dev/ad12  /dev/ad13


fdisk /dev/ad11
o
w

then same for ad12 and ad13


  • install this
aptitude install zfsutils
  • make a pool
  • links