私のinitrdに「kernel」という1つのディレクトリしかないのはなぜですか?

私のinitrdに「kernel」という1つのディレクトリしかないのはなぜですか?

私はdebian live-buildを使って起動可能なシステムで作業しています。プロセスの終わりに、ライブシステムを起動するための一般的なファイルであるsquashfsファイル、いくつかのGRUBモジュールと設定ファイル、initrd.imgファイルがありました。

次の方法でinitrdをカーネルに渡すと、このファイルを使用して正しく起動できます。

initrd=/path/to/my/initrd.img

ブートローダのコマンドラインから。しかし、次のようにinitrdイメージの内容を調べようとすると、次のようになります。

$file initrd.img
initrd.img: ASCII cpio archive (SVR4 with no CRC)
$mkdir initTree && cd initTree
$cpio -idv < ../initrd.img

私が取得するファイルツリーは次のとおりです。

$tree --charset=ASCII
.
`-- kernel
    `-- x86
        `-- microcode
            `-- GenuineIntel.bin

起動中に使用される物理ファイルを含む物理ファイルシステムツリー(通常/bin、/etc、/sbin...)はどこにありますか?

ベストアンサー1

与えられたcpioブロックをスキップする方法は安定して動作しません。これは、私が直接取得したinitrdイメージが512バイトの境界で2つのアーカイブをリンクしていないためです。

代わりに、以下を実行してください。

apt-get install binwalk
legolas [mc]# binwalk initrd.img 
DECIMAL       HEXADECIMAL     DESCRIPTION
--------------------------------------------------------------------------------
0             0x0             ASCII cpio archive (SVR4 with no CRC), file name: "kernel", file name length: "0x00000007", file size: "0x00000000"
120           0x78            ASCII cpio archive (SVR4 with no CRC), file name: "kernel/x86", file name length: "0x0000000B", file size: "0x00000000"
244           0xF4            ASCII cpio archive (SVR4 with no CRC), file name: "kernel/x86/microcode", file name length: "0x00000015", file size: "0x00000000"
376           0x178           ASCII cpio archive (SVR4 with no CRC), file name: "kernel/x86/microcode/GenuineIntel.bin", file name length: "0x00000026", file size: "0x00005000"
21004         0x520C          ASCII cpio archive (SVR4 with no CRC), file name: "TRAILER!!!", file name length: "0x0000000B", file size: "0x00000000"
21136         0x5290          gzip compressed data, from Unix, last modified: Sat Feb 28 09:46:24 2015

最後の数字(21136)を使用すると、512バイトの境界にはありません。

legolas [mc]# dd if=initrd.img bs=21136 skip=1 | gunzip | cpio -tdv | head
drwxr-xr-x   1 root     root            0 Feb 28 09:46 .
drwxr-xr-x   1 root     root            0 Feb 28 09:46 bin
-rwxr-xr-x   1 root     root       554424 Dec 17  2011 bin/busybox
lrwxrwxrwx   1 root     root            7 Feb 28 09:46 bin/sh -> busybox
-rwxr-xr-x   1 root     root       111288 Sep 23  2011 bin/loadkeys
-rwxr-xr-x   1 root     root         2800 Aug 19  2013 bin/cat
-rwxr-xr-x   1 root     root          856 Aug 19  2013 bin/chroot
-rwxr-xr-x   1 root     root         5224 Aug 19  2013 bin/cpio
-rwxr-xr-x   1 root     root         3936 Aug 19  2013 bin/dd
-rwxr-xr-x   1 root     root          984 Aug 19  2013 bin/dmesg

おすすめ記事