Converting crt to PEM
Took two steps:
openssl x509 -in input.crt -out input.der -outform DER
openssl x509 -in input.der -inform DER -out output.pem -outform PEM
During an attempt to use the VMware Perl SDK, I have encountered the following error: VMControl Panic: SSLLoadSharedLibrary: Failed to load library /usr/bin/libcrypto.so.0.9.7:/usr/bin/libcrypto.so.0.9.7: cannot open shared object file: No such file or directory This is weird, as it was compiled successfully on my system (Centos4), but still… The workaround was to create two symlinks: ln…
A while ago, a newer version of Cacti became available through Dag’s RPM repository. An upgrade went without any special events, and was nothing to write home about. A failure in one of my customer’s Cacti system lead me to test the system using “spine” – the “cactid” new generation. I felt as if it…
I was playing a bit with iSCSI initiator (client) and decided to see how complicated it is to setup a shared storage (for my purposes) through iSCSI. This proves to be quite easy… On the server: 1. Download iSCSI Enterprise Target from here, or you can install scsi-target-utils from Centos5 repository 2. Compile (if required)…
I have recently acquired a new computer without an operating system, and I wish to install Oracle Enterprise Linux version 9.1 on it. The ISO file required for the installation is located on an NFS file server, accessible through a network infrastructure. The hardware boots using uEFI, and I have a USB disk-on-key containing Ubuntu…
Every Linux admin is familiar with the long time running through a large directory tree (with hundred of thousands of files and more) can take. Most are aware that if you re-run the same run-through, it will be shorter. This is caused by a short-valid filesystem cache, where the memory is allocated to other tasks,…
My system provides DNS services, using dnsmasq, to several different subnets. I wish to log specific queries to different files – as I want to identify, and maybe even respond to certain DNS queries of the IoT network. The (excellent) utility dnsmasq is unable to split the logging into multiple log files, or filter logging…