I cannot find the missing operand in chmod command. (PS: I am new to linux)

Viewed 28

I am trying to run this command

chmod +xElecrow-LCD5

But I get in return

chmod: missing operand after '+xElecrow-LCD5'
Try 'chmod --help' for more information

I really dont know what to do. I am using Raspbian 32 bit full version. Downloaded today from the Official Raspberry Pi Imager.

1 Answers

There is a missing space between the "+x" and "Elecrow-LCD5" try:

chmod +x Elecrow-LCD5
Related