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
I have encountered it on several cases. RedHat Linux ES, by default, uses smp kernel which is limited to eight cores, or two sockets. You find out that your multi-socket hardware, with its 16 (or more…) cores show you only the first eight, both by the simple method of running ‘top‘ and then pressing on…
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…
I migrated to dnsmasq just yesterday, and discovered that a Windows 7 machine was hammering the server with messages like this: FebĀ 1 11:06:07 dns dnsmasq-dhcp[1078]: DHCPINFORM(eth0) 192.168.1.77 91:de:87:7b:e5:a8 FebĀ 1 11:06:07 dns dnsmasq-dhcp[1078]: DHCPACK(eth0) 192.168.1.77 91:de:87:7b:e5:a8 winpc Googling a bit, I found out this link (with an explanation). The solution is fairly simple. Add…
cat /proc/scsi/qla2xxx/$Z” where Z represents the SCSI interface the Qlogic has taken for itself, you’ll get something like this: <Snip> . . </Snip> SCSI LUN Information: (Id:Lun) * – indicates lun is not registered with the OS. ( 0: 0): Total reqs 63185608, Pending reqs 0, flags 0x2, 0:0:81 00 Assuming you’ve just added the…
dm-multipath is a great tool. Its abilities were proven to me on many occasions, and I’m sure I’m not the only one. NetApp, for example, use it. HP use it as well (a slightly modified version, and still), and it works. A problem I have encountered is as follow – if a single path fails,…
Red Hat’s Anaconda installer, used by Red Hat Enterprise Linux, Oracle Linux, and other RHEL-like distributions, offers a powerful customization method through an additional product.img file. This technique allows you to modify the first boot sequence with relative ease. What is product.img? The product.img is an additional image file that can be used to override…