I have upgraded from lubuntu 16.04 to ubuntu 18.04 (German version).
A shell script which used to run will not start any more.
I have checked the box "run as executable" in the properties, but neither left- nor rightclick offers running the script. It only will be opened in leafpad.
I have also tried chmod +x
, no success.
As far as I know the necessary java packages are included in ubuntu 18.04.
What else can I try?
chmod -x
removes the execution permission from a file. To make a file executable you must runchmod +x
– 0x2b3bfa0 Aug 31 '18 at 14:02