Linux 命令: 新建建文件系统--mkfs
使用方式 : mkfs [-V] [-t fstype] [fs-options] device [blocks]
说明 : 建立 linux 档案系统在特定的 partition 上
在 /dev/hda3上建一个 msdos 的档案系统,
同时检查是否有坏轨存在,并且将过程详细列出来 :
mkfs -V -t msdos -c /dev/hda3
Linux Manual:
[root@embedded ~]# man mkfs | cat
MKFS(8) MKFS(8)
NAME
mkfs - build a Linux file system
SYNOPSIS
mkfs [ -V ] [ -t fstype ] [ fs-options ] filesys [ blocks ]
DESCRIPTION
mkfs is used to build a Linux file system on a device, usually a hard
disk partition. filesys is the device name (e.g. /dev/hda1,
/dev/sdb2). blocks is the number of blocks to be used for the file
system.
The exit code returned by mkfs is 0 on success and 1 on failure.
In actuality, mkfs is simply a front-end for the various file system
builders (mkfs.fstype) available under Linux. The file system-specific
builder is searched for in a number of directories like perhaps /sbin,
/sbin/fs, /sbin/fs.d, /etc/fs, /etc (the precise list is defined at
compile time but at least contains /sbin and /sbin/fs), and finally in
the directories listed in the PATH environment variable. Please see
the file system-specific builder manual pages for further details.
OPTIONS
-V Produce verbose output, including all file system-specific com-
mands that are executed. Specifying this option more than once
inhibits execution of any file system-specific commands. This
is really only useful for testing.
-t fstype
Specifies the type of file system to be built. If not speci-
fied, the default file system type (currently ext2) is used.
fs-options
File system-specific options to be passed to the real file sys-
tem builder. Although not guaranteed, the following options are
supported by most file system builders.
-c Check the device for bad blocks before building the file system.
-l filename
Read the bad blocks list from filename
-v Produce verbose output.
BUGS
All generic options must precede and not be combined with file system-
specific options. Some file system-specific programs do not support
the -v (verbose) option, nor return meaningful exit codes. Also, some
file system-specific programs do not automatically detect the device
size and require the blocks parameter to be specified.
AUTHORS
David Engel ([email protected])
Fred N. van Kempen ([email protected])
Ron Sommeling ([email protected])
The manual page was shamelessly adapted from Remy Card’s version for
the ext2 file system.
SEE ALSO
fs(5), badblocks(8), fsck(8), mkdosfs(8), mke2fs(8), mkfs.bfs(8),
mkfs.ext2(8), mkfs.ext3(8), mkfs.minix(8), mkfs.msdos(8), mkfs.vfat(8),
mkfs.xfs(8), mkfs.xiafs(8)
Version 1.9 Jun 1995 MKFS(8)
补充:
[root@embedded ~]# man swapon | cat
SWAPON(8) Linux Programmer’s Manual SWAPON(8)
NAME
swapon, swapoff - enable/disable devices and files for paging and swap-
ping
SYNOPSIS
/sbin/swapon [-h -V]
/sbin/swapon -a [-v] [-e]
/sbin/swapon [-v] [-p priority] specialfile ...
/sbin/swapon [-s]
/sbin/swapoff [-h -V]
/sbin/swapoff -a
/sbin/swapoff specialfile ...
DESCRIPTION
Swapon is used to specify devices on which paging and swapping are to
take place.
The device or file used is given by the specialfile parameter. It may
be of the form -L label or -U uuid to indicate a device by label or
uuid.
Calls to swapon normally occur in the system multi-user initialization
file /etc/rc making all swap devices available, so that the paging and
swapping activity is interleaved across several devices and files.
Normally, the first form is used:
-a All devices marked as ‘‘swap’’ swap devices in /etc/fstab are
made available, except for those with the ‘‘noauto’’ option.
Devices that are already running as swap are silently skipped.
-e When -a is used with swapon, -e makes swapon silently skip
devices that do not exist.
-h Provide help
-L label
Use the partition that has the specified label. (For this,
access to /proc/partitions is needed.)
-p priority
Specify priority for swapon. This option is only available if
swapon was compiled under and is used under a 1.3.2 or later
kernel. priority is a value between 0 and 32767. Higher numbers
indicate higher priority. See swapon(2) for a full description
of swap priorities. Add pri=value to the option field of
/etc/fstab for use with swapon -a.
-s Display swap usage summary by device. Equivalent to "cat
/proc/swaps". Not available before Linux 2.1.25.
-U uuid
Use the partition that has the specified uuid. (For this,
access to /proc/partitions is needed.)
-v Be verbose.
-V Display version
Swapoff disables swapping on the specified devices and files. When the
-a flag is given, swapping is disabled on all known swap devices and
files (as found in /proc/swaps or /etc/fstab).
NOTE
You should not use swapon on a file with holes. Swap over NFS may not
work.
SEE ALSO
swapon(2), swapoff(2), fstab(5), init(8), mkswap(8), rc(8), mount(8)
FILES
/dev/hd?? standard paging devices
/dev/sd?? standard (SCSI) paging devices
/etc/fstab ascii filesystem description table
HISTORY
The swapon command appeared in 4.0BSD.
Linux 1.x 25 September 1995 SWAPON(8)