如何将零 /dev/zero 压缩或写入交换文件?

发布于 2024-09-11 04:21:53 字数 366 浏览 8 评论 0原文

我们有一些基于 Linux (Centos) 的虚拟机,它们将用作可分布式虚拟设备。我们希望能够尽可能地压缩它们以进行分发(通过 tar.gz、zip 等)。

我们删除了所有不必要的文件(.log、/tmp/*、/var/log/ 等),并将 /dev/zero 写入磁盘上的可用空间。

是否可以通过 /dev/zero 将零写入交换分区和文件?我知道我需要先交换 -a 。我担心会破坏任何内部结构。

我们的虚拟机同时使用分区交换和文件交换。

另外,还有其他策略可以减少分发虚拟机的大小吗?

我们需要支持所有虚拟机管理程序技术(Xen、VMW 等),因此尽管供应商的工具可能有用,但我正在寻找跨平台的策略。

- - 谢谢

We have a few linux based (Centos) virtual machines which are to be used as distributable virtual appliances. We want to be able to compress them as much as possible for distribution ( via tar.gz, zip, etc).

We've removed all unnecessary files (.log's, /tmp/*, /var/log/, etc) and have written /dev/zero to the free space on the disk.

Is it possible to write zeros via /dev/zero to the swap partitions and files? I know I would need to swapoff -a first. I'm worried about corrupting any internal structures.

Our vm uses both partition swap and file swap.

Also, are there any other strategies for reducing the size of a VM for distribution?

We need to support all of the hypervisor technologies (Xen, VMW, etc), so although the vendors tools maybe useful, I'm looking for strategies that are cross platform.

--- Thanks

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

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

发布评论

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

评论(3

淡紫姑娘! 2024-09-18 04:21:53

您可能需要写入零,然后使用 mkswap 创建一个空交换分区。

You may want to write zeroes and then use mkswap to create an empty swap partition.

静谧 2024-09-18 04:21:53

$ dd -if=/dev/zero of=/path/to/file bs=512 count=1
调整您想要的文件大小。

$ dd -if=/dev/zero of=/path/to/file bs=512 count=1
adjust the size that you want your files to be.

无需解释 2024-09-18 04:21:53

sudo swapoff -v /dev/sda2 <== 交换分区

sudo dd if=/dev/zero of=/dev/sda2 bs=512 status=progress

sudo mkswap /dev/sda2 UUID=46c1a133-bfdd-4695-a484 -08fcf8286896 <==交换分区的原始UUID

sudo swapoff -v /dev/sda2 <== The swap partition

sudo dd if=/dev/zero of=/dev/sda2 bs=512 status=progress

sudo mkswap /dev/sda2 UUID=46c1a133-bfdd-4695-a484-08fcf8286896 <== The original UUID of the swap partition

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文