缩小物联网设备上的实时根文件系统?

缩小物联网设备上的实时根文件系统?

我有一台 Raspberry Pi 3,它运行的是Debian-lite 映像。该设备有 1 GB 的 RAM,但有足够的存储空间。它有足够的存储空间,因为它缺乏板载 eMMC,并且使用可以很大容量(16 GB 或 32 GB)的 sdCard。

我想添加一个交换文件少量的交换以弥补 RAM 不足。为此,我需要创建一个 1 GB 的交换文件:

# df -h
Filesystem      Size  Used Avail Use% Mounted on
/dev/root        15G  1.4G   13G  10% /
devtmpfs        459M     0  459M   0% /dev
tmpfs           463M     0  463M   0% /dev/shm
tmpfs           463M  6.2M  457M   2% /run
tmpfs           5.0M  4.0K  5.0M   1% /run/lock
tmpfs           463M     0  463M   0% /sys/fs/cgroup
/dev/mmcblk0p1   63M   21M   43M  33% /boot

我在寻找有关在无头且没有 CD 或 DVD 播放器(即运行 Gparted)的设备上缩小实时文件系统的信息时遇到了麻烦。我找到了类似的程序,例如如何在运行时调整扩展根分区的大小?,但删除整个分区似乎有风险。此外,由于 ext4 文件系统上没有 DOS 分区,因此此方法无效:

# sudo fdisk /dev/mmcblk0p2

Welcome to fdisk (util-linux 2.25.2).
Changes will remain in memory only, until you decide to write them.
Be careful before using the write command.

/dev/mmcblk0p2: device contains a valid 'ext4' signature, it's strongly recommended to wipe the device by command wipefs(8) if this setup is unexpected to avoid possible collisions.

Device does not contain a recognized partition table.
Created a new DOS disklabel with disk identifier 0xfc95d188.

Command (m for help): p
Disk /dev/mmcblk0p2: 14.8 GiB, 15861284864 bytes, 30979072 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disklabel type: dos
Disk identifier: 0xfc95d188

如何缩小物联网设备上的实时根文件系统?

相关内容