Is there a way to extract the contents of an ISO image file to a folder in one step?
I have been doing this and want to do less typing, and not to have to do the mount -o loop
as well as the need to be root to do the mount command to access the ISO image contents:
cp rhel-server-7.6-x86_64-dvd.iso /home/ron/
mkdir /home/ron/temp
mount -o loop /root/rhel-server-7.6-x86_64-dvd.iso /home/ron/temp
mkdir /home/ron/rhel7.6dvd
mv /home/ron/temp/* /home/ron/rhel7.6dvd
rmdir /home/ron/temp
7z x my.iso
not sure it can get any better than that. – ron Jan 12 '22 at 16:32