M Mole New member Joined Oct 26, 2007 Messages 1 Oct 26, 2007 #1 how do you extract zip's? Example: yoursite.com/yourfile.zip
C czotos Verified User Joined Oct 19, 2007 Messages 208 Oct 27, 2007 #2 Login to your system via SSH... 1) wget http://www.yoursite.com/yourfile.zip 2) unzip yourfile.zip 3) Done! P.S. If you do not have the 'unzip' command, you can install it using 'apt-get install unzip' if you're on a Debian-based system.
Login to your system via SSH... 1) wget http://www.yoursite.com/yourfile.zip 2) unzip yourfile.zip 3) Done! P.S. If you do not have the 'unzip' command, you can install it using 'apt-get install unzip' if you're on a Debian-based system.
agnivo007 Verified User Joined Nov 25, 2006 Messages 245 Location India Oct 27, 2007 #3 On a redhat based system, "yum install unzip" will do