Not familiar with fedora so please forgive my ignorance if this does not work as intended.The problem appears to be that the HDD (/dev/sdb) appears to be un-partitioned.Therefore there are no mountable partitions.You could install parted:Code: [Select...
Not familiar with fedora so please forgive my ignorance if this does not work as intended.The problem appears to be that the HDD (/dev/sdb) appears to be un-partitioned.
Therefore there are no mountable partitions.
You could install parted:
Code: [Select]
sudo yum install parted -y
Then list the available
Code: [Select]
sudo fdisk -l
(make sure /dev/sdb is listed)
Then run parted:
Code: [Select]
sudo parted -a optimal /dev/sdb
print out the current HDD con...