How do I view all available HDD's/partitions?

Casey Hungler

I found a 6 GB IDE HDD in my basement. I want to plug it in and see what might be on it. The drive seems to be recognized in BIOS.

I can't find it in Ubuntu to view files, and Ubuntu is the only OS on that particular computer. I was wondering if Ubuntu has an equivalent to the Windows feature "My Computer", which lists all available drives/storage devices. Typically, My Computer shows C:, which can be opened to view all of your directories and files. At this point, it is very similar to Ubuntu's Home Folder.

How to view/select all available partitions of that drive or all available HDD's without formatting or tampering with the contents in any way?

Luis Alvarado

There are many ways but my favorite is lsblk. Here is a demonstration:

sudo lsblk -o NAME,FSTYPE,SIZE,MOUNTPOINT,LABEL

That would show the following:

NAME   FSTYPE   SIZE MOUNTPOINT LABEL
sda           111.8G            
├─sda1 swap     121M [SWAP]     
└─sda2 ext4   111.7G /          
sdb             2.7T            
└─sdb1 ext4     2.7T            xtreme
sdc             3.7T            
└─sdc1 ext4     3.7T            titan

It is showing:

  • The name of the drive and the partitions it has.
  • The type of file system.
  • The size the whole drive has and the size each partition has.
  • The mount point and if available, the label for them.

You can play around with the options by first looking at the ones available with lsblk --help. I like lsblk because of the friendly way of showing the information if compared for example with fdisk or parted.

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

How do I view all available HDD's/partitions?

From Dev

How do I view the "Screenshot: available via screen"?

From Dev

How do I view the "Screenshot: available via screen"?

From Dev

How do I view all of the entries in man?

From Dev

How do I view all the disks?

From Dev

How do I get a list of all of the available dbus properties?

From Dev

With the iOS Photos Framework how do I list all PHAssetCollections available?

From Dev

How do I list all available shell builtin commands?

From Dev

How do I list all available shell builtin commands?

From Dev

How do I get a list of all of the available dbus properties?

From Dev

linux: How can I view all UUIDs for all available disks on my system?

From Dev

How do I view all duplicates across all rows?

From Dev

How to view all colormaps available in matplotlib?

From Dev

How do i completely wipe my HDD

From Java

How do I view all commits for a specific day?

From Dev

How do I view all work that a specific user has checked in?

From Dev

How do I make the Posts comments available in my homepage and user/show view?

From Dev

Make all Files Available on Local HDD too

From Dev

How can I get all available width?

From Dev

How do I make the input text field take all available width?

From Dev

How do I print a Rust floating-point number with all available precision?

From Dev

How do I list all available SSL CA certificates on CentOS 6?

From Dev

How do I make a custom pipe available to all components in Angular 2?

From Dev

How do I make the input text field take all available width?

From Dev

How do I retrieve all products in inventory, but also any product available with SQL?

From Dev

How do I implement multiple select lists ensuring only unique values are available to all?

From Dev

How do I get a list of all AVAILABLE packages from the repositories that are configured from a command line?

From Dev

How do I list all available SSL CA certificates on CentOS 6?

From Dev

How do I make a custom pipe available to all components in Angular 2?

Related Related

  1. 1

    How do I view all available HDD's/partitions?

  2. 2

    How do I view the "Screenshot: available via screen"?

  3. 3

    How do I view the "Screenshot: available via screen"?

  4. 4

    How do I view all of the entries in man?

  5. 5

    How do I view all the disks?

  6. 6

    How do I get a list of all of the available dbus properties?

  7. 7

    With the iOS Photos Framework how do I list all PHAssetCollections available?

  8. 8

    How do I list all available shell builtin commands?

  9. 9

    How do I list all available shell builtin commands?

  10. 10

    How do I get a list of all of the available dbus properties?

  11. 11

    linux: How can I view all UUIDs for all available disks on my system?

  12. 12

    How do I view all duplicates across all rows?

  13. 13

    How to view all colormaps available in matplotlib?

  14. 14

    How do i completely wipe my HDD

  15. 15

    How do I view all commits for a specific day?

  16. 16

    How do I view all work that a specific user has checked in?

  17. 17

    How do I make the Posts comments available in my homepage and user/show view?

  18. 18

    Make all Files Available on Local HDD too

  19. 19

    How can I get all available width?

  20. 20

    How do I make the input text field take all available width?

  21. 21

    How do I print a Rust floating-point number with all available precision?

  22. 22

    How do I list all available SSL CA certificates on CentOS 6?

  23. 23

    How do I make a custom pipe available to all components in Angular 2?

  24. 24

    How do I make the input text field take all available width?

  25. 25

    How do I retrieve all products in inventory, but also any product available with SQL?

  26. 26

    How do I implement multiple select lists ensuring only unique values are available to all?

  27. 27

    How do I get a list of all AVAILABLE packages from the repositories that are configured from a command line?

  28. 28

    How do I list all available SSL CA certificates on CentOS 6?

  29. 29

    How do I make a custom pipe available to all components in Angular 2?

HotTag

Archive