Are you mounting it using fstab or manually mounting it?
What is the drive formatted as?
What permissions are given to the root of the filesystem on the drive?
What are the permissions on the mount point?
What are the permissions on the device file?
As the user try:
Code:
mkdir ~/mntdrive
mount /dev/hdb0 ~/mntdrive
And/Or edit your fstab to automount it:
Code:
/dev/hdb0 /mnt/hdb0 ext3 auto 1 1
Part by part that's
/dev/hdb0 the drive, you'll know what /dev it is-- I just guessed that it was a IDE drive with one partion which could be either hdb0 or hdb1.
/mnt/hdb0 is the mount point -- you may want to create a better mount location than OS defaults. I assumed the defaults and the same assumption for what the device is.
ext3 is the file type, if you used fat, ext2, raiser ... then specify it the way you would after the [red]-t[/red] in the mount command
auto means automatically mount at boot, and will use the defaults so it'll act like / does... If this doesn't work, you may want to try user.
1 1 are dump and fsck.
Dump as 1 means to backup the drive using dump periodically. You may wish to make this 0 depending on your system.
Fsck will run fsck on boot when the drive when the filesystem requests it. You know those boot messages "You've gone 30000 without rebooting or running fsck... Checking file system..."
More info:
[plug=shameless]
[/plug]