Linux 内核 3.x 如何将 ramdisk 作为块设备进行管理?

Linux 内核 3.x 如何将 ramdisk 作为块设备进行管理?

我需要 RAM 中的块设备。我构建了一个 3.x 内核并添加了 RAM 块设备驱动程序。 RAM 块设备驱动器的数量为 16(默认情况下),但是当内核启动时, /sys/blocknor中没有 ramx /dev。这是怎么回事?

答案1

我认为你的意思是这样的:

加载块 ramdisk 模块,使用参数设置所需的块大小rd_size=...

# modprobe brd rd_size=123456

...此步骤/dev/ram0存在后。

您现在可以在上面放置一个文件系统。

# mkfs /dev/ram0
mke2fs 1.41.12 (17-May-2010)
Filesystem label=
OS type: Linux
Block size=1024 (log=0)
Fragment size=1024 (log=0)
Stride=0 blocks, Stripe width=0 blocks
30976 inodes, 123456 blocks
6172 blocks (5.00%) reserved for the super user
First data block=1
Maximum filesystem blocks=67371008
16 block groups
8192 blocks per group, 8192 fragments per group
1936 inodes per group
Superblock backups stored on blocks: 
        8193, 24577, 40961, 57345, 73729

Writing inode tables: done                            
Writing superblocks and filesystem accounting information: done

This filesystem will be automatically checked every 38 mounts or
180 days, whichever comes first.  Use tune2fs -c or -i to override.

安装它并检查已使用的空间和可用空间...

# mount /dev/ram0 /mnt 
# df /mnt 
Filesystem           1K-blocks      Used Available Use% Mounted on
/dev/ram0               119539      1550    111817   2% /mnt

相关内容