Drive is not mounting

I think I found out why I can not see a directory.

I do not think dev/sda2 is being mounted.

I saw in gparted that it has no mountpoint.

Is that required?

Thanks.
The line before the swapfile is my attempt at fixing that.

# /etc/fstab: static file system information.
#
# Use 'blkid' to print the universally unique identifier for a
# device; this may be used with UUID= as a more robust way to name devices
# that works even if disks are added and removed. See fstab(5).
#
# <file system> <mount point>   <type>  <options>       <dump>  <pass>
# / was on /dev/sda1 during installation

UUID=81353260-b5a5-4b72-9fce-432e7c620fdc /               ext4    errors=remount-ro 0       1

UUID=b3b0f384-9e2e-45f5-8995-932f1113f59d /media/storagedrive/               ext3    defaults 0
#/dev/sdb2: LABEL="MAXTOR_SDB2" UUID="e0dadb1c-0161-4862-8e95-7c42d8f7fb03" SEC_TYPE="ext2" TYPE="ext3" PARTUUID="000f0791-02"

UUID=e0dadb1c-0161-4862-8e95-7c42d8f7fb03 /media/andy/MAXTOR_SDB2            ext3    defaults 0 
# This aint working.
#UUID=5b4b2ae5-9aaa-4559-9f41-afb313998c75           ext4    defaults 0

# /swapfile                                 none            swap    sw              0       0

/etc/fstab has 6 fields, you are missing the last field (a zero).

lsblk -f will list all drives and their filesystem.

sudo mount -a should mount all drives found in /etc/fstab

df will show the mounted drives

1 Like