Enable color
To enabled colored command output on the NetScaler CLI:
set mode -color ON
Extract PFX
Replace the names of the files accordingly
openssl pkcs12 -in filename.pfx -nocerts -out filename.key -nodes
openssl pkcs12 -in filename.pfx -nokeys -out filename.cer
openssl rsa -in filename.key -out filename_nopass.key
Import Disk to QCOW2
Replace the names of the files accordingly
qm disk import <vmid> <filename> <storage> --format qcow2
Rename network interfaces
Current network interface name, e.g.: eno1 Desired network interface name, e.g.: entrunk01
- Search for the MAC Address of your network interface
ip addr show dev eno1
- Create a file in the SystemD network configuration
touch /etc/systemd/network/01_entrunk01.link
- Paste the following lines in the new file:
[Match]
MACAddress=ff:ff:ff:ff:ff:ff
[Link]
Name=entrunk01
Replace the “fake” MAC address with the one from step 1
Modify the network configuration
nano /etc/network/interfaces
- Replace “eno1” with “entrunk01”.
Erase USB Disk
Replace the names of the /dev/disk4
accordingly
diskutil list
diskutil unmountDisk /dev/disk4
diskutil eraseDisk FAT32 SANDISK /dev/disk4