LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Newbie (https://www.linuxquestions.org/questions/linux-newbie-8/)
-   -   Mounting ext3 partition (https://www.linuxquestions.org/questions/linux-newbie-8/mounting-ext3-partition-327462/)

YaAqoB 05-26-2005 06:25 PM

Mounting ext3 partition
 
I was wondering if some one could please tell me how to mount a ext3 partition in Ubuntu.
I have only ever used Mandrake and that was easy. I can't figure how how to do it with gnome.

auximini 05-26-2005 06:37 PM

On the command prompt:

Code:

% sudo su
(type password)
# mkdir mountpoint
# mount -t ext3 /dev/device mountpoint

to unmount it

Code:

# umount mountpoint

YaAqoB 05-26-2005 06:48 PM

I don't mean to be a pain... but what if I want to add it to my fstab file so it mounts on boot up?

auximini 05-26-2005 07:02 PM

Something like this works

Code:

/dev/device  /mount/point  ext3  defaults 0 0
If you want a normal user to have permission to read and write, instead of "defaults" do:
Code:

uid=(userid)
(userid) can be found by typing "id" on the command line

YaAqoB 05-26-2005 08:44 PM

Thank you very much, thats worked a treat.


All times are GMT -5. The time now is 07:28 PM.