FedoraCore3でのyumコマンド
お世話になります。
1日調べて解決できなかったので、ここで質問させてください。
現在サーバとしてFedoraCore3を使っています。
telnet-serverをインストールしようとyum install hogeと叩いたのですが
エラーもなにも帰ってこない状態で応答がありません。
^Cをするとプロンプトの画面に戻りますが。。
念のためyum自体を再インストールしてみましたが変わりません。
原因として何か考えられるでしょうか?
参考として、yumの設定ファイルを以下に載せます。
※ /etc/yum.repos.d/fedora.repo
[base]
name=Fedora Core $releasever - $basearch - Base
#baseurl=http://download.fedora.redhat.com/pub/fedora/linux/core/$releasever/$basearch/os/
baseurl=ftp://ftp.riken.go.jp/pub/Linux/fedora/core/updates/3/i386
#mirrorlist=http://fedora.redhat.com/download/mirrors/fedora-core-$releasever
mirrorlist=file:///etc/yum.repos.d/local-base
enabled=1
gpgcheck=1
※ /etc/yum.repos.d/fedora-updates.repo
[updates-released]
name=Fedora Core $releasever - $basearch - Released Updates
#baseurl=http://download.fedora.redhat.com/pub/fedora/linux/core/updates/testing/$releasever/$basearch/
#mirrorlist=http://fedora.redhat.com/download/mirrors/updates-testing-fc$releasever
mirrorlist=file:///etc/yum.repos.d/local-updates
enabled=1
gpgcheck=1
※ /etc/yum.conf
[main]
cachedir=/var/cache/yum
debuglevel=2
logfile=/var/log/yum.log
pkgpolicy=newest
distroverpkg=redhat-release
tolerant=1
exactarch=1
retries=20
obsoletes=1
gpgcheck=1
※ /usr/bin/yum
#!/usr/bin/python
import sys
sys.path.insert(0, '/usr/share/yum-cli')
import yummain
try:
yummain.main(sys.argv[1:])
except KeyboardInterrupt, e:
print >> sys.stderr, "\n\nExiting on user cancel."
sys.exit(1)
お手数をおかけしますがよろしくお願いします。
お礼
http://www.squarebox.co.uk/cgi-squarebox/manServer/yum.8 http://wiki.linux.duke.edu/YumFaq
補足
yum再インストールで解決