摘要: Mounting a partition means attaching it to the linux file system. To mount a linux partition:# mount -t ext2 /dev/sda1 /opt-t ext2File system type. Other types you are likely to use are:ext3 (journaling sile system based on ext2)msdos (DOS)hfs (mac)iso9660 (CDROM)nfs (network file system)/dev/sda1De 阅读全文
posted @ 2013-03-14 22:45 greencolor 阅读(368) 评论(0) 推荐(0)
摘要: mke2fs /dev/hdb1mkfs.ext2 /dev/hdb1both of which make an ext2 file system on the first partition of the second drive, andmke2fs -j /dev/hdb1mkfs.ext3 /dev/hdb1make an ext3 file system.mkfs.ext3 -m 1/dev/hdb1creates a file system with only 1% of its space reserved for the root user. 阅读全文
posted @ 2013-03-14 22:40 greencolor 阅读(877) 评论(0) 推荐(0)