I have been trying to install NetLogo under my Ubuntu setup. I have downloaded the latest NetLogo 5.3 files and have extracted them.
I placed the files in the /opt/netlogo-5.3.0/
directory.
I then proceeded to create a symbolic link to the NetLogo executable from the /usr/bin directory.
sudo ln -s /opt/netlogo-5.3.0/NetLogo netlogo
@ubuntu:~$ ll /usr/bin/netlogo
lrwxrwxrwx 1 root root 26 Jan 4 10:36 /usr/bin/netlogo -> /opt/netlogo-5.3.0/NetLogo*
However, when I try to run NetLogo by issuing the netlogo
command, it gives me a Permission Denied error. I can however run it as sudo netlogo
Is it possible to get it to run without relying on sudo?