インストールエラー


1

私はyumこれを取得せずに私のサーバーでコマンドを実行することはできません。

CRITICAL:yum.cli:Config Error: Error accessing file for config file:///etc/yum.conf

これは私のyum.confように見えるものです:

# This is the fedorafaq.org yum.conf for Fedora Core 5.
#
# Note that you also need the rest of the configuration
# as described at http://www.fedorafaq.org/#yumconf

[main]
cachedir=/var/cache/yum
keepcache=0
debuglevel=2
logfile=/var/log/yum.log
exactarch=1
obsoletes=1
gpgcheck=1
plugins=1
metadata_expire=1800

# PUT YOUR REPOS HERE OR IN separate files named file.repo
# in /etc/yum.repos.d

これは私のyum.repos.dように見えるものです:

fedora.repo
fedora-updates.repo
fedora-updates-testing.repo

それらのファイルに対するアクセス許可は0666であり、それが私を許可するものではないでしょう。 root:root


もしあなたがFedora Core 5を実行しているなら、アップグレードする時が来ました
Simon Sheehan

回答:


1

ファイルをrootに変更できない場合は、次のようにします。そしてあなたはrootです。その場合、最も可能性が高いのは、不変パラメータがファイルに設定されていることです。ファイルの属性を確認して変更します。

# lsattr /etc/yum.conf
----i--------e-- /etc/yum.conf 

これが前のコマンドからの出力である場合は、次のようにしてください。

# chattr -i /etc/yum.conf
# lsattr /etc/yum.conf
-------------e-- /etc/yum.conf
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.