• Do not post forums in any language other than English. Moreover, political, religious and adult content cannot be posted. Requested not to spamming posts. Such posts will be deleted very soon.

How to unzip a zip file on Ubuntu Server?

M

Matthew

Guest
Recently I uploaded a zip file on Ubuntu Server. But I am unable to unzip that zip file.
Could you please provide the process for unzipping that file?
 

SeoToolsbuz

New member
@Matthew , It's a simple process to do this. Let's follow the below process:

Step 1: First connect your Ubuntu server via SSH and Then install unzip by the below command:
Code:
sudo apt install unzip

Step 2: Then show the file location by the below command:
Code:
sudo -s

Step 3: Now back to the home directory by the below command:
Code:
cd ..

Step 4: Then check your next folder by below command:
Code:
ls

i) If you want to go to ezyforum folder then flow the below command:
Code:
cd ezyforum

ii) Again check your next folder by ls command and if the next folder will be web, then follow the below command:
Code:
cd web

iii) Following this process again and again, once reached your targeted zip file location.

Step 5: This is the final process to unzip that zip file. For this follow the below command:
Code:
unzip backup.zip
[Here backup file is the zip file]

Let me know if any questions.

Thanks.
 
Top