linux命令詳解之掛載光碟機的方法_linux shell

來源:互聯網
上載者:User

linux的硬體裝置在/dev目錄下,光碟機也是其中。
/dev/cdrom表示光碟機,掛載光碟機的方法如下(以root身份):

複製代碼 代碼如下:

mkdir /mnt/cdrom
mount  -t auto  -o ro  /dev/cdrom    /mnt/cdrom  #不加參數也能自動掛上。

以下是操作的螢幕複製內容:

複製代碼 代碼如下:

linux@cdyemail:/$ ls /mnt   #查看mnt下面有沒有cdrom目錄 ,這個是隨意的目錄。
cdrom  iso  usb  winc  wind
linux@cdyemail:/$ mount /dev/cdrom  /mnt/cdrom   #掛載發現沒有許可權
mount: 只有 root 才能進行此操作
linux@cdyemail:/$ su  #切換到root使用者,也可以用sudo 來取得root許可權。
密碼:
root@cdyemail:/# mount -t auto -o ro  /dev/cdrom  /mnt/cdrom   #-t auto類型自動, -o ro唯讀模式
root@cdyemail:/# ls -l /mnt/cdrom  #查看光碟片內容
總用量 3464
-r--r--r-- 1 root root     143 2010-09-28 19:27 autorun.inf
dr-xr-xr-x 3 root root    2048 2010-09-28 19:28 boot
dr-xr-xr-x 2 root root    2048 2010-09-28 19:28 casper
dr-xr-xr-x 3 root root    2048 2010-09-28 19:28 dists
dr-xr-xr-x 2 root root    2048 2010-09-28 19:28 install
dr-xr-xr-x 2 root root   16384 2010-09-28 19:28 isolinux
-r--r--r-- 1 root root    4880 2010-09-28 19:28 md5sum.txt
dr-xr-xr-x 2 root root    2048 2010-09-28 19:28 pics
dr-xr-xr-x 4 root root    2048 2010-09-28 19:28 pool
dr-xr-xr-x 2 root root    2048 2010-09-28 19:28 preseed
-r--r--r-- 1 root root     237 2010-09-28 19:28 README.diskdefines
lr-xr-xr-x 1 root root       1 2010-09-28 19:28 ubuntu -> .
-r--r--r-- 2 root root 2037229 2010-06-04 19:27 usb-creator.exe
-r--r--r-- 1 root root 1472825 2010-09-01 20:04 wubi.exe
root@cdyemail:/# umount  /mnt/cdrom   #刪除掛載的光碟機
root@cdyemail:/# eject /dev/cdrom         #彈出光碟機
root@cdyemail:/#

附:
對於iso鏡像檔案可以進行掛載

複製代碼 代碼如下:

mount -t iso9660  -o loop  iso檔案   /mnt/iso

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.