在文件中创建新文件系统
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在文件中创建新文件系统相关的知识,希望对你有一定的参考价值。
Basic file system manipulation in Linux (some commands require sudo).
dd if=/dev/zero of=myfsys bs=512M count=1 # creating a 512M zeros file mke2fs myfilesys # creating a file system out of the file mount myfilesys /mnt -o loop=/dev/loop0 # mounting it as a loop device mkdir /mnt/point1 # creating a mount point mount /dev/loop0 /mnt/point1 # mounting df /mnt/point1/ # its alive! # results with: # Filesystem 1K-blocks Used Available Use% Mounted on # /dev/loop0 516040 400 489428 1% /mnt/point1
以上是关于在文件中创建新文件系统的主要内容,如果未能解决你的问题,请参考以下文章