Pool Related Commands # zpool create datapool c0t0d0Create a basic pool named datapool# zpool create -f datapool c0t0d0Force the creation of a pool# zpool create -m /data datapool c0t0d0Create a pool with a different mount point than the default.# zpool create datapool raidz c3t0d0 c3t1d0 c3t2d0Create RAID-Z vdev pool# zpool add datapool raidz c4t0d0 c4t1d0 … Continue reading ZFS command line reference (Cheat sheet)
Tag: Solaris
Solaris OS
One Liners for *nix
# Remove 1st Column awk 'BEGIN{FS=OFS="#"}{$2=$3=""}{print}')cat ldm_dump.o |awk 'BEGIN{FS=OFS=" "}{$1=""}{print}' # Create non-existent dirs for i in `cat /etc/vfstab|grep vx|awk '{print $3}'`; do mkdir $i; done # Uncompress and tar install gunzip -c prdhbs1_hbsdg.tar.gz|tar xvf - # Veritas vxprint -v |grep -v NAME|grep -v group |awk '{print $2" ", $5}' # Grow and extend Vol/FS … Continue reading One Liners for *nix
One Liners for Solaris
Get disks attached to HBA for i in `fcinfo hba-port |grep WWN|grep HBA|awk '{print $4}'`; do fcinfo remote-port -sl -p $i; done hostname;fcinfo hba-port |grep WWN|grep HBA|awk '{print $4}' Logical Domains Add Vnets from List for i in `ldm list |awk '{print $1}'|grep -v NAME|grep -v primary`; do ldm add-vnet linkprop=phys-state vnet0 public-vsw0 $i; ldm … Continue reading One Liners for Solaris
CPU Core and Thread Count Script (Linux, Solaris, AIX & macOS)
What does it do? Checks Solaris, Linux, AIX and macOS for CPU Core/Thread Counts. The AIX portion had not been tested in quite awhile. I no longer have access to an AIX platform. core_count.sh p.p1 {margin: 0.0px 0.0px 0.0px 0.0px; font: 14.0px Courier; color: #3b2322; background-color: #d7d3b7} p.p2 {margin: 0.0px 0.0px 0.0px 0.0px; font: 14.0px … Continue reading CPU Core and Thread Count Script (Linux, Solaris, AIX & macOS)