5.ソフトウェア管理

記事のディレクトリ


Linuxには、DEBパッケージとRPMパッケージの2種類のソフトウェアインストールパッケージがあります。

DEBパッケージ

一般的にubuntuで使用され、コマンドaptitude管理ソフトウェアを入力できます。aptを使用して、ソフトウェアのインストール、更新、構成などを行います。

sudo apt-get update 		#get the latest package versions
sudo apt-search vsftpd 		#find package by key word(vsftpd)
sudo apt-cache show vsftpd  #display information about a package
sudo apt-get install vsftpd #install the vsftpd package
sudo apt-get upgrade 		#update installed packages
sudo apt-cache pkgnames 	#list all packages that are in

おすすめ

転載: blog.csdn.net/qq_45467083/article/details/109828346