DevTech101

DevTech101

os

Solaris SPARC SAN Boot

After mirroring the device or zfs send install the bootblock installboot -F zfs /usr/platform/`uname -i`/lib/fs/zfs/bootblk /dev/rdsk/c0t1d0s0 First we need to get the lun paths, just run the below to get that {0} ok show-disks a) /pci@500/pci@0/pci@c/SUNW,qlc@0,1/fp@0,0/disk b) /pci@500/pci@0/pci@c/SUNW,qlc@0/fp@0,0/disk c) /iscsi-hba/disk q) NO SELECTION Next get the disk id’s, just run the below to get that. …

Solaris SPARC SAN Boot Read More »

How to measure network Bandwidth in Linux

Usage as below from same folder: To check packer per interface: ./netpps.sh eth0 To check speed per interface: ./netspeed.sh eth0 Measure Packets per Second on an Interface netpps.sh as file name #!/bin/bash INTERVAL="1" # update interval in seconds if [ -z "$1" ]; then echo echo usage: $0 [network-interface] echo echo e.g. $0 eth0 echo …

How to measure network Bandwidth in Linux Read More »

Solairs 11 Physical (Global OS) to Virtual(P2V)

# Primary domain config ldm add-vcc port-range=5000-5100 primary-vcc0 primary svcadm enable svc:/ldoms/vntsd:default ldm set-vcpu 56 primary ldm set-memory 240G primary # Primary network config ldm add-vswitch pvid=2016 net-dev=aggr1 primary-vsw0 primary # CCOW config ldm create bk2-srv ldm set-vcpu 8 bk2-srv ldm set-memory 14G bk2-srv ldm set-variable auto-boot?=false bk2-srv # Ccow network config ldm add-vnet pvid=2016 …

Solairs 11 Physical (Global OS) to Virtual(P2V) Read More »