重启 chromebook 后无法访问 ubuntu

重启 chromebook 后无法访问 ubuntu

我在三星 Chromebook 2 上下载了 Ubuntu,我真的很喜欢它!我关闭了我的 Chromebook,然后像关闭之前一样尝试了命令Alt+ Ctrl+ ,但它不起作用。我搜索了一下,发现我可能必须进入 Chrome OS 终端并输入“shell”回车,而且我确实确保我的 Chromebook 在所有这些之前处于开发模式 ^Forwardsudo startunity

然后我在该命令下收到以下消息:

Entering /mnt/stateful_partition/crouton/chroots/precise...

_XSERVTransmkdir: Owner of /tmp/.X11-unix should be set to root

X.Org X Server 1.11.3
Release Date: 2011-12-16
X Protocol Version 11, Revision 0
Build Operating System: Linux 2.6.42-61-generic x86_64 Ubuntu
Current Operating System: Linux localhost 3.10.18 #1 SMP Fri Dec 11 19:18:20 PST 2015 x86_64
Kernel command line: cros_secure console= loglevel=7 init=/sbin/init cros_secure oops=panic panic=-1 root=/dev/dm-0 rootwait ro dm_verity.error_behavior=3 dm_verity.max_bios=-1 dm_verity.dev_wait=1 dm="1 vroot none ro 1,0 2506752 verity payload=PARTUUID=a687a3ef-7b3c-d643-884f-9c8c71b902d3/PARTNROFF=1 hashtree=PARTUUID=a687a3ef-7b3c-d643-884f-9c8c71b902d3/PARTNROFF=1 hashstart=2506752 alg=sha1 root_hexdigest=9dc5e01612a9a39940b3e401eea76252d377c8ae salt=882a85e22f6795821598d31581f0be109557c552116a01b48a0be86871733bfc" noinitrd vt.global_cursor_default=0 kern_guid=a687a3ef-7b3c-d643-884f-9c8c71b902d3 add_efi_memmap boot=local noresume noswap i915.modeset=1 tpm_tis.force=1 tpm_tis.interrupts=0 nmi_watchdog=panic,lapic  
Build Date: 12 February 2015  02:49:01PM
xorg-server 2:1.11.4-0ubuntu10.17 (For technical support please see ubuntudotcom ) 
Current version of pixman: 0.30.2
        Before reporting problems, check wikidotxdotorg
        to make sure that you have the latest version.
Markers: (--) probed, (**) from config file, (==) default setting,
        (++) from command line, (!!) notice, (II) informational,
        (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
(++) Log file: "/tmp/Xorg.crouton.1.log", Time: Tue Dec 29 19:29:55 2015
(==) Using system config directory "/usr/share/X11/xorg.conf.d"

Fatal server error:
no screens found

Please consult the The X.Org Foundation support 
         at http://wiki.x.org
 for help. 
Please also check the log file at "/tmp/Xorg.crouton.1.log" for additional information.

 ddxSigGiveUp: Closing log
Server terminated with error (1). Closing log file.
/usr/bin/xinit: giving up
/usr/bin/xinit: unable to connect to X server: No such file or directory
/usr/bin/xinit: server error
Unmounting /mnt/stateful_partition/crouton/chroots/precise...

我上周下载了 Ubuntu 并收到此消息,但我找不到任何内容。这周我一直以为是我做了某事,但这次我再次这样做后,我认为不再是我了。此外,在命令后发送的消息中,ubuntuedotcom 和 wiki 是实际网站,但这是我在这个网站上的第一个问题,我不能有超过 1 个链接,所以我不得不把它说出来。

答案1

我建议您使用 xiwi。Xiwi 应该可以让 Crouton 为您工作,因为它会将 X11 服务器路由到您的窗口中。请参阅:https://github.com/dnschneid/crouton/wiki/crouton-in-a-Chromium-OS-window-%28xiwi%29

但是,如果您对该修复不感兴趣,那么我将详细说明您的问题并尝试提供帮助。您偶然发现了一个已知错误,可以通过降级 ChromeOS(我不推荐这样做)并尝试使用其他版本的 Ubuntu 来修复。这让我想起,知道您在这里使用的确切版本会很好。好的,如果您想继续尝试完成这项工作,请尝试以下操作:

> shell
$ sudo enter-chroot
Entering /mnt/stateful_partition/crouton/chroots/precise...
$ ls -l /dev/dri
crw-rw---- 1 root video 226, 0 Dec 27 13:18 card0
crw-rw---- 1 root video 226, 1 Dec 27 13:18 card1
[...truncated...]
$ sudo rm /dev/dri/card0
$ sudo mv /dev/dri/card1 /dev/dri/card0

如果您没有看到 card1 和 card0,就不要理会上述命令。上述命令可能会让它为您工作,但您可能会遇到问题,即每次重启后都必须重新运行这些命令。

您可以在此处找到有关您的具体问题的更多详细信息:https://github.com/dnschneid/crouton/issues/1978

相关内容