Hey I was wondering if there is a command that will display what filesystem my partitions are using. I’m looking for something specific that’ll display if its ext3, ext4 etc… I’ve tried df -h etc.
thanks!
Hey I was wondering if there is a command that will display what filesystem my partitions are using. I’m looking for something specific that’ll display if its ext3, ext4 etc… I’ve tried df -h etc.
thanks!
If it is already mounted, just use mount command without any parameters.
mount
On Mon, 2010-04-19 at 03:46 +0000, syampillai wrote:
> If it is already mounted, just use mount command without any
> parameters.
>
> Code:
> --------------------
> mount
> --------------------
>
>
If it’s not mounted and you want the info… oddly enough… if
you have the privs… you can use the file command on the
partition device.
e.g. file -s /dev/sda2
It does require privs though (file just reads it a bit).