linux下掛載ISO檔案方法

2021-06-04 00:57:47 字數 311 閱讀 3839

假設u盤在linux下被掛載到/media/disk1目錄下,其中iso檔案為isofile.iso,該檔案準備寫入桌面

可以使用如下方法:

使用root登陸系統

# cat /media/disk1/isofile.iso >> /root/desktop

或者# dd if=/media/disk1/isofile.iso of=/root/desktop

掛載的時候

# mount -o,loop /media/disk1/isofile.iso /mnt

這時,iso檔案被掛載到/mnt目錄下了。

Linux下的ISO掛載

linux下掛載iso檔案的方法有兩種 1 軟體 在終端中輸入命令 sudo apt get install furiusisomount 來安裝。在ubuntu 應用程式 ubuntu軟體中心 搜尋iso就可以看到該款軟體 當然你直接搜尋軟體名字更快 2 命令 在終端中通過 sudo mount ...

在linux下掛載ISO映象檔案

掛接命令 mount 首先,介紹一下掛接 mount 命令的使用方法,mount命令引數非常多,這裡主要講一下今天我們要用到的。命令格式 mount t vfstype o options device dir 其中 1.t vfstype 指定檔案系統的型別,通常不必指定。mount 會自動選擇正...

在linux下掛載ISO映象檔案

掛接命令 mount 首先,介紹一下掛接 mount 命令的使用方法,mount命令引數非常多,這裡主要講一下今天我們要用到的。命令格式 mount t vfstype o options device dir 其中 1.t vfstype 指定檔案系統的型別,通常不必指定。mount 會自動選擇正...