How to Unzip Files in Linux

Part 1 of 2:

Unzipping One Folder

  1. How to Unzip Files in Linux Picture 1
    Locate your zipped folder. If it's in the Documents directory, for example, you'll open your Documents folder.
  2. How to Unzip Files in Linux Picture 2
    Note the name of the zipped folder. You'll need to enter the zipped folder's name exactly as it appears on the folder here.
    1. Remember to take into account pacing and capitalization.
  3. How to Unzip Files in Linux Picture 3
    Click Menu. It's in the bottom-left corner of the screen.
  4. How to Unzip Files in Linux Picture 4
    Click the Terminal icon. This icon is a black box with a white ">_" on it. You should see Terminal either in the bar on the left side of the Menu window, or in the group of programs listed in the Menu window.
    1. You can also search for Terminal by clicking the search bar at the top of the Menu window and then typing in terminal.
  5. How to Unzip Files in Linux Picture 5
    Type unzip filename.zip into Terminal. You'll replace the "filename" part of the command with your zipped folder's name.
    1. For example, if your folder is named "BaNaNa", you'd type unzip BaNaNa.zip into Terminal.
  6. How to Unzip Files in Linux Picture 6
    Press Enter. Doing so will run your command and unzip your selected folder.
Part 2 of 2:

Unzipping All Zipped Folders in a Folder

  1. How to Unzip Files in Linux Picture 7
    Navigate to the zipped folders' directory. To do this, you'll simply open the folder in which your zipped folders are stored.
    1. Attempting to run the "unzip" command on all folders from you current directory could result in accidentally unzipping folders you didn't mean to unzip.
  2. How to Unzip Files in Linux Picture 8
    Type pwd into Terminal and press Enter. This will run the "pwd" command, which will display your current directory's name.[1]
    1. This step is simply to ensure that you're in the right place before unzipping.
  3. How to Unzip Files in Linux Picture 9
    Type unzip "*.zip" into Terminal. This command searches for any folders in your current directory with the ".zip" file extension.
    1. Placing quotation marks around the *.zip part of this command contains the command to the current directory.
  4. How to Unzip Files in Linux Picture 10
    Press Enter. Doing so will run the command and unzip your folders. You'll be able to view their contents in the directory in which they are located.
    1. If this command doesn't work, try instead typing unzip /*zip into Terminal.
3.5 ★ | 2 Vote

May be interested

  • How to extract multiple files on Windows 10How to extract multiple files on Windows 10
    application zip open zip all zip tar unrar unzip will extract multiple files simultaneously on windows 10.
  • How to compress and decompress files on iOSHow to compress and decompress files on iOS
    in this article, you will join tipsmake to find out how the file decompression feature works, but first you must update to ios 13 or later!
  • How to Unzip Files on WindowsHow to Unzip Files on Windows
    many files that come downloaded from the internet are compressed to save space and bandwidth. compressed files make it easy to send multiple files at once, and there are multiple forms of compression that are commonly used. windows...
  • How to use pandoc to convert files on LinuxHow to use pandoc to convert files on Linux
    you can use pandoc on linux to convert over 40 different file formats. you can also use it to create a simple docs-as-code system by writing to markdown, saving with git and exporting it in any supported format.
  • How to create new files in LinuxHow to create new files in Linux
    there are a number of different linux applications and commands that will create new files for you, even without launching the application. the method you use will depend on your purpose for the file. let's take a look at the options so you can see which one is most useful for you!
  • How to Create ISO Files on LinuxHow to Create ISO Files on Linux
    today's tipsmake will show you how to turn multiple files into one iso file on a linux computer. you need to use the linux command line to do it.
  • How to Find Files in LinuxHow to Find Files in Linux
    if you don't know how, finding files in linux can be quite difficult. here, the best way is to use a few different terminal commands. they are much more powerful than the simple search features on other operating systems, and when you know how to use them well, you will have complete control over your files.
  • How to copy and rename files in LinuxHow to copy and rename files in Linux
    there are more ways to copy and rename files on linux than just cp and mv. try some commands and other ways suggested below.
  • How to extract a file or folder from a TAR or TAR.GZ fileHow to extract a file or folder from a TAR or TAR.GZ file
    a tarball (tar or tar.gz) is a collection of files grouped together as a single archive that makes it easy to store and transfer large numbers of files locally or over the internet. whenever you need files, you just need to unzip the archive.
  • How to synchronize files and folders on LinuxHow to synchronize files and folders on Linux
    linux administrators must keep folders synced on a regular basis. there are two simple use scenarios for synchronizing these files and folders.