I have an extra ext3 primary partition that I wanted to mount for a particular Linux user account. I ran mkdir, mount, chown, and all was good. However, upon reboot I have discovered that the partition is no longer mounted. How can I mount, and keep mounted, an extra partition in Linux? The hard disk is SATA, if that matters. Thanks.
|
feedback
|
|
You will need to edit your /etc/fstab file to include a line detailing the filesystem, mount point and options. Here's a good post from the ubuntu forums detailing the fstab file. | ||||
|
feedback
|
|
Edit the your /etc/fstab and add a new line that looks similar to the following:
For more information and a list of the options/filesystem types available, you can either 'man fstab' or visit the Wikipedia entry. | |||||||
feedback
|