web-dev-qa-db-ja.com

DebianStretchにflameshotをインストールする

プログラムを見つけました Flameshot そしてそれをDebian Stretch、しかし情報を得た:

E: Unable to locate package flameshot 

サイトには情報があります:

Package for Debian 9 ("Stretch") also available via stretch-backports.

stretch-backportsからインストールする方法を教えてください。

stretch-backportsの横の/etc/apt/source.liststretch main contrib non-free文字列を追加し、update中にエラーが発生しましたが、一部のエントリでエラーが発生しませんでした。

s@lokal:~/Dropbox$ Sudo apt update
Ign:1 http://ftp.task.gda.pl/debian stretch InRelease                                                                                                              
Hit:2 http://ftp.task.gda.pl/debian stretch-updates InRelease                                                                                                      
Hit:3 http://ftp.task.gda.pl/debian stretch Release                                                                  
Hit:4 http://security.debian.org/debian-security stretch/updates InRelease                                           
Hit:5 http://nginx.org/packages/debian stretch InRelease                                       
Ign:6 http://dl.google.com/linux/chrome/deb stable InRelease             
Hit:7 http://dl.google.com/linux/chrome/deb stable Release
Hit:8 https://packages.sury.org/php stretch InRelease
Hit:10 https://download.sublimetext.com apt/stable/ InRelease
Hit:11 https://download.sublimetext.com apt/dev/ InRelease
Reading package lists... Done 
E: Failed to fetch http://ftp.task.gda.pl/debian/dists/stretch/InRelease  Unable to find expected entry 'stretch-backports/source/Sources' in Release file (Wrong sources.list entry or malformed file)
E: Failed to fetch http://security.debian.org/debian-security/dists/stretch/updates/InRelease  Unable to find expected entry 'stretch-backports/source/Sources' in Release file (Wrong sources.list entry or malformed file)
E: Failed to fetch http://ftp.task.gda.pl/debian/dists/stretch-updates/InRelease  Unable to find expected entry 'stretch-backports/source/Sources' in Release file (Wrong sources.list entry or malformed file)
E: Some index files failed to download. They have been ignored, or old ones used instead.
s@lokal:~/Dropbox$ 

問題は残っています:

s@lokal:~/Dropbox$ Sudo apt-get install flameshot
Reading package lists... Done
Building dependency tree       
Reading state information... Done
E: Unable to locate package flameshot
s@lokal:~/Dropbox$ 

インストール方法Flameshot

1
trzczy

ストレッチバックポートで利用可能です: パッケージ:flameshot

バックポートリポジトリを追加します。

更新してアップグレードします。

そして、それはインストール可能でなければなりません。

3
user8779

Flameshot on Debian 9 "Stretch"をインストールするには、/etc/apt/sources.listファイルに次の行を追加します。

deb http://ftp.debian.org/debian stretch-backports main

上記のファイルを保存した後、更新を行います。

Sudo apt update

更新後、apt-tフラグを使用してバックポートからパッケージをインストールし、バックポートリポジトリを指定します。

apt-get -t stretch-backports install flameshot

そして、Flameshotがインストールされています。

次のように入力して、コマンドラインから実行できます。

flameshot gui
0
simhumileco