linux下工具exfs用法
生活随笔
收集整理的這篇文章主要介紹了
linux下工具exfs用法
小編覺得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.
背景:買了一塊新的ssd硬盤,掛載到ubuntu下。
1、快速格式化:
1)查看ssd硬盤的盤符:?sudo fdisk -l?
2)快速格式化:?sudo?mkfs.ext4 -T default /dev/sdc?
關(guān)于mkfs命令的T參數(shù),?man?mkfs.ext4?有一段解釋:
-T usage-type[,...]Specify how the filesystem is going to be used, so that mke2fs can choose optimal filesystem parameters for that use. Theusage types that are supported are defined in the configuration file /etc/mke2fs.conf. The user may specify one or moreusage types using a comma separated list.If this option is is not specified, mke2fs will pick a single default usage type based on the size of the filesystem to becreated. If the filesystem size is less than 3 megabytes, mke2fs will use the filesystem type floppy. If the filesystemsize is greater than or equal to 3 but less than 512 megabytes, mke2fs(8) will use the filesystem type small. If thefilesystem size is greater than or equal to 4 terabytes but less than 16 terabytes, mke2fs(8) will use the filesystem typebig. If the filesystem size is greater than or equal to 16 terabytes, mke2fs(8) will use the filesystem type huge. Other‐wise, mke2fs(8) will use the default filesystem type default.2、掛載:
mkdir -p /mnt/abc mount -t auto /dev/sdc /mnt/abc3、
1)卸載:?umount /mnt/abc?
2)如果碰到無法卸載,提示:device is busy等等,可以用fuser命令:?fuser -km /mnt/abc?
總結(jié)
以上是生活随笔為你收集整理的linux下工具exfs用法的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: php课程 6-20 字符串基础和去除
- 下一篇: Linux下Oracle 12c的卸载