This is a static archive of the old Zorin Forum.

The information below may be outdated. Visit the new Zorin Forum here ›

If you have registered on the old forum, you will need to create an account on the new forum.

How to make a folder shortcut

hurtman

Thu Jun 05, 2014 1:05:41 pm

I'm running OS 8 Lite. How do you make a folder shortcut on the desktop? I'm having trouble finding the answer online. Thanks.

Wolfgang02

Thu Jun 05, 2014 10:41:44 pm

In Linux a shortcut is called a symbolic link. A symbolic link is a file which points to another file just like a shortcut in the Windows world. I am not sure how you would achieve this using a GUI but in command line language:
Code:
sudo ln -s shortcuthere filehere

e.g. If you would like to create a shortcut of a directory say /usr/games to my desktop:
Code:
sudo ln -s /home/usr/desktop /usr/games

Hope that helps a little.

May be someone knows of a way using a GUI?

P.S. If you have a directory My Documents then in a command line this is /My\ Documents (in other words replace the space with back slash space).

Swarfendor437

Fri Jun 06, 2014 11:08:02 am

Haven't got light to hand but the simplest 'workaround' is:

1. Open /home folder

2. Open Desktop folder

3. Right-click the opened Desktop folder and select 'Create New Folder' ;)

hurtman

Sun Jun 08, 2014 1:32:39 am

Thanks Wolfgang02. That solution worked for me.

Swarfendor437

Sun Jun 08, 2014 10:22:56 am

Also check out a tip I found on the net recently:

viewtopic.php?f=6&t=7596