linux + 如何将ISO文件分割成单独的部分

linux + 如何将ISO文件分割成单独的部分

我们使用以下 ISO 文件进行 rhel 升级

4.2G    RHEL-7.6.iso

因为我们在 WIN 和 Linux 机器之间复制此 ISO 文件时遇到问题

因为有时网络问题会导致 ISO 文件损坏

我们正在考虑是否可以使用split命令对 tar.gz 文件执行 ISO 文件分割

例子

RHEL-7.6.iso.part
RHEL-7.6.iso.part
RHEL-7.6.iso.part
RHEL-7.6.iso.part

这样每个文件都会变得更好~1G,通过这种 ISO 传输会更好

但在谷歌搜索后,我们没有找到 ISO 分割的选项,但我也想在这里问一下,以确保我没有错过分割 ISO 文件的选项

参考 -

https://www.linux.com/training-tutorials/split-and-join-targz-file-linux/

https://www.howtoing.com/split-large-tar-into-multiple-files-of-certain-size/

答案1

我用谷歌福发现了这个

split -b [size of split pieces] [file to split] [split file prefix]

https://www.thegeekdiary.com/how-can-i-split-a-file-to-several-smaller-pieces/

相关内容