web-dev-qa-db-ja.com

apt-getはopenssh-serverを見つけることができません

Ubuntu 14.04がプリロードされたDellを受け取りましたが、sshできず、openssh-serverをインストールできません。 apt-getの設定が間違っていると思いますが、それを微調整した経験はありません。たぶん間違ったリポジトリですか?私の手がかりはありますか?

# lsb_release -a

No LSB modules are available.
Distributor ID: Ubuntu
Description:    Ubuntu 14.04.2 LTS
Release:    14.04
Codename:   trusty

# apt-get install rcs openssh-server

Reading package lists... Done
Building dependency tree       
Reading state information... Done
Package openssh-server is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source

E: Unable to locate package rcs
E: Package 'openssh-server' has no installation candidate

# cat /etc/apt/sources.list.d/*

deb http://Dell.archive.canonical.com/updates/ trusty-Dell public
deb-src http://Dell.archive.canonical.com/updates/ trusty-Dell public
deb http://Dell.archive.canonical.com/updates/ trusty-Dell-ws-vivid-skl public
deb-src http://Dell.archive.canonical.com/updates/ trusty-Dell-ws-vivid-skl public
deb http://oem.archive.canonical.com/updates/ trusty-oem public
deb-src http://oem.archive.canonical.com/updates/ trusty-oem public
deb http://oem.archive.canonical.com/updates/ trusty-oem-sp1 public
deb-src http://oem.archive.canonical.com/updates/ trusty-oem-sp1 public

cat /etc/apt/sources.list

ls /etc/apt/sources.list.d

trusty-Dell.list trusty-Dell-ws-vivid-skl.list trusty-oem.list trusty-oem-sp1.list

2
Thomas Burns

「ソフトウェアと更新」GUIパネルを使用します。 [ubuntu software]タブで、[ソースコード]以外のすべてをチェックします。 「アップデート」タブで、「重要なセキュリティアップデート」と「推奨アップデート」をチェックします。パネルを閉じて、変更を保存します。次にapt-getを再試行すると、動作します。

1
Thomas Burns