This is the “preview edition” of my new office:
Still missing: Huge white board, iMac, a bit of decoration.
# Step 0: Convert the Certificate to PEM format $ openssl x509 -inform der -in certificate.cer -out certificate.pem # Step 0.5: Make sure there is only 1 Certificate in the File $ grep 'BEGIN.* CERTIFICATE' ProxyCA.pem | wc -l # should output `1` # Step 1: Verify it's the correct Certificate $ openssl x509 -noout -fingerprint -in certificate.pem # Step 2: Copy the File to /etc/ssl/certs $ # Do I really have to explain that? If you can't do that on your own you probably shouldn't be installing CA-Certificates... # Step 3: Find out the Hash of your Cert $ openssl x509 -noout -hash -in certificate.pem # Step 4: Inside /etc/ssl/certs, link your certificate to "hash.0" $ ln -s certificate.crt `openssl x509 -hash -noout -in certificate.crt`.0
Because the solutions I googled didn’t work:
$ for g in `gem list --no-versions`; do gem uninstall --all --ignore-dependencies --executables $g done
I’m currently playing around with Rails Apps in virtual environments. To get started, i threw together a little script.
Update: Available as Gist now. Found some stupid things. Will update as needed.
Update 2: Added rbenv-gemsets for simple gemset-Functionality. Added libxml/libxslt for nokogiri