Hi, > in the /etc/rc.local there are two lines on top > #!/bin/sh -e > > # rc.local > > does the first line need to be un#ed , tried editing the hash out but > nothing happedn /dev/ttyUSB did not get created on start up
Please do not remove the '#' from the first line. The entire line is known as a 'shebang' among other names, and is used to tell the system what shell to run it in. The line has to be the first line in a shell script, for it to be correctly recognised and run as a shell script across all systems. Hope this helps in removing one of your doubts in solving your problem. Sadly, I don't have the answer to your complete problem. Ninad S. Pundalik http://ninadpundalik.co.cc/blog GPG Key Fingerprint: 2DF7 B856 C75E C9F9 0504 C0EF D456 1946 7C45 2C69 -- ubuntu-in mailing list [email protected] https://lists.ubuntu.com/mailman/listinfo/ubuntu-in
