View Single Post
CarstenDutch's Avatar
Posts: 147 | Thanked: 78 times | Joined on Dec 2009 @ Netherlands
#347
Originally Posted by Rob1n View Post
You can't - MyDocs is FAT32 and that doesn't support symlinks. You have to do it the other way round - move /home/user/.local/share to MyDocs, then create a symlink in /home/user/.local.

What I'd probably do (to keep things clear from the PC end) is:
Code:
mkdir -p MyDocs/Icons/scalable
mkdir -p MyDocs/Icons/48x48
mkdir -p .local/share/icons/hicolor/scalable
mkdir -p .local/share/icons/hicolor/48x48
ln -s /home/user/MyDocs/icons/scalable .local/share/icons/hicolor/scalable/hildon
ln -s /home/user/MyDocs/icons/48x48 .local/share/icons/hicolor/48x48/hildon
Note: I've not tested this, so it may not work!
I did,

sudo gainroot

/home/user # mkdir -p MyDocs/Icons
/home/user # ls -s /home/user/MyDocs/Icons .local/share/icons

I just want too add files too /home/user/MyDocs/Icons that it wil be added too .local/share/icons from usb storage mode too make it easy for people modifying their icons that have no knowledge.

It does not work.