博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Linux下如何查看分区文件系统类型
阅读量:4927 次
发布时间:2019-06-11

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

1,fdisk -l 

fdisk -l 只能列出硬盘的分区表、容量大小以及分区类型,但看不到文件系统类型。

 

2,df -h

df 命令是用来查看文件系统磁盘空间使用量的。但df 命令只会列出已挂载的文件系统信息,对于没有挂载的文件系统是查看不到的。使用这个命令可以很方便的查看已挂载的文件系统的空间使用量、剩余空间大小等信息。

 

3,parted

parted  is  a  disk  partitioning and partition resizing program.  It allows you to create, destroy, resize, move and copy ext2, linux-swap, FAT, FAT32, and reiserfs partitions.  It can create, resize, and move Macintosh HFS partitions, as  well  as  detect jfs,  ntfs,  ufs,  and  xfs partitions.  It is useful for creating space for new operating systems, reorganising disk usage, and copying data to new hard disks.

This manual page documents parted briefly.  Complete documentation is distributed with the package in GNU Info format; see  near the bottom.

parted命令就比较强大了,用parted命令可以对大于2TB的磁盘设备进行分区,以及创建GPT分区(而fdisk命令就办不到了)。

如果要查看 /dev/sda 各分区的文件系统类型,可以按照以下步骤来查看:

 
 
 

转载于:https://www.cnblogs.com/wuchanming/p/3741035.html

你可能感兴趣的文章
关于css样式2
查看>>
Navicat使用ssh连接数据库
查看>>
python[pip源配置]
查看>>
bzoj4820: [Sdoi2017]硬币游戏
查看>>
iOS UIScrollView
查看>>
常见HTTP状态码
查看>>
vim 空格和换行的删除和替换
查看>>
ionic 入门学习
查看>>
[python]pickle和cPickle
查看>>
末日了,天是灰色的。
查看>>
Vuejs vm对象详解
查看>>
hdu 3342 Legal or Not 拓排序
查看>>
ssh免密码登录
查看>>
Django settings.py 的media路径设置
查看>>
自定义RatingBar的一个问题(只显示显示一个星星)
查看>>
jmeter提取正则表达式中所有关联值-----我想获取所有的ID
查看>>
[bzoj1819] [JSOI]Word Query电子字典
查看>>
【MCU】【STM32】1.cube MX库使用笔记
查看>>
web 本地存储 (localStorage、sessionStorage)
查看>>
iOS中多控制器的使用
查看>>