| Summary Creating Partitions File Systems Mounting File System Files /etc/fstab |
Creating and mounting Filesystem files
dd if=/dev/zero of=new_filesystem_filename seek=100 count=1 bs=1M
Now make a filesystem on that file.
/sbin/mkfs -t ext3 new_filesystem_filename
Mount the file for use. (It can also used for user mode linux without mounting)
mount -o loop -t ext3 new_filesystem_filename /mnt/tmp