web-dev-qa-db-ja.com

Tails内で仮想ボックスを実行できますか

TailsOS関連の質問があります:テール内で仮想ボックスを実行できますか? VirtualBoxを使用していくつかのエミュレーターを実行したいと思います。私はそれをグーグルしようとしましたが、それは常にVMの内側の尾について話しているのですが、これは私が探しているものではありません。

cat /etc/*-releaseの出力

です

TAILS_PRODUCT_NAME="Tails"
TAILS_VERSION_ID="3.2"

だから私はそれをインストールしようとするとあなたがお勧めするdeb9ストレッチに行きましたプロンプト

Sudo dpkg -i '/home/amnesia/Persistent/virtualbox-5.1_5.1.28-117968~Ubuntu~xenial_AMD64.deb' 
[Sudo] password for amnesia: 
(Reading database ... 137687 files and directories currently installed.)
Preparing to unpack .../virtualbox-5.1_5.1.28-117968~Ubuntu~xenial_AMD64.deb ...
Unpacking virtualbox-5.1 (5.1.28-117968~Ubuntu~xenial) over (5.1.28-117968~Ubuntu~xenial) ...
dpkg: dependency problems prevent configuration of virtualbox-5.1:
 virtualbox-5.1 depends on libpng12-0 (>= 1.2.13-4); however:
  Package libpng12-0 is not installed.
 virtualbox-5.1 depends on libqt5opengl5 (>= 5.0.2) | libqt5opengl5-gles (>= 5.0.2); however:
  Package libqt5opengl5 is not installed.
  Package libqt5opengl5-gles is not installed.
 virtualbox-5.1 depends on libqt5x11extras5 (>= 5.1.0); however:
  Package libqt5x11extras5 is not installed.
 virtualbox-5.1 depends on libssl1.0.0 (>= 1.0.0); however:
  Package libssl1.0.0 is not installed.
 virtualbox-5.1 depends on libvpx3 (>= 1.5.0); however:
  Package libvpx3 is not installed.

dpkg: error processing package virtualbox-5.1 (--install):
 dependency problems - leaving unconfigured
Processing triggers for systemd (232-25+deb9u1) ...
Processing triggers for hicolor-icon-theme (0.15-1) ...
Processing triggers for shared-mime-info (1.8-1) ...
Processing triggers for gnome-menus (3.13.3-9) ...
Processing triggers for desktop-file-utils (0.23-1.0tails1) ...
Processing triggers for mime-support (3.60) ...
Errors were encountered while processing:
 virtualbox-5.1
1
leila

はい、あなたはこれを行うことができるはずです。ただし、これはテールであるため、テールは永続的ではないため、テールを起動するたびにvirtualboxを再インストールする必要があります。

"DebianベースのLinuxディストリビューション" 命令を使用する必要があります。

また、ターミナルで次のコマンドを実行して、使用しているDebianのバージョンをテールで表示し、ダウンロードするVirtualboxのバージョンを確認します。

cat /etc/*-release

テールが使用しているDebianのバージョン(おそらくDebian 9 "stretch")がわかったら、ここにリンクされている ページから対応するバージョンのVirtualboxをダウンロードします。


依存関係の問題を修正するには、ターミナルで次のコマンドを実行してください。

Sudo apt-get update
Sudo apt-get -f install

エラーがあれば投稿してください、ありがとう!

1
mchid