I have been running VMWare Fusion 11 for sometime now and with macOS Catalina 10.15.x. I received two popups everytime I started a VM. I ignored them and just clicked OK for quite awhile and just didn't look into how to remedy until now. It turns out its associated with extended attributes. It isn't supposed … Continue reading Popups from VMWare Fusion 11 when Starting a Virtual Machine on macOS Catalina
Month: April 2020
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
Installing Linux VM via Kickstart Running on Synology
You may run into an issue after setting up your Synology Diskstation for booting Kickstart clients, where the VM won't boot PXE properly. This can also happen if you have a dedicated server acting as you Kickstart server. The issue is by default when you create a VM is want to use "Share with my … Continue reading Installing Linux VM via Kickstart Running on Synology
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