Unable to Mount device in Ubuntu 16.04

ortoch

Honorable
Sep 29, 2013
22
0
10,510
So I had a 50GB VM that I created and I recently added more drives and expanded the storage for the VM to 1.5TB. It has my boot/root/swap on sda1,2,5 respectively but added the extra storage space under ambiguous sda without a number. When I go to mount sda which shows 1.5TB of space it says this.

mount: /dev/sda is already mounted or /home/*/* busy

Here is my /etc/fstab

# /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>
/dev/mapper/ubuntu--vg-root / ext4 errors=remount-ro 0 1
# /boot was on /dev/sda1 during installation
UUID=0819a1c6-ba49-4f89-8504-b671c6d185c5 /boot ext2 defaults
0 2
/dev/mapper/ubuntu--vg-swap_1 none swap sw 0 0
/dev/sdb /home/*/* ext4 defaults 0 0
/dev/sda /home/*/* ext4 defaults 0 0

Here is fdisk -l

Disk /dev/sda: 1.5 TiB, 1649267441664 bytes, 3221225472 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disklabel type: dos
Disk identifier: 0xd102cca2

Device Boot Start End Sectors Size Id Type
/dev/sda1 * 2048 999423 997376 487M 83 Linux
/dev/sda2 1001470 104855551 103854082 49.5G 5 Extended
/dev/sda5 1001472 104855551 103854080 49.5G 8e Linux LVM


Disk /dev/sdb: 20 TiB, 21990232555520 bytes, 42949672960 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes


Disk /dev/mapper/ubuntu--vg-root: 27.5 GiB, 29548871680 bytes, 57712640 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes


Disk /dev/mapper/ubuntu--vg-swap_1: 22 GiB, 23622320128 bytes, 46137344 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes


Any ideas as to how to get that extra storage on sda mounted somewhere?