如何将ftp挂载的.iso文件挂载到ubuntu

如何将ftp挂载的.iso文件挂载到ubuntu

在我的窗口中,我创建了一个文件夹。我已经使用curftps 安装了该文件夹。成功了。该文件夹中有一个 .iso 文件(centos.iso)。然后我尝试再次将该 iso 映像挂载到我的 linux 的挂载点。但没有成功。

root@UbuntuServer:/mnt/test# mount -o loop CentOS-7-x86_64-Everything-1804.iso /mnt/test2/
mount: /mnt/test/CentOS-7-x86_64-Everything-1804.iso: failed to setup loop device: Operation not supported  


root@UbuntuServer:~# curlftpfs ftp://randeer:[email protected] /mnt/test/
root@UbuntuServer:~# ls -l
total 0
root@UbuntuServer:~# cd /mnt/test/
root@UbuntuServer:/mnt/test# ls
CentOS-7-x86_64-Everything-1804.iso  new public             rootnewprivate.ppk
fromcentos.txt                       randeernewprivate.ppk  rootpub
root@UbuntuServer:/mnt/test# mount CentOS-7-x86_64-Everything-1804.iso /mnt/test                                                                                        2/ -t iso9600 -o loop
mount: /mnt/test/CentOS-7-x86_64-Everything-1804.iso: failed to setup loop device

我的截图

答案1

curftps 是用户空间,mount Loopback 是内核空间。内核看不到用户空间安装的文件。使用弗塞索用于安装这是基于用户空间的解决方案。

相关内容