RANDOM ART 3
As Summer winds down it may not be as easy to get to these, but from what I’ve found there are many more public art installations where I live to locate. In the mean time, here is another batch of recent and not so recent finds.
As Summer winds down it may not be as easy to get to these, but from what I’ve found there are many more public art installations where I live to locate. In the mean time, here is another batch of recent and not so recent finds.
“The three true ages of man are youth, middle age, and how the fuck did I get old so soon?”
Stephen King “Revival”
Another post as I’ve decided to continue to search our the North Shore here in British Columbia for interesting public art. As time permits I’ll be adding more information as to where and what each picture is. Its one reason that Im happy to live where I do in Canada.
Given the boredom of social distancing and keeping to ones self I’ve found that searching out various public art on the North Shore in British Columbia Canada has been interesting. Here are a few of the recent pictures of taken of these.
Another week. Another park. This one a little to busy to stick around at for too long in this day and age but I still got a few nice pictures before high tailing it out of there.
This time it’s Whytecliff park, which is featured in many movies and television series shot in British Columbia.
I am very lucky to live in the Province that I do in Canada. We have some of the most amazing places that you can visit in nature. A few days ago my Mother and I visited Lightouse Park again and these are some of the photos of that trip.
Part of my job responsibilities are managing a large VMware installation and a tool which I use frequently, is PowerShell with the VMware modules. The following is only how I installed it on macOS and is by far not the only way.
First, I use Brew, it just makes things easier for me to get all the tools that I require and keep them up to date easily. Click here if you could like to know how to install Brew.
Installing PowerShell via Brew
Installing PowerShell via Brew is very easy and can be done via a simple command:
brew cask install powershell
Once this is complete you can access PowerShell in one of two different ways. The first is once the installation is complete you’ll have a PowerShell icon in your applications folder. However, the easier way to access PowerShell will be via Terminal and typing:
sudo pwsh
Installing VMware modules into PowerShell
Next we will install the VMware modules, which is why we’re putting sudo in front so that we’re working as an Administrator.
sudo pwsh
Find-Module -Name VMware.PowerCLI
Install-Module -Name VMware.PowerCLI -Scope CurrentUser
Now let’s verify that everything got installed
Get-Command -Module *VMWare*
If everything went as expected you’ll see a long list of VMware modules.
Connecting to your vCenter
Connect-VIServer -Server vcenter.host.local -User administrator@vsphere.local -Password
So, now what?
For more detailed documentation that what’s found here, click this link.
To get a list of all your virtual machines:
get-vm
If you want to see a lot more information about each machine you can have that information spit out in a nice format list, like this:
get-vm | fl
A common task is moving virtual machines from here to there as users believe that memory and CPU are infinite. The following command would move the VM to the new ESXi host, via vMotion:
Move-VM -VM 'vmname' -Destination 'newesxi host'
The point of this post was to get everyone up and running on macOS with PowerShell and VMware. There are many resources on-line that will help you continue your journey.
“If you feel yourself hitting up against your limit remember for what cause you clench your fists… remember why you started down this path, and let that memory carry you beyond your limit.”
All Might “My Hero Academia”
“I’ve done stuff I ain’t proud of… and the stuff I am proud of is disgusting.”
Moe Szyslak, The Simpsons