Chromebook의 qemu 문제

Chromebook의 qemu 문제

저는 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는 명령줄 도구입니다. 기본적으로 그래픽 프런트엔드가 없으므로 데스크톱 런처에 표시되지 않습니다. 이것아치 리눅스 위키 페이지작업을 더 쉽게 하기 위해 설치할 수 있는 qemu 그래픽 프런트엔드에 대한 몇 가지 옵션을 설명합니다.

그러나 Chromebook이 ARM 기반인 경우 가상 머신에서 얻는 성능에 실망할 수 있다는 점에 대비하세요. 저는 armv7 Chromebook에서 Arch Linux를 사용하고 있습니다. 가상 머신을 설치해 보았으나 성능이 매우 나빴습니다(즉, 거의 사용할 수 없음). 제가 이해한 바에 따르면 armv7에는 가상화를 위한 많은 하드웨어 지원이 포함되어 있지 않으므로 KVM을 사용할 수 없습니다. KVM이 없으면 가상 머신 성능이 매우 저하될 수 있습니다. 특히 다른 아키텍처(예: x86)를 에뮬레이션하려는 경우 더욱 그렇습니다.

apt 로그의 이 오류 메시지는 다른 패키지와 관련된 것 같습니다: lightdm-login-chromiumos. 이 패키지가 귀하의 시스템에 왜 존재하는지 잘 모르겠지만 빠른 웹 검색을 통해 lightdm에서 ChromiumOS에 로그인할 수 있다는 것을 알 수 있습니다. 완전히 설치되지 않은 것 같습니다. 따라서 데비안이 실행 중인 것 같고 필요하지 않다고 생각되면 제거해도 안전할 것입니다. 그러나 중요한 데이터를 먼저 백업하는 것이 좋습니다.

관련 정보