LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Hardware (https://www.linuxquestions.org/questions/linux-hardware-18/)
-   -   external hd wont mount. (https://www.linuxquestions.org/questions/linux-hardware-18/external-hd-wont-mount-591272/)

tyfobpo 10-12-2007 05:32 AM

external hd wont mount.
 
when i hook up my external HD, it says it wont mount it. im running suse 10.3.

heres a screen shot

http://img390.imageshack.us/img390/4...eenshotie7.png

Centinul 10-12-2007 05:45 AM

Are you a "regular" user when you try and mount the device? If so it appears your user doesn't have permission to mount this device. What you should probably do is add an entry into your /etc/fstab file for this device so it can be mounted by users. Information about this can be found on Google. Or another alternative would be to find out if openSUSE 10.3 has any auto mounting mechanisms you can modify.

HTH,

Centinul

saikee 10-12-2007 05:58 AM

First thing first. You always mount a partition and can always mount it "manually" if the partition has a healthy filing system when you are in root.

Say a partition sdb3 is needed by a regular user, these terminal commands should get it done "manually"
Code:

su
supply the root password and you are now in root with Suse
Code:

mkdir /mnt/sdb3
mount /dev/sdb3 /mnt/sdb3

Using /etc/fstab is to mount it automatically.

A partition mounted this way by root can allow a regular user to see its content by command
Code:

ls /mnt/sdb3
but it will still protected from viewing in the desktop if the filing system is not owned by the user who mounted it.


All times are GMT -5. The time now is 09:15 PM.