私はChromebookでDebian 10を実行しており、ここにさまざまなオペレーティングシステムをインストールして実行しようとしています。だから、使用しようとしていますqemu
。
私が入るとき
apt-get install qemu
私のランチャーにqemuアプリがなく、エラーが発生したため、完全にインストールされていないようです。すべてのコードは次のとおりです。
root@penguin:/home/pablog22# apt-get install qemu
Reading package lists... Done
Building dependency tree
Reading state information... Done
qemu is already the newest version (1:3.1+dfsg-8+deb10u7).
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
1 not fully installed or removed.
After this operation, 0 B of additional disk space will be used.
Do you want to continue? [Y/n] y
Setting up lightdm-login-chromiumos (1.0) ...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 40 100 40 0 0 144 0 --:--:-- --:--:-- --:--:-- 145
Downloading: http://commondatastorage.googleapis.com/chromium-browser-snapshots/Linux_ChromiumOS/84b76aa34b7ee89ea7b44af59239f6729aa53ab5/chrome-linux.zip
ZIP: /tmp/fileolA6K1.zip
Warning: Illegal date format for -z, --time-cond (and not a file name).
Warning: Disabling time condition. See curl_getdate(3) for valid date syntax.
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 263 100 263 0 0 977 0 --:--:-- --:--:-- --:--:-- 977
Archive: /tmp/fileolA6K1.zip
End-of-central-directory signature not found. Either this file is not
a zipfile, or it constitutes one disk of a multi-part archive. In the
latter case the central directory and zipfile comment will be found on
the last disk(s) of this archive.
unzip: cannot find zipfile directory in one of /tmp/fileolA6K1.zip or
/tmp/fileolA6K1.zip.zip, and cannot find /tmp/fileolA6K1.zip.ZIP, period.
dpkg: error processing package lightdm-login-chromiumos (--configure):
installed lightdm-login-chromiumos package post-installation script subprocess returned error exit status 9
Errors were encountered while processing:
lightdm-login-chromiumos
E: Sub-process /usr/bin/dpkg returned an error code (1)
私は何をすべきですか?
答え1
qemuがインストールされているので、次のようになります。
qemu is already the newest version (1:3.1+dfsg-8+deb10u7).
インストールされていることを確認するには、次の手順を実行します。
apt list --installed qemu
qemuはコマンドラインツールです。デフォルトでは、グラフィックフロントエンドがないため、デスクトップランチャーには表示されません。これArch Linux Wikiページ作業を簡単にするためにインストールできるqemuグラフィックフロントエンドのいくつかのオプションについて説明します。
ただし、ChromebookがARMベースの場合は、仮想マシンで得られるパフォーマンスに失望する可能性があります。私はarmv7 ChromebookでArch Linuxを使用しています。仮想マシンをインストールしてみましたが、パフォーマンスが非常に悪かった(つまり、ほとんど利用できません)。私が理解したところ、armv7には仮想化のための多くのハードウェアサポートが含まれていないため、KVMを使用できません。 KVMがないと、仮想マシンのパフォーマンスが非常に低下する可能性があります。特に、他のアーキテクチャ(x86など)をエミュレートしたい場合は、そうです。
aptログのこのエラーメッセージは、他のパッケージに関連しているようです:lightdm-login-chromiumos
。このパッケージがあなたのシステムに存在する理由はわかりませんが、クイックWeb検索を使用してlightdmからChromiumOSにログインできることがわかります。完全にインストールされていないようです。そのため、Debian が実行されているようで、必要ないと思われる場合は削除しても安全です。ただし、重要なデータを最初にバックアップすることをお勧めします。