web-dev-qa-db-ja.com

Linux Mintエラー:「リストファイル/etc/apt/sources.list.d/lst_debian_repo.list(コンポーネント)の不正なエントリ1」

Linux Mintで、コマンドSudo apt-get updateを実行すると、次のエラーが表示されます。

Malformed entry 1 in list file /etc/apt/sources.list.d/lst_debian_repo.list (Component)

そのファイルには次のように表示されます。

deb http://rpms.litespeedtech.com/debian/  main

コマンドを使用してLitespeed用にPHP)をインストールしたいので、この質問をします

Sudo apt install lsphp72 lsphp72-curl lsphp72-imap lsphp72-mysql lsphp72-intl lsphp72-pgsql lsphp72-sqlite3 lsphp72-tidy lsphp72-snmp

しかし、上記のコマンドを実行すると、次のエラーが発生します。

E: Malformed entry 1 in list file /etc/apt/sources.list.d/lst_debian_repo.list (Component) E: The list of sources could not be read.
E: Malformed entry 1 in list file /etc/apt/sources.list.d/lst_debian_repo.list (Component) E: The list of sources could not be read.
1
Steve

構文にディストリビューションがありません。たとえば、エントリを編集してください。

"deb http://rpms.litespeedtech.com/debian jessie main"

次に、LiteSpeed GPGキーを登録し、リポジトリを更新します

Sudo xed /etc/apt/sources.list.d/lst_debian_repo.list
Sudo wget -O /etc/apt/trusted.gpg.d/lst_debian_repo.gpg http://rpms.litespeedtech.com/debian/lst_debian_repo.gpg
Sudo apt-get update
1
alecxs