-3

i am trying to run vmware player an i get an error:bash: syntax error near unexpected token `(' this is the command i was using:

chmod a+x VMware-Player-16.0.0-16894299.x86_64 (1).bundle

i have also tryed this:

sudo VMware-Player-16.0.0-16894299.x86_64 (1).bundle

i am running linux mint 19,3

glenn jackman
  • 17,900
isame12
  • 1
  • 1

1 Answers1

1

Use some quotes, because without them this is like you are giving another argument to chmod.

sudo chmod a+x "VMware-Player-16.0.0-16894299.x86_64 (1).bundle"
jptrzy
  • 11
  • 1