博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
linux下工具exfs用法
阅读量:5172 次
发布时间:2019-06-13

本文共 1445 字,大约阅读时间需要 4 分钟。

背景:买了一块新的ssd硬盘,挂载到ubuntu下。

1、快速格式化:

1)查看ssd硬盘的盘符: sudo fdisk -l 

2)快速格式化: sudo mkfs.ext4 -T default /dev/sdc 

关于mkfs命令的T参数, 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.   The              usage  types  that  are supported are defined in the configuration file /etc/mke2fs.conf.  The user may specify one or more              usage 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  be              created.   If  the filesystem size is less than 3 megabytes, mke2fs will use the filesystem type floppy.  If the filesystem              size is greater than or equal to 3 but less than 512 megabytes, mke2fs(8) will use  the  filesystem  type  small.   If  the              filesystem  size is greater than or equal to 4 terabytes but less than 16 terabytes, mke2fs(8) will use the filesystem type              big.  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/abcmount -t auto /dev/sdc /mnt/abc

3、

1)卸载: umount /mnt/abc 

2)如果碰到无法卸载,提示:device is busy等等,可以用fuser命令: fuser -km /mnt/abc 

转载于:https://www.cnblogs.com/litifeng/p/9163669.html

你可能感兴趣的文章
qcow2、raw、vmdk等镜像格式
查看>>
Jzoj5455【NOIP2017提高A组冲刺11.6】拆网线
查看>>
特定字符序列的判断(1028)
查看>>
华为面试
查看>>
平衡二叉树(AVL Tree)
查看>>
【BZOJ3295】[Cqoi2011]动态逆序对 cdq分治
查看>>
【CF799E】Aquarium decoration 线段树
查看>>
大运飞天 鲲鹏展翅
查看>>
从ECMA到W3C
查看>>
软件工程--第十六周学习进度
查看>>
yii2 ActiveRecord多表关联以及多表关联搜索的实现
查看>>
搜狗输入法安装--ubuntu
查看>>
ps/2接口键盘的输入及显示
查看>>
Swift———a Glance(极客学院)笔记
查看>>
【poj3294-不小于k个字符串中最长公共子串】后缀数组
查看>>
java如何获取其它用户登录的真是IP地址
查看>>
Jquery通过指定层次关系获取元素
查看>>
c# for 和 foreach 的区别
查看>>
docfx (一)
查看>>
HashMap底层实现原理/HashMap与HashTable区别/HashMap与HashSet区别
查看>>