Hi,
I want to create a link under my home folder that points to a folder on a mounted NAS device. So, for example, I want /home/music to point to /mnt/linkstation/music
I notice there is a command line option ln. But I'm not sure whether directory links are treated differently than file links, and if I need to use different options. I assume I would want to open terminal and enter
Although I don't know whether I need to include the "/" before music or not, or whether the folder /home/music needs to exist first of not. I also notice that ln has an option for symbolic vs hard. Which would I want to use in this case? What's the difference?
And as if those questions weren't enough, I was also wondering how I would do this directly through konquerer? I notice that if I right click I can select create new -> link to location (url) OR link to application OR link to Device (lots of sub-options). But I have no clue which is the one I would want to use.
Thanks in advance!
-aleska
I want to create a link under my home folder that points to a folder on a mounted NAS device. So, for example, I want /home/music to point to /mnt/linkstation/music
I notice there is a command line option ln. But I'm not sure whether directory links are treated differently than file links, and if I need to use different options. I assume I would want to open terminal and enter
Code:
ln -T /mnt/linkstation/music /music
And as if those questions weren't enough, I was also wondering how I would do this directly through konquerer? I notice that if I right click I can select create new -> link to location (url) OR link to application OR link to Device (lots of sub-options). But I have no clue which is the one I would want to use.
Thanks in advance!
-aleska
Comment