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?

rpm

Last updated at Posted at 2024-10-30

/bin/xxxを提供しているパッケージを調べる
rpm -q --whatprovide /bin/xxx
rpm -qf /bin/xxx
前者は未インストール、後者はインストール済みの場合

vlcがインストールされているか確認
rpm -q vlc
rpm -qi vlc 詳細

依存関係確認
rpm -qRp vlc
rpm -qp --requires vlc

インストール
rpm --install vlc
rpm --install --nodeps vlc

vlcに含まれるファイル確認
rpm -ql vlc
rpm -q --list vlc

更新
rpm -U vlc
rpm --upgrade vlc
rpm -F vlc
rpm --freshen vlc

削除
rpm --erase 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?