chroot
从 Ubuntu Stable(我的情况是 11.04)到 Ubuntu+1(11.10)的推荐使用方法是什么?
相关的(但可能分开的)是“为了开始Xorg
工作我需要做什么特别的事情吗?”
我询问的原因是我想测试一些 GTK3 程序,而又不丢失我当前(稳定的)Ubuntu,也不必同步我的数据。
我考虑过从 11.10 开始运行 SSH 服务器,然后使用 SSH 的 X 转发,但这似乎相当麻烦。
答案1
为了 chroot 来配置/安装 grub,请执行以下操作:
#first, mount new install to /mnt/oneiric
mount -t proc proc /mnt/oneiric/proc
mount -t sysfs sys /mnt/oneiric/sys
mount -o bind /dev /mnt/oneiric/dev
chroot /mnt/oneiric /bin/bash
我不会尝试以这种方式启动完整的 gnome。
您应该这样做的唯一原因是,如果您出于某种原因无法启动 Linux 安装,但仍需要从中运行一些程序。您不能只是 chroot 并更改您正在运行的发行版。