While terse, mikeserv is essentially correct - Linux has used initramfs
for a long time, since the 2.6 days. If you use GRUB (which, assuming you have a default LMDE installation, you do), then checkout /boot/grub/grub.cfg
:
$ grep initr /boot/grub/grub.cfg
initrd /boot/initrd.img-3.13.0-53-generic
initrd /boot/initrd.img-3.13.0-53-generic
initrd /boot/initrd.img-3.13.0-52-generic
initrd /boot/initrd.img-3.13.0-52-generic
initrd /boot/initrd.img-3.13.0-24-generic
initrd /boot/initrd.img-3.13.0-24-generic
Even though the name is initrd
, it is an initramfs
archive, which you can test by virtue of initramfs
being a CPIO archive:
$ file - < /boot/initrd.img-3.13.0-24-generic
/dev/stdin: gzip compressed data, from Unix, last modified: Tue Sep 30 20:07:43 2014
$ gunzip < /boot/initrd.img-3.13.0-24-generic | file -
/dev/stdin: ASCII cpio archive (SVR4 with no CRC)
(The name for the initramfs
image is distro-dependent. Arch Linux, for example, simply calls it initramfs-linux.img
.)