Ao contrário do initrd
, o Linux não permite desmontar o initramfs
. Aparentemente, isso ajudou a manter o código do kernel simples.
Em vez de pivot_root
, você pode usar o comando switch_root
. Ele implementa o procedimento a seguir. Observe que switch_root
exclui todos os arquivos na raiz antiga para liberar a memória do initramfs, portanto, é necessário ter cuidado ao executar este comando.
initramfs is rootfs: you can neither pivot_root rootfs, nor unmount it. Instead delete everything out of rootfs to free up the space (find -xdev / -exec rm '{}' ';'), overmount rootfs with the new root (cd /newmount; mount --move . /; chroot .), attach stdin/stdout/stderr to the new /dev/console, and exec the new init.
Observe que os comandos do shell sugeridos são apenas equivalentes aproximados do código C. Os comandos não funcionarão a menos que estejam todos embutidos no seu shell, porque o primeiro comando exclui todos os programas e outros arquivos do initramfs: -).
Rootfs is a special instance of ramfs (or tmpfs, if that's enabled), which is always present in 2.6 systems. You can't unmount rootfs for approximately the same reason you can't kill the init process; rather than having special code to check for and handle an empty list, it's smaller and simpler for the kernel to just make sure certain lists can't become empty.