50 likes | 55 Views
Sometimes you may need to extract & copy files from ISO image in Linux. Here are the steps to do it.<br>#iso #linux <br><br>Visit https://fedingo.com/how-to-extract-copy-files-from-iso-image-in-linux/
E N D
Mount or Extract ISO File in Linux Open terminal and run the following command to mount or extract ISO file in Linux. $ sudo mkdir /mnt/iso Once the directory has been mounted, you can easily mount the ISO file and verify its content. We have used Ubuntu 16.10’s ISO image. $ sudo mount -o loop ubuntu-16.10-server-amd64.iso /mnt/iso $ ls /mnt/iso/
Using 7Zip Command If you don’t want to mount ISO image, you can use 7Zip, which is a free archive program, used to pack or unpack different file formats such as TAR, XZ, GZIP, ZIP and more. $ sudo apt-get install p7zip-full p7zip-rar [On Debian/Ubuntu systems] $ sudo yum install p7zip p7zip-plugins [On CentOS/RHEL systems] Once 7zip is installed, run the following command to extract ISO file’s contents. $ 7z x ubuntu-16.10-server-amd64.iso
Using ISOinfo Command IsoInfo command is used for directory listing of ISO9660 images. But it can be used to extract files. Here is the command to list contents of ISO file. $ isoinfo -i ubuntu-16.10-server-amd64.iso -l Here is the command to extract single file from ISO image. We use -x option so that the output is redirected to desired file, instead of standard output. $ isoinfo -i ubuntu-16.10-server-amd64.iso -x MD5SUM.TXT > MD5SUM.TXT
Thank You Visit for details https://fedingo.com/how-to-extract-copy-files-from-iso-image-in-linux/