Reply
 
Thread Tools Display Modes
  #1  
Old 10-24-2007, 05:45 PM
ranran ranran is offline
Senior Member
 
Join Date: Nov 2006
Posts: 241
Thanks: 0
Thanked 0 Times in 0 Posts
Default Accessing storage drive
Hi folks,

I have a 250GB HDD that I use for storing files. It's FAT32 and yet PC/Desktop BSD can't seem to access it. Win2k and XP read/write to it. Linux does too. *BSD says that it cant mount the drive at all. BSD can see the drive but that is all.
Reply With Quote
  #2  
Old 10-24-2007, 07:02 PM
DragnLord DragnLord is offline
Senior Member
 
Join Date: Feb 2006
Location: C'ville, Va.
Posts: 695
Thanks: 0
Thanked 0 Times in 0 Posts
Default Re: Accessing storage drive
Is it internal or external?
Is it PATA, SATA, SCSI, firewire, or USB?
What errors do you get when you try to mount the drive?

You need to give more information when asking for help.
__________________
add [SOLVED] to topics with solutions
psearch: use it, love it
Reply With Quote
  #3  
Old 10-25-2007, 06:49 AM
graedus graedus is offline
Senior Member
 
Join Date: Jul 2006
Location: .mx
Posts: 606
Thanks: 0
Thanked 0 Times in 0 Posts
Default Re: Accessing storage drive
On 1.4 (on 1.3 I could) I haven't been able to mount any FAT32 USB drives larger than 128 GB via the automount dialogue (after plugging in), via right-click-> mount, or doubleclick on the desktop/Storage Media.

Without making any assumptions on your BSD or unix literacy, I'll try to explain this in a way other users would be able to understand if they happen to consult this thread.

I have no advice as how to do this in the graphic environment, but you can alternatively via the shell adding the "-o large" flag to the mount command. You don't need to issue the command as root, since the detection scripts in PC-BSD give you permissions to mount as the logged user. (You can invoke the shell with a terminal emulator like konsole, clicking the menu->system->konsole)

Example for a typical external USB hard drive (the first usb drive plugged in):
Code:
mount -t msdosfs -o large /dev/da0s1 /mnt/usbdisk
You need the directory to be owned by the user issuing the mount command (in this case /mnt/usbdisk), this is called the mount point. It is valid to use as mount point any newly created directory, such as /usr/home/yourusername/usbdisk, you can create it via the graphic environment in your home folder if you desire.

Be aware that you might freeze your system if you try to unmount/remove via the graphic environment. Use the shell.

Example to umount the disk in the former example:
Code:
umount /mnt/usbdisk
You might want to force unmounting if the command reports the disk is in use and you are not certain what programs are accessing it or you really have no clue what is using it (it has happened to me).

Code:
umount -f /mnt/usbdisk
If you are unable to unmount the disk, the safest way would be to shut down and unplug afterwards (it can happen, since the implementation to access large fat32 disks can consume a lot of memory, depending on the number of files).

Hope this information helps.
Reply With Quote
  #4  
Old 10-25-2007, 12:35 PM
ranran ranran is offline
Senior Member
 
Join Date: Nov 2006
Posts: 241
Thanks: 0
Thanked 0 Times in 0 Posts
Default Re: Accessing storage drive
Originally Posted by DragnLord
Is it internal or external?
Is it PATA, SATA, SCSI, firewire, or USB?
What errors do you get when you try to mount the drive?

You need to give more information when asking for help.

The HDD is an EIDE internal.

Error message -

Mounting operation failed. Possible reasons -

File system not supported
File system is corrupted
Partition table contains wrong data

How is it that only BSD has issues with the HDD. Other Oses see it fine?
Reply With Quote
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Problem accessing mounted DVD-RW drive in 1.4 rodonn General Questions 6 10-27-2007 11:29 AM
Help with Backup storage TerryP General Questions 1 04-09-2007 09:48 PM
FAT32 Drive Present but Not in Storage Media List Inn-Bound Drives 10 01-22-2007 05:49 AM
5 GB Storage Free dracheflieger The Lounge 3 09-14-2006 11:28 AM
Accessing the A Drive JMan General Questions 3 12-11-2005 11:56 PM


All times are GMT. The time now is 08:05 PM.


Powered by vBulletin® Version 3.8.5
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.

Copyright 2005-2010, The PC-BSD Project. PC-BSD and the PC-BSD logo are registered trademarks of iXsystems.
All other content is freely available for sharing under the terms of the Creative Commons Attribution License.