Hello,
In my Mint 20 I want to have some links to folders on the Desktop. E.g. I want Link to Pictures folder rather than go to home directory and then into Pictures.
Earlier on Mint 17 it was easy to set.
Can you suggest how to make it?
How to make links to folders in Mint 20?
Forum rules
There are no such things as "stupid" questions. However if you think your question is a bit stupid, then this is the right place for you to post it. Please stick to easy to-the-point questions that you feel people can answer fast. For long and complicated questions prefer the other forums within the support section.
Before you post please read how to get help
There are no such things as "stupid" questions. However if you think your question is a bit stupid, then this is the right place for you to post it. Please stick to easy to-the-point questions that you feel people can answer fast. For long and complicated questions prefer the other forums within the support section.
Before you post please read how to get help
Re: How to make links to folders in Mint 20?
Drag and drop doesn't work?
ANd since you don;'t say what version you use paste the text output of inxi -Fxz run in the terminal.
ANd since you don;'t say what version you use paste the text output of inxi -Fxz run in the terminal.
Re: How to make links to folders in Mint 20?
That works for me on Mint 20 Xfce, and so does making a link in the Desktop directory (with
ln -s
)...but when I dragged /mnt/DATA/download/temp/
from thunar onto the desktop (icon named temp) I don't get a link (it says it's a directory and it acts like a directory)? And if I create a file in /mnt/DATA/download/temp/ it doesn't show up in the dragged link, but it does show up in a link created by ln -s
...? It's acting like the desktop link (temp) is a directory and it copied the files into it ...?Code: Select all
$ pwd
/home/user/Desktop
$ ls -l
total 4
drwxrwxr-x 2 user user 4096 Nov 20 08:14 temp
lrwxrwxrwx 1 user user 23 Nov 20 08:25 temp-ln -> /mnt/DATA/download/temp
$ file *
temp: directory
temp-ln: symbolic link to /mnt/DATA/download/temp
$
$ ls temp
linux-headers-5.8.0-28-generic_5.8.0-28.30~20.04.1_amd64.deb linux-modules-5.8.0-28-generic_5.8.0-28.30~20.04.1_amd64.deb
linux-hwe-5.8-headers-5.8.0-28_5.8.0-28.30~20.04.1_all.deb linux-modules-extra-5.8.0-28-generic_5.8.0-28.30~20.04.1_amd64.deb
linux-image-5.8.0-28-generic_5.8.0-28.30~20.04.1_amd64.deb
$ ls temp-ln
created-file linux-image-5.8.0-28-generic_5.8.0-28.30~20.04.1_amd64.deb
linux-headers-5.8.0-28-generic_5.8.0-28.30~20.04.1_amd64.deb linux-modules-5.8.0-28-generic_5.8.0-28.30~20.04.1_amd64.deb
linux-hwe-5.8-headers-5.8.0-28_5.8.0-28.30~20.04.1_all.deb linux-modules-extra-5.8.0-28-generic_5.8.0-28.30~20.04.1_amd64.deb
Please edit your original post title to include [SOLVED] if/when it is solved!
Your data and OS are backed up....right?
Your data and OS are backed up....right?
Re: How to make links to folders in Mint 20?
I normally don't use the desktop, but this would do what you want (and it seems to me that dragging the directory onto the desktop doesn't do what you want..as per my post above?)
In a terminal:
Code: Select all
cd ~/Desktop
ln -s ~/Pictures Pictures
~/Desktop/Pictures
, and it won't delete anything under $HOME/Pictures.)Please edit your original post title to include [SOLVED] if/when it is solved!
Your data and OS are backed up....right?
Your data and OS are backed up....right?
Re: How to make links to folders in Mint 20?
Hi all,
In LM20 XFCE I find that selecting a folder in the Thunar window and then dragging the file to the appropriate location (not necessarily the desktop) while holding down the 'SHIFT' and 'CTRL' keys works. The file needs to be selected first before pressing down 'SHIFT' and 'CTRL'.
In LM20 XFCE I find that selecting a folder in the Thunar window and then dragging the file to the appropriate location (not necessarily the desktop) while holding down the 'SHIFT' and 'CTRL' keys works. The file needs to be selected first before pressing down 'SHIFT' and 'CTRL'.
Re: How to make links to folders in Mint 20?
It works in mint 20 mate desktop. in caja file browswer, open your home folder, right-click Pictures and click on Make Link, then cut and paste that link to your Desktop folder.
Re: How to make links to folders in Mint 20?
If I remember correctly I did so in Mint 17 (Cinnamon), but in Mint 20 (Cinnamon) after right-click the Make Link is absent.
Re: How to make links to folders in Mint 20?
Thanks!Flemur wrote: ↑Fri Nov 20, 2020 11:40 amIn a terminal:Code: Select all
cd ~/Desktop ln -s ~/Pictures Pictures
Thanks! That works fine in Cinnamon (Mint 20). Only pressing 'CTRL' makes a copy, but pressing SHIFT+CTRL makes a link.Kester wrote: ↑Fri Nov 20, 2020 12:08 pmHi all,
In LM20 XFCE I find that selecting a folder in the Thunar window and then dragging the file to the appropriate location (not necessarily the desktop) while holding down the 'SHIFT' and 'CTRL' keys works. The file needs to be selected first before pressing down 'SHIFT' and 'CTRL'.