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

Windows PowerShell Get-PhysicalDisk equivalent in Linux

Displays physical disks, model names, sizes, transport types and health information.

Windows PowerShell Get-PhysicalDisk
Linux equivalents
Debian/Ubuntu same command
lsblk -d -o NAME,MODEL,SIZE,ROTA,TRAN
Fedora same command
lsblk -d -o NAME,MODEL,SIZE,ROTA,TRAN
Arch same command
lsblk -d -o NAME,MODEL,SIZE,ROTA,TRAN

Overview

What this command does

Displays physical disks, model names, sizes, transport types and health information.

Migration tip: lsblk lists hardware layout. Use smartctl when you need drive health and SMART diagnostics.

Practical tasks

Common use cases

Inspect physical drives

Displays physical disks, model names, sizes, transport types and health information.

lsblk -d -o NAME,MODEL,SIZE,ROTA,TRAN

List physical drives

sudo smartctl -i /dev/sda

Show drive identity

sudo smartctl -a /dev/sda

Show complete SMART data

Ready to run

Copyable Linux commands

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

lsblk -d -o NAME,MODEL,SIZE,ROTA,TRAN
sudo smartctl -i /dev/sda
sudo smartctl -a /dev/sda

Walkthrough

Examples with explanations

lsblk -d -o NAME,MODEL,SIZE,ROTA,TRAN # show physical disk details
sudo smartctl -i /dev/sda # inspect one drive
sudo smartctl -a /dev/sda # read SMART health data

Reference

Common options and variations

Command or optionUse
lsblk -d -o NAME,MODEL,SIZE,ROTA,TRANList physical drives
sudo smartctl -i /dev/sdaShow drive identity
sudo smartctl -a /dev/sdaShow complete SMART data

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 -d -o NAME,MODEL,SIZE,ROTA,TRAN Same command on this distribution.
Fedora same command lsblk -d -o NAME,MODEL,SIZE,ROTA,TRAN Same command on this distribution.
Arch same command lsblk -d -o NAME,MODEL,SIZE,ROTA,TRAN Same command on this distribution.

Keep learning

Related PowerShell Equivalents commands