How to Open a Zip File in Unix

How to Open a Zip File in Unix thumbnail
How to Open a Zip File in Unix

Opening Zip files in Unix is a multi-step process. Commands entered at the command line in Unix are used to extract zipped files into a directory. You can then access these files later for use with the appropriate application.

Things You'll Need

  • A computer running Unix or Linux.
Show More

Instructions

    • 1

      Open the Terminal.

    • 2

      Type "unzip filename.zip -d /tmp" at the command prompt.

      This command will extract all the files contained within the zip file into the "/tmp" directory.

    • 3

      Type "cd/tmp" at the command prompt.

      Use this command to change into the temporary directory to view the extracted zip files.

    • 4

      Open the appropriate application and navigate within the program to the "temp folder" to work with the extracted files.

Tips & Warnings

  • The easiest method is to extract zip files to the "/tmp" directory and move them to another location after extraction.

  • If you do not use the /tmp directory as your destination directory, make a destination directory for your extracted files.

  • Substitute " filename.zip" for the actual name of your zip file.

Related Searches:

References

  • Photo Credit notebook computer detail image by davidcrehner from Fotolia.com

Comments

You May Also Like

  • How to Create a Zip File in Unix

    Most Unix systems have historically used GNUzip and compress instead of zip to create compressed file archives. Meanwhile, zip is the most...

  • How to View ZIP Files in Unix

    ZIP files are common in the Microsoft Windows world because they provide the ability to compress a number of files into a...

  • How to Zip Multiple Files in Unix

    The "ZIP" utility provides the ability to compress files and also group a number of files together into a single ".zip" file...

  • How to Unzip a ZIP File in Unix

    The ZIP file format is a data compression and archive format. A ZIP file contains one or more files that have been...

  • How to Create a File in Unix

    Creating a file is very easy to do in Unix. Many Unix users make programs that create zero length files on the...

  • How to Open a ZIP File

    ZIP files are basically compressed folders that contain one or more individual files which have been compressed to reduce file size. ZIP...

  • How to Extract Zip Files in Unix

    Windows zip files can be extracted in Unix using the unzip command. Unix is a command line based operating system with different...

  • How to Open a PDF File in Unix

    Portable Document Format (PDF) files can be easily shared across different platforms and applications. Adobe Systems created the format and currently produces...

  • How to Open Zip Files on Vista

    In the past, you needed a special program, such as WinZip, to open \"zipped\" (compressed) folders. But with Windows Vista, the function...

Related Ads

Featured