How to Unzip a .zip File Using Command Line in Linux ----------------------------------------------------- Step 1: Open Terminal You can press Ctrl + Alt + T on your keyboard to open the terminal. Step 2: Navigate to the folder where your ZIP file is located Use the 'cd' command to go to the correct directory. For example: cd Downloads Step 3: Run the unzip command Type the following command and press Enter: unzip filename.zip (Replace 'filename.zip' with the actual name of your ZIP file.) Step 4: Done! Your files will be extracted in the same folder. Optional: If the unzip command is not available, install it by running: sudo apt install unzip That's it!