I already seen examples for adding favorite places on home icon launcher for Documents, Music, Pictures, Downloads and already added it.
Now I want to have also add Windows partition so that when I click it will mount and open in nautilus. I didn't find any example for this anwhere. Is it possible or not, if yes then how ?
It will open my partition only if it is already mounted else nautilus is saying "Could not found /media/SOFTWARES"
– Gaurav Padia Nov 06 '11 at 01:06/etc/fstab
. You should be able to add theuser
flag to the/etc/fstab
line for your Windows partition so you can mount it with the "mount /media/SOFTWARES" command. Then, you can just make the.desktop
file "mount /media/SOFTWARES && nautilus ...`. – gatoatigrado Nov 06 '11 at 01:24.desktop
file. Check out thenoauto
anduser
options for/etc/fstab
. [ http://www.tuxfiles.org/linuxhelp/fstab.html ]. You could, for example, set up the partition in any partition manager, then add the noauto and user options to /etc/fstab. Shouldn't bee too much work. – gatoatigrado Nov 07 '11 at 00:27