vmware
Adding an NFS datastore to VMWare ESXi
03/09/21 16:35
VMWare ESXi supports NFS storage. All the VMWare documents talk about managing it from vSphere. Which is a pity if you don't happen to be using vSphere. Fortunately adding your NFS datastore is relatively simple, apart from the lack of documentation. Read More...
Using a docker private registry with vctl
23/07/21 08:34
Currently I am using VMWare Fusion's vctl to run containers on my Mac. It has been surprisingly compatible with the Docker desktop, but occasionally you run into an issue.
I am currently using an unencrypted local repository and you get errors like:
The answer is trivial but literally buried at the end of the help for the login command:
You will need to sprinkle the --http flag around your later commands too.
This was going to be an article about the tool skopeo (https://github.com/containers/skopeo) allows a user to copy from one repository to other formats, and I have included that for interest. Read More...
I am currently using an unencrypted local repository and you get errors like:
% vctl login 192.168.1.1:5000
INFO Login to 192.168.1.1:5000...
Username: maurice
Password for maurice:
INFO Error logging in to v2 endpoint, trying next endpoint: Get https://192.168.1.1:5000/v2/: http: server gave HTTP response to HTTPS client
ERROR Get https://192.168.1.1:5000/v2/: http: server gave HTTP response to HTTPS client
The answer is trivial but literally buried at the end of the help for the login command:
vctl login --http my-plain-http-registry.com:5000
You will need to sprinkle the --http flag around your later commands too.
This was going to be an article about the tool skopeo (https://github.com/containers/skopeo) allows a user to copy from one repository to other formats, and I have included that for interest. Read More...
Resizing Root on LVM
04/06/20 09:17
One of the advantages of using virtual machines is that you can easily create templates which you reproduce as needed. Of course the file systems are rarely the size you need them to be.
Fortunately, if you have either XFS or ext4 installed on LVM, expanding the root file system is fairly easy. Read More...
Fortunately, if you have either XFS or ext4 installed on LVM, expanding the root file system is fairly easy. Read More...
HID Devices under VMWare
07/05/20 08:02
How do you configure a HID device using Windows under VMWare Fusion?
My new X-Bows Ergonomic keyboard turned up, but I opted for the version with the original firmware with multicoloured lights.

Unfortunately the dev working on the multi-platform configuration software didn't finish that bit. So I have to use a Windows based solution. The keyboard is not visible to the configuration software under VMWare until you make a few changes.
Read More...
P2V a Linux box into VMWare
19/05/16 17:11
This really should be obvious and easy … after all everyone does it … but my Google Fu kept leading me to solutions that relied on having access to old versions of VMWare Converter.
But it really is easy by combining:
Read More...
But it really is easy by combining:
- netcat; and,
- qemu
Read More...