1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

apt

Posted at

aptのパッケージのインストール方法を時系列に整理する

vlを含むパッケージを検索。
ここでvlcパッケージが検索される
apt search vl

vlcのパッケージ情報を事前に調べる。
apt show vlc
apt showpkg vlc
apt depends vlc vlcが依存するモジュール

公開されているパッケージすべてを確認
apt list

インストール済みのパッケージを確認
apt list --installed

vlcのみ確認
apt list vlc

vlcをインストール
apt install vlc

インストール済みのパッケージを確認
apt list --installed

ここから更新。
更新可能なパッケージ一覧を取得する
apt list --upgradable

パッケージ情報をダウンロード、最新化
apt update

パッケージをアップグレードする
apt upgrade

パッケージの削除
apt remove vlc
apt purge vlc

1
0
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
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?