We had a user device showing as incompliant in Endpoint manager due to secure boot un-enabled. In order to enable it, we converted the device from MBR to GPT, so we could switch it from Legacy BIOS to UEFI and then enable Secure Boot. As part of this process we […]
Rubin
I have a single Linux machine with 3 interfaces, eth0, host1, and loopback. And I have an application that sends out packets at the loopback and routed out to host1. To achieve this, my application creates a client socket that binds to an address “5.6.7.8” which is a loopback interface. […]
I installed vCenter on Virtualbox by importing the vmdk files. But afterI start the vCenter VM and go the UI, I see that its stuck at 56% and not progressing at all. I’ve ensured that DNS is working on the vCenter VM. Any idea what the issue is or what […]
I’m currently writing a shell-like application which should be able to execute commands from the directories listed in the PATH variable. It looked like these directories are just separated by semicolon characters, until I tried my code on a friend’s machine, where the PATH contained quotation marks or escape sequences […]
I use autossh to keep a connection open to a remote mysql server. autossh -p 22 -M 0 -L 33061:localhost:3306 root@10.0.0.101 -f -C -N Basically, whenever I type: mysql -h localhost -P33061 I access mysql server on the remote mysql server. Now, I would like to have another connection open […]
I got a hand-filled check box form: Imagine that there are Xs on each row to represent the selected answer by pen marks. I look for some kind of software that will convert the scanned forms into excel or csv format.
I’ve been following a guide here on how to change the Name and path of user folder (Rename profile folder on Windows 7/8 ) , but when i get to changing the Name in file Explorer it says that the folder is opened in another program. I don’t know how […]
Prerequisites I am trying to migrate from docker to podman for production use of some containers. Some of my containers are in need to be assigned IP adresses from a DHCP server in my network, as such I used docker-net-dhcp. Now, as I understand, while it cannot be used in […]
I came across different variable mentios in my .zshrc, with curly brackets and without them. What is the difference between export ANDROID_HOME=${HOME}/Library/Android/sdk and export ANDROID_HOME=$HOME/Library/Android/sdk ?