I finally upgraded from my previous GTX 980 Ti to GTX 1070 last week, unfortunately that meant revisiting some of my previous issues with ubuntu and various incompatibilities among the graphics drivers and cuda components. Â In any case I decided this time I will document some of this stuff more cleanly so I can refer…
I was re-purposing my old desktop for machine learning with gpu support for Theno and Keras, I ran into several issues and ended up writing some code to workaround some of them and make others easier and more manageable. Someday I will write a more detailed series of articles on how I did that and what…
Was doing a upgrade on my VNX5200 at work, and halfway through the RDP session got disconnected when I connected back the Unisphere client was hung, I knew from the screen that it has gone all the way to the end and was waiting for me to do a post-install commit of the code. but…
There was some confusion on how to specify multiple dns server ip address or domain search names with the Set-VMHostNetwork cmdlet. Turns out is a simple comma separated list that get treated as a parameter array. Here is an example. Connect-viserver vCenterServerFQDNorIP $ESXiHosts = Get-VMHost foreach ($esx in $ESXiHosts) { Get-VMHostNetwork | Set-VmHostNetwork -DomainName eng.example.com…
Here’s a quick how to add iSCSI send targets on all hosts in your VC Connect-viserver vCenterServerFQDNorIP $targets = “StorageTargetIP1”, “StorageTargetIP2” $ESXiHosts = Get-VMHost foreach ($esx in $ESXiHosts) { $hba = $esx | Get-VMHostHba -Type iScsi | Where {$_.Model -eq “iSCSI Software Adapter”} foreach ($target in $targets) { # Check to see if the SendTarget…