USB Flash Memory GNU/Hurd

It would be nice if we had a bootable USB flash drive Hurd like ?DamnSmallLinux. It would be useful for those who want to try out the Hurd before they commit to installing it on their hard disks. In addition to that, a bootable Flash Hurd would enable us to have a native installer instead of relying on Linux.

It could be installed in the USB using a Live CD (using a script) - this is the Burned version - or directly downloading the iso files from the Internet - Unburned version -. One can use also [qemu] to run the Live CD and them use the USB installation script.

Here is an outline of the things that need to be done. Please add your comments and suggestions.

Requirements Outline

1. We need to be able get a bootloader for USBs

This is not much of a problem. I have already been successful (see below) in using Grub and the El-Torito HD emulation to boot ?GNUmach off a CD. There may be some minor tweaking of Grub code necessary to detect which device to use for booting (instead of having the user select their device (hd0,hd1,etc.) from the Grub menu).

Using GRUB's stage2_eltorito seems to work fine.

2. We need a bootstrap filesystem translator

This would be something like a statically linked iso9660fs translator. Compiling a statically linked iso9660fs translator is easy enough, though it doesn't boot. I don't currently know whether this is because the translator was never meant to be a bootstrap filesystem, or if there is a simple bug which has never been flushed out because the translator has never been used at boot time before. I've had trouble debugging this problem because I haven't yet figured out a way to use a remote gdb with gnumach. Theoretically you could use the "boot" command to overcome this problem, but "boot" for me mangles the terminal and exits in different manner than an actual boot.

The iso9660fs translator works great, it just needs to be statically linked.

3. We need a ramdisk to enable write access

I think we could fake this with Farid Hajii's memfs translator and writing an ext2 filesystem to it.

From the mem-fs README...

memfs-1 is a translator that provides a memory-based file of fixed size. This file can, just like bigfile, contain a regular filesystem.

We could set a mem-fs translator anywhere on the CD you needed write access, including having softlinks to the contents of the root directory and chrooting to this new directory.

For a quick and dirty memfs, you can do it right now with the following commands:

   # touch ./ramdisk
   # touch ./tmpfs
   # settrans -a ./ramdisk /hurd/storeio -Tcopy zero:50M
   # /sbin/mke2fs -o hurd -b 4096 -F ./ramdisk
   # settrans -a tmpfs /hurd/ext2fs.static ./ramdisk
   # fsysopts --writable ./tmpfs
   # cd tmpfs
   # touch somenewfile

Here we use two files ramdisk, and tmpfs that are already created on a readonly file system. For illustration purposes, they are touched beforehand. We run an active storeio translator on the ramdisk file to give us 50MB of RAM to work with, and then we make an ext2 filesystem on it.

At this point we'd could copy the contents of the /var directory into the tmpfs, and then symlink /var to /tmpfs/var. The same goes for all other mutable dirs.

This approach of putting an entire ext2 filesystem in a copy zero'd store has some drawbacks listed here.

Those are the essentials. Here is a list of the things which would be nice to have for a USB Flash Memory.

  • Knoppix like script for starting up X and ?GraphicEnvironment s (?FluxBox, Gnome...)
  • DHCP support for easy network setup
  • Hardware autodetection (Kudzu).
  • Knoppix like script for installing to the hard drive or to bootable USB pendrive .
  • (add your favorite feature here)

Here is a mailing-list thread discussing some of these issues.

-- ?GregBuchholz - 21 Oct 2003 -- ?NagromNamreh - 29 Jan 2004