About 1,780,000 results
Open links in new tab
  1. How to unzip a zip file from the Terminal? - Ask Ubuntu

    Oct 13, 2017 · If the unzip command isn't already installed on your system (use which unzip to check), then run: sudo apt-get install unzip After installing the unzip utility, if you want to extract to a …

  2. How to Zip and Unzip a directory and its files in Linux

    Aug 13, 2015 · To unzip you simply use unzip my_arch.zip Zip stores relative path names by default. There are several parameter-options available for zip. For that read: the manual (man zip). For a …

  3. What command do I need to unzip/extract a .tar.gz file?

    unzip: cannot find zipfile directory in one of community_images.tar.gz or community_images.tar.gz.zip, and cannot find community_images.tar.gz.ZIP, period. What command do I need to use to extract all …

  4. 7-Zip and unzipping from command line - Super User

    I am looking to use the command line 7-Zip to unzip a folder. I have a file, say example.zip and want to unzip the contents of the file into a folder called example. What are the commands I need ...

  5. How to extract a zip file to a specific folder? - Ask Ubuntu

    Sep 5, 2014 · unzip /path/to/file.zip -d temp_for_zip_extract You should now have the contents of your zip file temp_for_zip_extract and can copy them into the desired folder.

  6. Unzip specific directory without creating top directory

    Mar 12, 2017 · $ cd abc $ unzip abc.zip -d ../ [-d exdir] An optional directory to which to extract files. By default, all files and subdirectories are recreated in the current directory; the -d option allows …

  7. tar - Extract 7z files with standard Linux tools? - Super User

    I know that you can extract .7z files with 7-zip. Is there another standard Linux program that can do this? Maybe one of these tar bzip2 xz gzip I will add that bsdtar can do this, but is not avai...

  8. How to unzip .tgz file using the terminal? [duplicate]

    Jul 19, 2014 · Open the terminal and use the cd command to change directories to the directory where the mongodb-linux-x86_64-2.6.3.tgz file is located and the run the following command:

  9. command line - How to unzip ".zip" files? - Ask Ubuntu

    May 21, 2017 · I looked for an answer to unzip .zip files and I haven't found a helpful answer, nor a recent one. Some people said to install the unzip command, I attempt to do so and something goes …

  10. Linux unzip command: Option to force overwrite? - Super User

    Jun 9, 2014 · I am writing a shell script that unzips a ZIP file into an existing hierarchy of files, potentially overwriting some of the files. The problem is that the unzip command asks for confirmation: repl...