Skip to main content

Posts

Showing posts with the label command line tools

UDEMY free courses on Linux

  The below courses are free courses available on UDEMY.      1. Intro to Linux https://www.udemy.com/course/intro-to-linux/ 2. Intro to Linux Shell Scripting (Free course) https://www.udemy.com/course/linux-shell-scripting-free/ 3. Linux for Beginners: Crash Course https://www.udemy.com/course/linux-for-beginners-crash-course/ 4. Learn The Linux Command Line: Basic Commands https://www.udemy.com/course/command-line/ 5. Linux Network Troubleshooting Commands (CCNA/DevOps) https://www.udemy.com/course/linux-network-troubleshooting-commands-devops/ 6. Superb Linux Bootcamp – Become Certified Linux Professional https://www.udemy.com/course/superb-linux-bootcamp-become-certified-linux-professional/ 7. Linux Command Line for Beginners https://www.udemy.com/course/linux-command-line-basics/ 8. Introduction to Linux : crash course – 2025 https://www.udemy.com/course/introduction-to-linux-crash-course/ 9. Linux Tutorials and Projects (Free) https://www.udemy.com/course/linux...

How to decrypt the Filevault encrypted volume using Recovery HD ?

There might be a time where you want decrypt the FileVault encrypted mac, but you are facing issues in logging into Mac to perform decryption using system preferences. In such cases the following steps will help you in decrypting the disk using Recovery HD. Reboot the Mac, Go to recovery HD partition of the system. ( To start your computer from Recovery, restart your Mac and hold down the Command and R keys at startup.) Open Terminal application from Utilities -> Application.  First will need to identify the Logical Volume UUID of the encrypted drive using the  diskutil corestorage list  command:           diskutil corestorage list         4.   Once you have the UUID of the logical volume as shown in above picture, you can then either             unlock or decrypt the encrypted volume using the following commands.       a) Using ...

plutil - a very usefull command line tool on mac to edit encoded plist files

plutil - is a very useful tool to decode and encode the plist files on OSX system. The tool can be used decode the plist file to human readable format in Terminal which would help user to edit the plist files in terminal using vim or nano etc. plutil -convert xml1 [path_to_the_plist_file] The above command will decode the plist file to a readable xml format in command line. plutil -convert binary1 [path_to_the_plist_file] The above command can be used encode back the file to original binary format from command line.