扩展现有 ext2 映像的大小

发布于 2024-09-14 17:51:32 字数 113 浏览 6 评论 0原文

是否有可能扩展现有 ext2 映像的大小?

该映像是基于 ramdisk 的根文件系统。

我已经有一个图像了。但我想扩大这个图像的大小。

是否可以扩展此图像的大小。

Is there a possibility to extend the size of already existing ext2 image?

This image is a ramdisk based root file system.

I already have an image. but I want to extend the size of this image.

Is it possible to extend the size of this image.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

泅渡 2024-09-21 17:51:32

在执行此操作之前一定要备份,但它在测试 fs 上对我有用(假设您的磁盘映像名为 foo.img):

$ dd if=/dev/zero of=foo.img count=0 bs=1M seek=2000   # assuming target size is 2000M
$ e2fsck -f foo.img
$ resize2fs foo.img

Definitely back up before you do this, but it worked for me on a test fs (assuming your disk image is called foo.img):

$ dd if=/dev/zero of=foo.img count=0 bs=1M seek=2000   # assuming target size is 2000M
$ e2fsck -f foo.img
$ resize2fs foo.img
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文