I use Ubuntu and someone advised me to change permissions to a file with sudo chmod " +x "
.
It is not clear to me if +x
means to change permissions to something very general as 777
or 775
, or something totally different.
I've tried to Google +x unix
and +x linux
, but I couldn't find data regarding it in a fast search.
Here are the orders I have done (thus I'm stuck in stage 4):
- install wget
- run
wget http://files.drush.org/drush.phar
- run
sudo mv drash.phar /usr/local/bin/drush
- run
sudo chmod +x /usr/local/bin/drush
- test
drush
man chmod
. Yes,chmod +x filename
is an actual command; no, you don't need to specify numeric permissions. – Wildcard Jun 21 '16 at 19:38