APTを使用してパッケージをインストールしようとすると、「パッケージが見つかりません」

APTを使用してパッケージをインストールしようとすると、「パッケージが見つかりません」

パッケージが見つかりませんエラーのため、「sudo」以外の項目をインストールできません。誰にもアイデアはありますか?主にSteamやleafpadなどの他のアプリをインストールしようとすると、ほとんどすべての問題が解決されたため、ここに投稿します.私はUbuntuを使っていましたが、最近試してみるためにDebianに切り替えたことに注意してください。

より多くの情報が必要な場合は、コメントを残していただきありがとうございます。しかし、他の同様の質問をすべて確認しましたが、そのうち何も役に立ちませんでした。

Debian の提示 8.6

間違い:

$ sudo apt-get install <package>
Reading package lists... Done
Building dependency tree       
Reading state information... Done
E: Unable to locate package <package>

Sources.listファイル:#

# deb cdrom:[Debian GNU/Linux 8.6.0 _Jessie_ - Official amd64 DVD     Binary-1 20160917-14:25]/ jessie contrib main

#deb cdrom:[Debian GNU/Linux 8.6.0 _Jessie_ - Official amd64 DVD Binary-1     20160917-14:25]/ jessie contrib main

deb http://security.debian.org/ jessie/updates main contrib non-free
deb-src http://security.debian.org/ jessie/updates main contrib non-free

# jessie-updates, previously known as 'volatile'
deb http://ftp.au.debian.org/debian/ jessie-updates main contrib non-free
deb-src http://ftp.au.debian.org/debian/ jessie-updates main contrib non-free

ベストアンサー1

source.listファイルが見つからないようです。 /etc/aptに移動して、source.listという新しいファイルを作成します。

私はあなたがDebian Stableを使用していると仮定し、次の内容を入力します。

deb http://httpredir.debian.org/debian/ jessie main non-free contrib
deb http://httpredir.debian.org/debian/ jessie-updates main contrib non-free
deb http://security.debian.org/ jessie/updates main contrib non-free

deb-src http://httpredir.debian.org/debian/ jessie main non-free contrib
deb-src http://httpredir.debian.org/debian/ jessie-updates main contrib non-free
deb-src http://security.debian.org/ jessie/updates main contrib non-free

後で Debian テスト(最新のアプリケーション、カーネルなど)を試すには、次のようにこのファイルにテストストア行を追加する必要があります。

deb http://httpredir.debian.org/debian/ testing main non-free contrib
deb http://httpredir.debian.org/debian/ testing-updates main contrib non-free
deb http://security.debian.org/ testing/updates main contrib non-free

deb-src http://httpredir.debian.org/debian/ testing main non-free contrib
deb-src http://httpredir.debian.org/debian/ testing-updates main contrib non-free
deb-src http://security.debian.org/ testing/updates main contrib non-free

比較のために/etc/aptフォルダを見てください。

root@debian:/home/gv/Desktop/PythonTests# ls -al /etc/apt 
total 56
drwxr-xr-x   6 root root  4096 Jan  4 19:16 .
drwxr-xr-x 131 root root 12288 Jan  4 19:17 ..
drwxr-xr-x   2 root root  4096 Jan  5 00:38 apt.conf.d
-rw-r--r--   1 root root    99 Dec 27 08:42 listchanges.conf
-rw-r--r--   1 root root   218 Jan  1 21:53 preferences
drwxr-xr-x   2 root root  4096 Mar 12  2016 preferences.d
-rw-r--r--   1 root root  1558 Jan  1 22:00 sources.list
drwxr-xr-x   2 root root  4096 Jan  1 21:38 sources.list.d
-rw-r--r--   1 root root  4171 Jan  1 21:38 trusted.gpg
drwxr-xr-x   2 root root  4096 Dec 27 02:58 trusted.gpg.d

おすすめ記事