M HYPE SPLASH
// general

Shows "unable to locate package unzip" error

By Andrew Adams

I have installed Ubuntu 12.04 server , shows

E:unable to locate the package unzip

the above error is also shown, if I try to install packages also. Can any one help me out to get out from this error.

6

2 Answers

Type sudo apt-get update to get the lists updated.

If its the first time you are running this command, it would download something like 20 MB of data.

Then type sudo apt-get upgrade to install the updates, if you want.

You can avoid this step, if you want to install updates later.

After first step finishes successfully, you should be able to install the package unzip by typing sudo apt-get install unzip.

0

I just had the same problem on a fresh Rack space install of 12.04. The solution:

sudo apt-get install zip -y

This installed both zip and unzip.

2

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy