Having trouble installing Netbeans for Linux (Fedora)
[user@localhost ~]$ cd Downloads
[user@localhost Downloads]$ sudo chmod +x netbeans-*
audit_log_user_command(): Connection refused
chmod: cannot access `netbeans-*': No such file or directory
[user@localhost Downloads]$ sudo chmod +x netbeans-7.4-javase-linux.sh
audit_log_user_command(): Connection refused
chmod: cannot access `netbeans-7.4-javase-linux.sh': No such file or directory
I tried chmod +x <file_name_here> and that didn't work either. It would just keep saying "no such file or directory."</file_name_here>
Here is some info:
[user@localhost ~]$ uname -a
Linux localhost 2.6.23.9lw #104 SMP PREEMPT Sat Jun 21 19:53:40 EDT 2008 i686 i686
i386 GNU/Linux
[user@localhost ~]$ cat /etc/*release
Fedora release 8 (Werewolf)
Linpus Linux Lite v1.0.3.E
Fedora release 8 (Werewolf)
Fedora release 8 (Werewolf)
UPDATE: My computer went on the "black screen of death" so I won't respond to answers since I can't do those things at the moment.
Probably a 'sudo' problem. is the 'auditd' server running?
Maybe helpful: http://serverfault.com/questions/418159/audit-log-user-command-connection-refused-when-using-sudo-whats-wrong
Could you run
ls -l netbeans*
to see what permissions it already has?Instead of
chmod +x
ing the shell script, you could also directly call it withbash netbeans-7.4-javase-linux.sh
...