Aus der Tiefe
   


About
Aus der Tiefe, Meldungen des Rechenzentrums in der Cauerstrasse 11

Matthias Bauer und Martin Bayer problems@math.fau.de

Subscribe
Subscribe to a syndicated feed of my weblog, brought to you by the wonders of RSS.

Flavours
There's more than one way to view this weblog; try these flavours on for size.

  • index
  • circa 1993
  • RSS
  • Links

  • Shoestring FoundationMiscellaneous byproducts

  •        
    Thu, 25 Nov 2010


    	Auf der V240 gibts jetzt ein activate_snapshot.sh.
              Es nimmt einen snap-identifier (bei uns typischerweise
    	   date +"%d%m%y"
    	  ) und ruft zfs clone auf die snapshots. Die clones
    	  sind Copy-on-write von den snapshots, ist also schnell
    	  und kost erstmal nix. Sie werden unter /mypool/radix/homes
    	  gemountet, also wie auf der ziusudra, und exportiert per
    	  nfs. Code:
    	  zfs list -rH -o name -t snapshot mypool/backup/radix/homes | \                                         grep "homes/.*@$snap" | \
    	    while read X; do
    		wo=`basename "$X" | sed 's/@.*//'`
    		zfs clone -p -o sharenfs="rw=@131.188.103.0/24" \
    			     -o devices=off -o setuid=off "$X" \
    				mypool/radix/homes/$wo
    	    done
    
    

    [/bauerm] permanent link