Ubuntu下如何查找、安装你想安装的软件

1、更新软件数据库:

sudo apt-get update

2、查找你想要的软件:

sudo apt-cache search  softwareName

3、从查找的结果中找到你想安装的软件,然后:

sudo apt-get install softwareNameYouFound

 


备注:斜体字为命令的参数,需要根据用户需要安装的软件名称而改变。

---------------------------------------------------------

可以用命令:

sudo apt-cache -h

来得到更多信息。

 

---------------------------------------------------------

 

例如:

我想安装eclipse,但我不知道是否能通过apt-get命令来安装,如下操作:

1、sudo apt-get update.

2、sudo apt-cache search eclipse

这时,可以看到有

Ubuntu下如何查找、安装你想安装的软件_第1张图片

 

3、这时可以用以下命令安装eclipse:

sudo apt-get install eclipse

 

 

---end

 

你可能感兴趣的:(eclipse,数据库,ubuntu,search)