we are using the following ISO file for rhel upgrade
4.2G RHEL-7.6.iso
since we have problem to copy this ISO file between WIN to Linux machine
and that because sometime network problem cause ISO file to be corrupted
we are thinking if it possible to perform ISO file split as can be on tar.gz file with split
command
example
RHEL-7.6.iso.part
RHEL-7.6.iso.part
RHEL-7.6.iso.part
RHEL-7.6.iso.part
so each file will be ~1G
and by this transferring of the ISO will be more better
but after searching in google we not found option for ISO split , but I also want to ask here to be sure that I not miss an option to do split of ISO file
reference -
https://www.linux.com/training-tutorials/split-and-join-targz-file-linux/
https://www.tecmint.com/split-large-tar-into-multiple-files-of-certain-size/
man split
? – Stephen Kitt Oct 29 '20 at 17:19split
and thecat
commands you see into the beginning of this question. Edit the size you want, files will be named in the right order forcat *
them. – thanasisp Oct 29 '20 at 17:35