mikshaw
Group: Members
Posts: 4856
Joined: July 2004 |
|
Posted: Mar. 06 2006,15:41 |
|
In most Linux distros you could simply modify /etc/fstab to have it mount automatically. In these distros, the persistence of mountpoints would also give you the ability to make the mountpoint writeable by dsl. However, fstab and mountpoints are rebuilt each time you boot in DSL, so it would be complicated to do this. One thing you could do is add a mount command to /opt/bootlocal.sh, if you are using backup/restore. If not, you could add a sudo mount command to your persistent $HOME/.bash_profile, if you've decided to use persistent home. If you are using it, and it's also on hdc1, then the partition should already be mounted.
You can also make a symlink in $HOME which points to /mnt/hdc1/archive1, for faster access to it:
Code Sample | ln -s /mnt/hdc1/archive1 /home/dsl/ |
-------------- http://www.tldp.org/LDP/intro-linux/html/index.html
|