ソースリストに何か問題があると思います。
apt-get update
が機能しておらず、何もインストールできません。すべてのパッケージが見つかりません。これが私の端末からの出力で、役立つことを願っています。
bleakley
/etc/apt
≈:≈ ls
apt.conf.d sources.list.d trustdb.gpg trusted.gpg.d
preferences.d sources.list.save trusted.gpg trusted.gpg~
cat sources.list.save
読めないバイナリ出力をください
bleakley
/etc/apt/sources.list.d
≈:≈ ls
atareao-atareao-trusty.list.save spotify.list.save
bleakley
/etc/apt/sources.list.d
≈:≈ cat atareao-atareao-trusty.list.save
cat: atareao-atareao-trusty.list.save: Input/output error
spotify.list
バイナリでもあります。
source.list
を取得するにはどうすればよいですか。 順番に戻しますか?
承認された回答:
-
不要なファイルを削除する
sudo rm /etc/apt/*.save sudo rm /etc/apt/sources.list.d/*.save
-
新しい
sources.list
を作成しますsudo apt-add-repository "deb http://archive.ubuntu.com/ubuntu $(lsb_release -sc)-backports main universe multiverse restricted" sudo apt-add-repository "deb http://archive.ubuntu.com/ubuntu $(lsb_release -sc)-updates main universe multiverse restricted" sudo apt-add-repository "deb http://archive.ubuntu.com/ubuntu $(lsb_release -sc)-security main multiverse restricted universe" sudo apt-add-repository "deb http://archive.ubuntu.com/ubuntu $(lsb_release -sc) main multiverse restricted universe"
-
更新してアップグレード
sudo apt-get update sudo apt-get dist-upgrade