< Day Day Up > |
Recipe 9.17. Creating a Filesystem on a New Partition9.17.1 ProblemYou have a brand-new disk partition all ready to go to work. But you can't use it yet. A partition by itself is just a chunk of disk. How do you put a filesystem on it? 9.17.2 SolutionUse the commands specific to the filesystem you want to use.
9.17.3 Discussionmke2fs is for creating Ext2/3 filesystems. It is part of the e2fsprogs package, available from http://e2fprogs.sourceforge.net. mkreiserfs comes with ReiserFS, as part of reiserfsprogs. Get it from http://www.namesys.com. mkfs.jfs is part of jfsutils, from http://www-124.ibm.com/jfs/. mkfs.xfs is part of xfsprogs, which can be downloaded from http://oss.sgi.com/project/xfs. 9.17.4 See Also
|
< Day Day Up > |