Support
Forums

Re: Installing 2nd hard drive in existing linux computer

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
Note you will stay in parted shell, shown as (parted)
print out the current HDD con...