3
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

apt-getって何?

Posted at

apt-getは、Debianとその派生物(Ubuntu、Linux Mintなど)で使用されるコマンドラインツールで、パッケージの管理を行うために使用されます。

apt-getを使用すると、ソフトウェアパッケージを検索、インストール、更新、削除することができます。また、依存関係の解決やパッケージのバージョン管理などの機能も提供されます。

例えば、以下のようなコマンドを実行することで、Apacheウェブサーバーをインストールすることができます。

sudo apt-get update
sudo apt-get install apache2

最初のコマンドは、パッケージリストを最新の状態に更新し、2番目のコマンドはApacheウェブサーバーのパッケージをインストールします。

apt-getを使用することで、複数のパッケージを一括でインストールすることもできます。また、パッケージの検索や情報の確認などの機能も提供されます。

また、よく上記コマンド順のように apt-get update後にapt-get install~するコードを見ることは多々あると思います。それはapt-get install~から始まると、build中にエラーが発生する可能性があるため、apt-get updateしてからinstallした方がおすすめです

3
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?