12.2. CD / DVD

简介:

12.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
		

12.2.2. create iso file from CD

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

12.2.3. burner

12.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
		




原文出处:Netkiller 系列 手札
本文作者:陈景峯
转载请与作者联系,同时请务必标明文章原始出处和作者信息及本声明。

目录
相关文章
|
2月前
|
Shell Linux
CentOS7下安装hdf5r包
CentOS7下安装hdf5r包
|
Linux
centos下的rar解压
centos下的rar解压
370 0
|
Ubuntu 数据安全/隐私保护
Ubuntu tar 命令
Ubuntu tar 命令
239 0
|
Linux
4.8 Linux解压.bz2格式的文件(bunzip2命令)
要解压“.bz2”格式的压缩包文件,除了使用“bzip2 -d 压缩包名”命令外,还可以使用 bunzip2 命令。
298 0
4.8 Linux解压.bz2格式的文件(bunzip2命令)
|
Linux
centos解压 tar.gz文件
解压到当前目录解压到指定目录
3442 0
|
SQL 分布式计算 Hadoop
|
Web App开发 关系型数据库 MySQL
|
Linux
linux 解压tar.bz2
.bz2    解压1: bzip2 -d FileName.bz2    解压2: bunzip2 FileName.bz2    压缩: bzip2 -z FileName .
767 0