Рет қаралды 453
How To Install Root Certificate Authority (CA) in Linux
Certificate authorities (CAs) are critical in securing online communications and identities.
A certificate authority is a company or organization that acts to validate the identities of entities (such as websites, email addresses, companies, or individual persons) and bind them to cryptographic keys through the issuance of electronic documents known as digital certificates.
A digital certificate provides:
Authentication, by serving as a credential to validate the identity of the entity that it is issued to.
Encryption, for secure communication over insecure networks such as the internet.
Integrity of documents signed with the certificate so that they cannot be altered by a third party in transit.
These certificates allow secure, encrypted communication between two parties through public key cryptography.
Given a CA certificate file foo.crt, follow these steps to install it on Linux:
Create a directory for extra CA certificates in /usr/local/share/ca-certificates:
sudo mkdir /usr/local/share/ca-certificates/extra
Copy the CA .crt file to this directory:
sudo cp foo.crt /usr/local/share/ca-certificates/extra/foo.crt
Let Linux add the .crt file's path relative to /usr/local/share/ca-certificates to /etc/ca-certificates.conf:
sudo dpkg-reconfigure ca-certificates
In case of a .pem file on Ubuntu, it must first be converted to a .crt file:
openssl x509 -in foo.pem -inform PEM -out foo.crt
Or a .cer file can be converted to a .crt file:
openssl x509 -inform DER -in foo.cer -out foo.crt
🌸 Support channel & make donation :
www.paypal.me/...
🌸 Subscribe for more videos :
KZbin: / aminosninatos
🌸 Follow me On Social Media
Facebook : / aminosninatos
***********************************************************************
🌸 Windows Subsystem for Linux WSL2 Commands
• Windows Subsystem for ...
🌸 This Little Trick Will Prevent You From Messing Up With Your Application Database
• This Little Trick Will...
🌸 PIP The Package Manager for Python
• PIP The Package Manage...
🌸 How to read Crystal Disk Info
• How to read Crystal Di...
🌸 How To Monitor the Health of Your Hard Drive in Linux using SMART
www.youtube.co....
🌸 Linux iotop: Monitor your disk Input/Output
www.youtube.co....
🌸 How To use the “du” (Disk Usage) Command in Linux
www.youtube.co....
🌸 How To View Manipulate System Logs In Linux Using Journalctl Command
• How To View Manipulate...
🌸 How To Sync And Backup Files In Linux Using Rsync Command
• How To Sync And Backup...
🌸 Linux cURL Command Tips and Tricks
• Linux cURL Command Tip...
🌸 Linux tail and multitail commands
• Linux tail and multita...
🌸 Linux How To view Log Files
• Linux How To view Log ...
🌸 How To use the History Command On Linux
• How To use the History...
🌸 Tips and Tricks How To manipulate Text Files on Linux
• Tips and Tricks How To...
🌸 How to Archive, Compress and Extract Files Using the tar Command on Linux
• How to Archive, Compre...
🌸 Linux - How to split larger files into smaller parts
• Linux - How to split l...
🌸 Linux commands : Top
• Linux commands : Top
***********************************************************************
#sslcertificate #certificate #linux