← All commands
Topic hub PowerShell Equivalents
Windows Linux PowerShell Equivalents Disk & Storage

Windows PowerShell Get-Volume equivalent in Linux

Shows block devices, filesystem types, labels, UUIDs and mount points.

Windows PowerShell Get-Volume
Linux equivalents
Debian/Ubuntu same command
lsblk -f
Fedora same command
lsblk -f
Arch same command
lsblk -f

Overview

What this command does

Shows block devices, filesystem types, labels, UUIDs and mount points.

Migration tip: lsblk -f gives a tree of devices and filesystems. findmnt focuses on currently mounted filesystems.

Practical tasks

Common use cases

List volumes and filesystems

Shows block devices, filesystem types, labels, UUIDs and mount points.

lsblk -f

List devices and filesystem metadata

findmnt

Show the mount tree

findmnt /home

Find the filesystem mounted at /home

Ready to run

Copyable Linux commands

Review paths, device names, package names and permissions before running any command.

lsblk -f
findmnt
findmnt /home

Walkthrough

Examples with explanations

lsblk -f # list volumes and filesystems
findmnt # show mounted filesystems
findmnt /home # identify the /home mount

Reference

Common options and variations

Command or optionUse
lsblk -fList devices and filesystem metadata
findmntShow the mount tree
findmnt /homeFind the filesystem mounted at /home

Distro differences

Debian/Ubuntu vs Fedora vs Arch

This command is the same on Debian/Ubuntu, Fedora and Arch Linux when the relevant tool is installed.

DistributionPackage manager / baseEquivalent commandDifference to notice
Debian/Ubuntu same command lsblk -f Same command on this distribution.
Fedora same command lsblk -f Same command on this distribution.
Arch same command lsblk -f Same command on this distribution.

Keep learning

Related PowerShell Equivalents commands