web-dev-qa-db-ja.com

FedoraでUbuntuのSudo apt-getアップデートの同様のコマンドは何ですか?

Sudo apt-get update Ubuntuですべてのアップデートを簡単にインストールします。はSudo dnf update Fedora 25でこれに似ていますか?

5
alhelal

apt-get update(またはapt update)として、dnf check-updateはローカルリポジトリキャッシュを更新します。

Debian/Ubuntuでの(一般的な)dnf updateの同等物は、apt updateapt upgradeおよびapt autoremoveの組み合わせです。

パッケージ管理ツールapt、yum、dnf、pkgの間には素晴らしい比較があります。

13
ben

dnfまたはyumは、使用時にパッケージリストを自動的に更新しています... # dnf install package

dnf update:パッケージを利用可能な最新バージョンに更新します。お気に入り apt-get upgrade しましょう。

3
Knud Larsen

fedoraproject.org/wiki/から:

buntuコマンド--- Fedoraコマンド

apt-get update --- dnf check-updateトランザクションを実行する前にdnfがキャッシュを自動的に更新するため、これを行う必要はありません

apt-get upgrade --- dnf upgrade

apt-get install --- dnf install

apt-get remove --- dnf remove

apt-getパージ--- N/A

apt-cache search --- dnf search

2
Kepler