Home | 简体中文 | 繁体中文 | 杂文 | Github | 知乎专栏 | 51CTO学院 | CSDN程序员研修院 | OSChina 博客 | 腾讯云社区 | 阿里云栖社区 | Facebook | Linkedin | Youtube | 打赏(Donations) | About
知乎专栏多维度架构

9.2. CD / DVD

9.2.1. Mount an ISO file

To mount the ISO image file.iso to the mount point /media/cdrom use this :

		
$ mount -o loop -t iso9660 file.iso /media/cdrom
		
			

9.2.2. create iso file from CD

		
$ dd if=/dev/cdrom of=isofile.iso
		
			

9.2.3. burner

9.2.4. ISO Mirror

		
$ mkisofs -V LABEL -r /mnt/cdrom | gzip > cdrom.iso.gz
		
			

mount iso file

		
$ mount -t iso9660 -o loop cdrom.iso /mnt/cdrom