Saturday, September 19, 2015

quick note, illumos rebuild, Sept 19, 2015

As usual, this was on kvm;
the qemu command prompt;

 qemu-system-x86_64 -enable-kvm -cpu host,-x2apic -m 2048 -smp 3 -net nic,model=e1000 -net user -redir tcp:5501::22 -drive file=hip/hip_12Sept2015.img,index=0,media=disk,format=raw -vga std -vnc :0

/usr/bin/time results from inside of the vm:
rliegh@virtualindiana:/code/illumos-gate$ time ./nightly.sh illumos.sh

real    61m10.830s
user    121m47.677s
sys     33m45.621s
rliegh@virtualindiana:/code/illumos-gate$

No comments:

automating zfs mounts -a quick and very dirty script

 #!/bin/sh for x in obj xsrc src pkgsrc pkgsrc/distfiles pkgsrc/packages pkg         do zfs create ext/$x zfs set mountpoint=/usr/$x ext/$x ...