• Grow with Google Certs?

    IT Discussion
    24
    0 Votes
    24 Posts
    2k Views
    scottalanmillerS

    @Dashrender said in Grow with Google Certs?:

    @scottalanmiller said in Grow with Google Certs?:

    @IRJ said in Grow with Google Certs?:

    @flaxking said in Grow with Google Certs?:

    Sure, it would help you get a job on our customer facing helpdesk

    Yeah and that's about it. If you already work in any IT capacity, this won't gain you anything.

    Like @Dashrender said train for the job you want, not have

    I keep trying to train to be a porn star, but no one lets me.

    No one lets you what? train? LOL

    Exactly

  • 0 Votes
    7 Posts
    1k Views
    scottalanmillerS

    Found this which didn't help, but could be a useful reference in the future...

    OpenSSL Convert PEM
    Convert PEM to DER

    openssl x509 -outform der -in certificate.pem -out certificate.der

    Convert PEM to P7B

    openssl crl2pkcs7 -nocrl -certfile certificate.cer -out certificate.p7b -certfile CACert.cer

    Convert PEM to PFX

    openssl pkcs12 -export -out certificate.pfx -inkey privateKey.key -in certificate.crt -certfile CACert.crt

    OpenSSL Convert DER
    Convert DER to PEM

    openssl x509 -inform der -in certificate.cer -out certificate.pem

    OpenSSL Convert P7B
    Convert P7B to PEM

    openssl pkcs7 -print_certs -in certificate.p7b -out certificate.cer

    Convert P7B to PFX

    openssl pkcs7 -print_certs -in certificate.p7b -out certificate.cer

    openssl pkcs12 -export -in certificate.cer -inkey privateKey.key -out certificate.pfx -certfile CACert.cer

    OpenSSL Convert PFX
    Convert PFX to PEM

    openssl pkcs12 -in certificate.pfx -out certificate.cer -nodes

  • SSH-Copy-ID for accessing Linux Servers from Windows

    Solved IT Discussion
    3
    1 Votes
    3 Posts
    7k Views
    DustinB3403D

    Okay so figured it out with this guide.

    From Windows administrative Powershell

    ssh-keygen
    type C:\Users\<username>\.ssh\id_rsa.pub | ssh user@linuxserver 'cat >> .ssh/authorized_keys'

    Exit administrative Powershell

    Open Powershell

    ssh user@linuxserver

    Logged in.