If you want to unzip a zip file in Ubuntu you should follow these steps.
First of all install the unzip application.
sudo apt-get install unzip
Then to unzip the file
sudo unzip myfile.zip
Or if you want to unzip to a given folder
sudo unzip myfile.zip -d destination_folder
I hope this helps.