Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -187,6 +187,20 @@ ATA Standard is: ATA-8-ACS revision 3b
Local Time is: Fri Oct 29 11:20:27 2010 CEST
```

## Retrieve disk position

When you create a support ticket to replace a defective disk, you must also provide the **physical location** of the disk.

Use the following command to retrieve the position of all disks, and copy/paste the result into your support ticket:

<Message type="important">
This command works **only for software RAID** setups.
</Message>

```
lsblk --paths --sort HCTL --output hctl,name,size,model,rev,serial,tran,phy-sec --bytes | grep -v loop0
```

<Message type="tip">
For more information on Smartmontools, refer to the [official documentation](https://www.smartmontools.org/wiki/TocDoc).
</Message>
Expand Down