kaliにいくつかのサードパーティ製ソフトウェアをインストールしようとしていますが、端末を使用してインストールしようとするとエラーが発生し続けます。
sudo dpkg -i /root/Desktop/gdebi_0.9.5.5+nmu1_all.deb
(Reading database ... 319034 files and directories currently installed.)
Preparing to unpack .../gdebi_0.9.5.5+nmu1_all.deb ...
Unpacking gdebi (0.9.5.5+nmu1) over (0.9.5.5+nmu1) ...
dpkg: dependency problems prevent configuration of gdebi:
gdebi depends on gdebi-core (= 0.9.5.5+nmu1); however:
Package gdebi-core is not installed.
gdebi depends on gir1.2-vte-2.90; however:
Package gir1.2-vte-2.90 is not installed.
dpkg: error processing package gdebi (--install):
dependency problems - leaving unconfigured
Processing triggers for man-db (2.7.6.1-2) ...
Processing triggers for gnome-menus (3.13.3-9) ...
Processing triggers for desktop-file-utils (0.23-2) ...
Processing triggers for mime-support (3.60) ...
Errors were encountered while processing:
gdebi
今どうすればいいですか?この問題について助けてください。すべての回答を高く評価します。
しかし、それを使用して欠落している依存関係を追加しようとすると、このエラーは発生しますか?
apt-get -f install
Reading package lists... Done
Building dependency tree
Reading state information... Done
Correcting dependencies... Done
The following additional packages will be installed:
gdebi gdebi-core libappindicator1 libdbusmenu-glib4 libdbusmenu-gtk4
libindicator7
Recommended packages:
lintian
The following packages will be REMOVED:
picasa
The following NEW packages will be installed:
gdebi-core libappindicator1 libdbusmenu-glib4 libdbusmenu-gtk4
libindicator7
The following packages will be upgraded:
gdebi
1 upgraded, 5 newly installed, 1 to remove and 0 not upgraded.
3 not fully installed or removed.
Need to get 329 kB/382 kB of archives.
After this operation, 108 MB disk space will be freed.
Do you want to continue? [Y/n] y
Err:1 http://http.kali.org/kali kali-rolling/main amd64 libdbusmenu-glib4
amd64 16.04.1+17.04.20170109.1-4
404 Not Found
Err:2 http://http.kali.org/kali kali-rolling/main amd64 libdbusmenu-gtk4
amd64 16.04.1+17.04.20170109.1-4
404 Not Found
Err:3 http://http.kali.org/kali kali-rolling/main amd64 libappindicator1
amd64 0.4.92-4
404 Not Found
Err:4 http://http.kali.org/kali kali-rolling/main amd64 gdebi all
0.9.5.7+nmu1
404 Not Found
Err:5 http://http.kali.org/kali kali-rolling/main amd64 gdebi-core all
0.9.5.7+nmu1
404 Not Found
E: Failed to fetch http://http.kali.org/kali/pool/main/libd/libdbusmenu
/libdbusmenu-glib4_16.04.1+17.04.20170109.1-4_amd64.deb 404 Not Found
E: Failed to fetch http://http.kali.org/kali/pool/main/libd/libdbusmenu
/libdbusmenu-gtk4_16.04.1+17.04.20170109.1-4_amd64.deb 404 Not Found
E: Failed to fetch http://http.kali.org/kali/pool/main/liba
/libappindicator/libappindicator1_0.4.92-4_amd64.deb 404 Not Found
E: Failed to fetch http://http.kali.org/kali/pool/main/g/gdebi
/gdebi_0.9.5.7+nmu1_all.deb 404 Not Found
E: Failed to fetch http://http.kali.org/kali/pool/main/g/gdebi/gdebi-
core_0.9.5.7+nmu1_all.deb 404 Not Found
E: Unable to fetch some archives, maybe run apt-get update or try with
--fix-missing?
ベストアンサー1
答えはあなたが受け取ったエラーメッセージにあります。
インストールするパッケージには、インストールする必要がある依存関係があります。パッケージをインストールすると、これを行うことができます。apt-get
に示されているエラーは修正する必要がありますapt-get
。/etc/apt/sources.list
ファイルは次のようにする必要があります。
deb http://http.kali.org/kali kali-rolling main non-free contrib
完了したら、.deb
インストールするパッケージの場所に移動し、次の手順を実行します。
apt-get install gdebi_0.9.5.5+nmu1_all.deb
リポジトリの外部からパッケージをインポートし、依存関係が存在しない場合は、パッケージを別々にダウンロードしてディレクトリに配置し、そのディレクトリに配置する必要がありますapt-get install *.deb
。