i try to instal mavros in ros kinetic ubuntu 16.04, but i cannot install
$ ./install_geographiclib_datasets.sh
bash: ./install_geographiclib_datasets.sh: Permission denied
I tried:
sudo chmod -x ./install_geographiclib_datasets.sh
but it doesn't fix that permission. what should i do to fix this??
chmod -x
makes it executable, it doesn't change permissions. If the script is meant to be run as root you still have to usesudo
. Try that and [edit] and update your question if necessary. – Jan 10 '18 at 08:15chmod +x
, notchmod -x
. – muru Jan 10 '18 at 09:19