在文件中创建新文件系统

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在文件中创建新文件系统相关的知识,希望对你有一定的参考价值。

Basic file system manipulation in Linux (some commands require sudo).
  1. dd if=/dev/zero of=myfsys bs=512M count=1 # creating a 512M zeros file
  2. mke2fs myfilesys # creating a file system out of the file
  3.  
  4. mount myfilesys /mnt -o loop=/dev/loop0 # mounting it as a loop device
  5.  
  6. mkdir /mnt/point1 # creating a mount point
  7. mount /dev/loop0 /mnt/point1 # mounting
  8.  
  9. df /mnt/point1/ # its alive!
  10.  
  11. # results with:
  12. # Filesystem 1K-blocks Used Available Use% Mounted on
  13. # /dev/loop0 516040 400 489428 1% /mnt/point1

以上是关于在文件中创建新文件系统的主要内容,如果未能解决你的问题,请参考以下文章

在捆绑包中创建新文件夹

PhoneGap - 如何在 iOS 文档文件夹中创建新文件

为啥在其中创建新文件时目录的更改时间(ctime)会更改?

设备中创建新相册(粘贴)

通过条件在 pandas csv 文件中创建新列

如何使用apache poi在已存在的excel文件中创建新工作表