linux – 创建没有mount的虚拟软盘映像?

前端之家收集整理的这篇文章主要介绍了linux – 创建没有mount的虚拟软盘映像?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
有很多帖子要显示,以创建一个虚拟的软盘映像文件作为超级用户用户可以运行sudo命令.基本步骤是:

>通过dd命令创建空的1.44MB映像文件
>通过mkfs.msdos格式化图像文件
>将图像文件安装到某个安装点
>将东西复制到安装点
> umount虚拟软盘映像文件

我的问题是,如果我只是一个普通用户谁不能运行sudo命令,我该如何遵循上述步骤来创建一个虚拟的软盘映像和写一些东西?

非常感谢.

解决方法

是的,当然可以这样做.对于ext2文件系统,使用mtools作为FAT和e2tools或genext2fs.
  1. $dd if=/dev/zero of=/tmp/disk1.img count=1440 bs=1k
  2. 1440+0 records in
  3. 1440+0 records out
  4. 1474560 bytes (1.5 MB) copied,0.00569719 s,259 MB/s
  5.  
  6. $/sbin/mkfs.msdos /tmp/disk1.img
  7. mkfs.msdos 3.0.12 (29 Oct 2011)
  8.  
  9. $mdir -i /tmp/disk1.img
  10. Volume in drive : has no label
  11. Volume Serial Number is 9913-BFF6
  12. Directory for ::/
  13.  
  14. No files
  15. 1 457 664 bytes free
  16.  
  17. $mcopy -i /tmp/disk1.img /etc/issue.net ::/
  18. $mdir -i /tmp/disk1.img
  19. Volume in drive : has no label
  20. Volume Serial Number is 9913-BFF6
  21. Directory for ::/
  22.  
  23. issue net 28 2012-06-26 10:49
  24. 1 file 28 bytes
  25. 1 457 152 bytes free

当然,我没有根本的权利.

猜你在找的Linux相关文章