其实这个版本很早就有了。
RebeccaBlackOS 是建立在kubuntu基础上的,图形服务器是Wayland
大家可以下载体验,this iso is live cd, via virtualbox or via usb

其它ubuntu和Wayland信息可以谷歌:http://goo.gl/ft72n
更新:dd到u盘无法启动,可以通过grub引导硬盘来启动,iso里面文件和ubuntu12.10是一样的结构
大家可以像平时硬盘安装ubuntu的方式来启动RebeccaBlackOScasper/ install/ isolinux/ md5sum.txt preseed/ README.diskdefines ubuntu
代码: 全选
$ ls casper/
filesystem.manifest filesystem.manifest-desktop filesystem.size filesystem.squashfs initrd.gz README.diskdefines vmlinuz
下面的grub配置方式仅对grub2有效
代码: 全选
vi /etc/grub.d/40_custom
重要说明:set root=(hd0,msdos5),这个要根据自己的分区capser文件和RebeccaBlackOS.iso 位置设定#!/bin/sh
exec tail -n +3 $0
# This file provides an easy way to add custom menu entries. Simply type the
# menu entries you want to add after this comment. Be careful not to change
# the 'exec tail' line above.
menuentry "My Android 4.0 x86" {
recordfail
gfxmode $linux_gfx_mode
insmod gzio
insmod part_msdos
insmod ext2
splashimage=/grub/android-x86.xpm.gz
set root='(hd0,msdos8)'
#search --no-floppy --fs-uuid --set=root 3ce3f68c-c604-4b47-a95b-5e3d7f907687
kernel /android-4.0-RC2/kernel quiet root=/dev/ram0 androidboot.hardware=thinkpad video=1366x768 i915.lvds_downclock=1 i915.powersave=1 usbcore.autosuspend=2 SRC=/android-4.0-RC2
initrd /android-4.0-RC2/initrd.img
}
menuentry "My Install Ubuntu locate" {
set root=(hd0,msdos5)
linux /casper/vmlinuz boot=casper iso-scan/filename=/RebeccaBlackOS.iso
initrd /casper/initrd.gz
}
保存后执行下面的命令更新grub
代码: 全选
sudo grub-install /dev/sda
sudo update-grub
完全可以启动RebeccaBlackOS,和平时硬盘安装ubuntu一样,而且这个RebeccaBlackOS是ubuntu12.10的
大家可以启动后可以执行
代码: 全选
lsb_release -a