CentOS Basic Configuration
The CentOS Project is a community-driven free software effort focused on delivering a robust open source ecosystem. For users, CentOS offers a…
Basic Linux Commands
1. Basic Commands man : manualls :List Directory Contentspwd :print working directorycd :change directorymkdir :Make directorycp :Copymv :Movefind and locate…
Linux : find big file in the all directories
1. Juniper Firewall find . -type f -size +10000 -exec ls -lh {} ; Sample output: [email protected]% find .…
Use your ssh key to encrypt / decrypt files
Create a file:echo ‘This is a sekret’ >/tmp/msg.txt Export public key:openssl rsa -in ~/private.pem -out /tmp/public.pub -outform PEM -pubout Encrypt…