Hi, i'm loving kubuntu, just a quick question - I have a partition which I would like to store music and other personal files in, just to be seperate from the OS to be on the safe side, how do I mount a partition, where do I access it with read/write access. Thanks in advance, keep up the good work.
Announcement
Collapse
No announcement yet.
simple help needed :-)
Collapse
This topic is closed.
X
X
-
Re: simple help needed :-)
You just need to set up a mount point then add an entry in your /etc/fstab file mounting the partition to the mount point.
For instance, I have a seperate partition for just the same reason as you. it is located at /dev/hda5 and is in vfat format so I can share it with my Windows installation as well. I created a folder in my /mnt directory called "shared"
Code:sudo mkdr /mnt/shared
Code:/dev/hda5 /mnt/shared vfat rw,auto,user,umask=000 0 0
When you look at the fstab file you'll get the idea from the other entries already present for your existing partitions.
Once the entry is there is will mount on each boot but if you want to access it straight away just:
Code:mount /mnt/shared
- Top
- Bottom
Comment