deb
ファイルからCiscoパケットトレーサーをインストールしようとすると、次のエラーが発生しました。
Unpacking packettracer (7.3.0) ...
dpkg: dependency problems prevent configuration of packettracer:
packettracer depends on libdouble-conversion1; however:
Package libdouble-conversion1 is not installed.
packettracer depends on qt-at-spi; however:
Package qt-at-spi is not installed.
dpkg: error processing package packettracer (--install):
dependency problems - leaving unconfigured
Processing triggers for gnome-menus (3.32.0-1ubuntu1) ...
Processing triggers for desktop-file-utils (0.24-1ubuntu1) ...
Processing triggers for mime-support (3.63ubuntu1) ...
Processing triggers for shared-mime-info (1.10-1) ...
Errors were encountered while processing:
packettracer
次に、コマンドlibdouble-conversion1
を使用してSudo apt-get install libdouble-conversion1
をインストールしてみました。次のエラーが発生します
Package libdouble-conversion1 is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source
E: Package 'libdouble-conversion1' has no installation candidate
これらのパッケージを最初にダウンロードします。
ターミナルを開き、ディレクトリをダウンロード(ダウンロードされたパッケージが存在する場所)に変更します。
ダウンロードしたすべてのパッケージを実行可能にします(chmod +x packagename
)
コピー/home/username/.config/mimeapps.list
から/root/.config/
Libdouble-conversion1およびqt-at-spiパッケージ(Sudo dpkg -i packagename
)
Libjpeg-turbo8パッケージをインストールします。ここでは、ライブラリの競合エラーが発生することがあります。その場合は、古いもの(Sudo apt purge packagename
)。警告が表示されます。このコマンドを入力するだけです(Sudo apt --fix-broken install
)。その後、再度取り外します。これで、libjpeg-turbo8パッケージを再度インストールできます。
Libjpeg8パッケージをインストールします。
最後に、Packet Tracer 7.3パッケージをインストールできます。\
幸運を
パケットトレーサーをダウンロードした後、Sudo dpkg -i PacketTracer_730_AMD64.deb
でインストールしてみました。
dpkg: dependency problems prevent configuration of packettracer:
packettracer depends on qt-at-spi; however:
Package qt-at-spi is not installed.
qt-at-spi
をインストールしようとしたときに、このメッセージが表示されました
Reading package lists... Done
Building dependency tree
Reading state information... Done
You might want to run 'apt --fix-broken install' to correct these.
The following packages have unmet dependencies:
qt-at-spi : Depends: libqt4-dbus (>= 4:4.8.0) but it is not going to be installed
Depends: libqtcore4 (>= 4:4.8~) but it is not going to be installed
Depends: libqtgui4 (>= 4:4.8~) but it is not going to be installed
E: Unmet dependencies. Try 'apt --fix-broken install' with no packages (or specify a solution).
Sudo apt --fix-broken install
を実行すると、すべての問題が修正され、パケットトレーサがインストールされました。