I want to unzip my file on server, I have already uploaded file from FTP.
- 1 like
- 8 comments
Dhananjay Kumar |31 Mar at 11:03
I want to unzip my file on server, I have already uploaded file from FTP.
Immwit31 Mar at 11:03
I have simply use the below command :
unzip zip_file_name.zip
But before running must be installed UNZIP on a server, if not then below command :
sudo apt-get install unzip
after installing you able to run unzip zip_file_name.zip.
Also before running must be you reached to the directory where zip_file_name.zip exist.
Like in x/y/z/zip_file_name.zip file exit then run
$ cd /x/y/z
$ unzip zip_file_name.zip