3

On my VC Linux desktop there is a 'shared Parallels Folder' with a padlock icon on it. I have been trying for a few weeks to command Gnome Terminal to direct to it. It fails to recognise this folder as a directory.

I have tried quite a few commands eg,

cd Desktop/shared Parallels Folder

The response is no such directory. Is it to do with the padlock on the folder? I really don't know what to try next. I need to access files on my mac. Please help!

Oli
  • 293,335
Louise Avon
  • 1,121

3 Answers3

3

cd Desktop/shared Parallels probably needs to be cd ~/Desktop/shared and then {tab} to autocomplete (not sure if Folders is part of your directory)

A padlock also means: no permissions.

From command line:

You can check permissions with

cd ~/Desktop
ls -l|more

Watch out for "shared Parallels" and have a look at the colums left of it. There are 2 names (user and group). If they are not your name you can change it with:

sudo chown -R $USER:$USER shared{tab}

{tab} to autocomplete.

chown changes user and group to your name. The -R does the same for any file found in "shared Parallels".

You can also do this from Nautilus:

Navigate to the folder. Rightclick it and choose "properties":

enter image description here

Set the options here to your user with read+write. The "change permissions to enclosed files" is the same as the -R option explained above.

Rinzwind
  • 299,756
  • When in the properties of Shared Parallels Folder the permissions is owner: Root. Does this need changing? Also my user name has been from intial installation parallels@parallels-parallels, how can i change this? – Louise Avon May 20 '14 at 15:08
  • @LouiseAvon You might consider opening a separate question for this. – belacqua May 20 '14 at 15:21
  • Yes I think I will do. Thankyou – Louise Avon May 20 '14 at 15:21
  • @LouiseAvon yes! needs to be your user name. Easiest is to follow the commandline option I posted (you need the chown command ;) ) – Rinzwind May 20 '14 at 17:12
2

You should use this command :

If its name shared Parallels Folder :

 cd ~/Desktop/shared\ Parallels\ Folder/

Cause directory name contains spaces

nux
  • 38,017
  • 35
  • 118
  • 131
1

spaces in directory name may be creating problem try

 cd ~/Desktop/shared\ Parallels\ Folder/
Avinash Raj
  • 78,556
Bibi424
  • 618
  • 6
  • 13