How to install apt-get for Ubuntu 10.04?

I am trying to use apt-get on AWS EC2 with Ubuntu 10.04, but got the following error.

sudo: apt-get: command not found

So I will need to install apt-get. Is there a tutorial for this? I did a search on the Internet, but only found an installation guide for other Linux releases. Thanks.

+4
source share
1 answer

I think you are using the command incorrectly! apt-get is built into every version of Ubuntu. If, for example, you want to install vim, you would type

sudo apt-get install vim

To check the documentation like apt-get:

man apt-get

-4
source

Source: https://habr.com/ru/post/1396013/


All Articles