标题: 把/dev/hda5 这个linux分区做成cramfs格式的文件系统,怎么做? [打印本页] 作者: wangpeng168 时间: 2009-05-12 17:37 标题: 把/dev/hda5 这个linux分区做成cramfs格式的文件系统,怎么做? usage: mkfs.cramfs [-h] [-v] [-b blksz] [-e edition] [-i file] [-n name] dirname outfile
-h print this help
-v be verbose
-E make all warnings errors (non-zero exit status)
-b blksz use this blocksize, must equal page size
-e edition set edition number (part of fsid)
-i file insert a file image into the filesystem (requires >= 2.4.0)
-n name set name of cramfs filesystem
-p pad by 512 bytes for boot code
-s sort directory entries (old option, ignored)
-z make explicit holes (requires >= 2.3.39)
dirname root of the filesystem to be compressed
outfile output file
大家看看那,我想把/dev/hda5 这个linux分区做成cramfs格式的文件系统,怎么做?作者: connet 时间: 2009-05-12 21:41
mkfs.cramfs target_dir yourcramfs
dd if=cramfs of=/dev/hda5