Debian 8 Jessie "E: パッケージ lmms が見つかりません。"

Debian 8 Jessie

いくつかのオーディオ制作のために、Debian 8にlmmsをインストールしようとしています。プロセスは次のとおりです。

sudo apt-get update
sudo apt-get upgrade
sudo apt-get install lmms

"E: パッケージ lmm が見つかりません。"

これは、次のガイドラインに従って行われます。https://lmms.io/download/#linux

/etc/apt/sources.list:

# deb cdrom:[Debian GNU/Linux 8 _Jessie_ - Official Snapshot amd64 LIVE/INSTALL Binary 20150909-00:22]/ jessie contrib main non-free

deb cdrom:[Debian GNU/Linux 8 _Jessie_ - Official Snapshot amd64 LIVE/INSTALL Binary 20150909-00:22]/ jessie contrib main non-free

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

/etc/apt/sources.list.d/winehq.list:

deb https://dl.winehq.org/wine-builds/debian/jessie main

ベストアンサー1

何らかの理由で Debian インストールにパッケージソースがありません。/etc/apt/sources.listインストールCDとセキュリティアップデートのみが一覧表示され、デフォルトのオンラインストアは一覧表示されません。デフォルトのオンラインストアを追加します。編集/etc/apt/sources.list(ルートとして、たとえば使用sudoedit)し、次の行を追加します。

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

ftp.debian.org次に交換することもできます。あなたに近い。順序は、複数のソースがまったく同じバージョンを持っている場合にのみ重要です(最初にAPTがインストールするバージョンを決定し、そのバージョンとともに最初にリストされたソースを使用します)。

完了したら、sudo apt-get update必要なパッケージを実行してインストールします。

おすすめ記事