Seagate external usb hard drive won't mount

Forum rules
Before you post read how to get help. Topics in this forum are automatically closed 6 months after creation.
Locked
User avatar
67GTA
Level 6
Level 6
Posts: 1301
Joined: Wed Jun 06, 2007 9:49 pm
Location: Kentucky, USA

Re: Seagate external usb hard drive won't mount

Post by 67GTA »

Post the output of

Code: Select all

sudo fdisk -l
from a terminal with the external drive plugged in.
Last edited by LockBot on Wed Dec 28, 2022 7:16 am, edited 1 time in total.
Reason: Topic automatically closed 6 months after creation. New replies are no longer allowed.
"The only thing necessary for the triumph of evil is for good men to do nothing." Edmund Burke
User avatar
67GTA
Level 6
Level 6
Posts: 1301
Joined: Wed Jun 06, 2007 9:49 pm
Location: Kentucky, USA

Re: Seagate external usb hard drive won't mount

Post by 67GTA »

First you need to make a directory to mount it in. Plug in the HDD. Open a terminal and run

Code: Select all

sudo mkdir /media/seagate
You can change seagate to whatever you want to name it. This will just be the name of the folder it will be mounted in inside your /media folder. Then mount it in the /media folder with

Code: Select all

sudo mount /dev/sdc1 /media/seagate
Again, change "seagate" to whatever you chose in step 1. It should be mounted.
"The only thing necessary for the triumph of evil is for good men to do nothing." Edmund Burke
User avatar
67GTA
Level 6
Level 6
Posts: 1301
Joined: Wed Jun 06, 2007 9:49 pm
Location: Kentucky, USA

Re: Seagate external usb hard drive won't mount

Post by 67GTA »

Try

Code: Select all

sudo mount -t vfat /dev/sdc1 /media/seagate
"The only thing necessary for the triumph of evil is for good men to do nothing." Edmund Burke
User avatar
67GTA
Level 6
Level 6
Posts: 1301
Joined: Wed Jun 06, 2007 9:49 pm
Location: Kentucky, USA

Re: Seagate external usb hard drive won't mount

Post by 67GTA »

Try mounting it with this

Code: Select all

sudo mount /dev/sdb1 /media/seagate vfat defaults,users,dmask=027,fmask=137 0 0
"The only thing necessary for the triumph of evil is for good men to do nothing." Edmund Burke
User avatar
67GTA
Level 6
Level 6
Posts: 1301
Joined: Wed Jun 06, 2007 9:49 pm
Location: Kentucky, USA

Re: Seagate external usb hard drive won't mount

Post by 67GTA »

Try adding this to fstab:

Code: Select all

/dev/sdc1 /media/seagate vfat	noauto,iocharset=utf8,uid=1000,gid=1000,umask=000  0    0
"The only thing necessary for the triumph of evil is for good men to do nothing." Edmund Burke
User avatar
67GTA
Level 6
Level 6
Posts: 1301
Joined: Wed Jun 06, 2007 9:49 pm
Location: Kentucky, USA

Re: Seagate external usb hard drive won't mount

Post by 67GTA »

Sorry for the late post. I haven't checked my email in a while. You might try using chmod to change the permissions. Right click on the desktop icon when it is mounted, and see who owns it(probably root). If so, open a terminal and try

Code: Select all

sudo chmod -R  a-rwx /dev/sdc1
"The only thing necessary for the triumph of evil is for good men to do nothing." Edmund Burke
Locked

Return to “Storage”