/dev/loop2 is apparently in use by the system,will not make a filesystem here

内存当做虚拟磁盘的命令losetup:

#dd if=/dev/zero of=/tmp/ramdisk bs=1k count=92160


#losetup /dev/loop2 /tmp/ramdisk


#mkfs.ext2 /dev/loop2


#mount -t ext2 /dev/loop2 /mnt

出现如上的异常:

/dev/loop2 is apparently in use by the system,will not make a filesystem here



说明:

循环设备可把文件虚拟成区块设备,籍以模拟整个文件系统,让用户得以将其视为硬盘驱动器,光驱或软驱等设备,

并挂入当作目录来使用。


你可能感兴趣的:(System,count,光驱,驱动器)