If you see this message when trying to run a program, even though you can plainly see it right in front of you, there are a couple of possibilities:
But if you had perl installed as /bin/perl or /usr/bin/perl you would get this message.
Xlib: connection to ":0.0" refused by server Xlib: Client is not authorized to connect to Server some_app: unable to open display ":0.0"
The user running the command is different to the user that started the X-server, or is otherwise not allowed by the X server to create new (graphical) windows.
Also see the XAuthNotes? page on giving other users permission to open graphical windows on your X server.
/bin/bash exists and runs fine; the probably cause is the "u+x" bit is not set on the script. (a+x should overwrite it, shouldn't it?)
My experimentation suggests that /bin/bash probably isn't executable, and since it is a bash script the kernel is trying to start bash. Judging by the number of people doing searchs we're having a large number of people have this problem with bash and perl. Still have no idea what's going on? try
chmod a+rx /bin/bash /usr/bin/perl /usr/local/bin/perl /path/to/your/script/here
this will mark these all as executable and readable by everyone.
It seems highly unlikely that you got into a user run-level if bash and/or perl aren't executable. Based on Plug's experience with linuxsms, it seems this is caused by the script being not executable by you, but set executable by group and/or other -- JohnMcPherson
PING 192.168.66.10 (192.168.66.10): 56 data bytes ping: sendto: Operation not permitted ping: wrote 192.168.66.10 64 chars, ret=-1
The interface you are pinging out of (192.168.66.10) is firewalled. Fix your firewall :)
See ErrorMessages