I'm trying to install RokiSim, a robot simulator on Ubuntu 14.04.
I downloaded the tar.gz and extracted it. But I didn't find any configure folder or make file to start installation. How do I install such kind of software?
There are also Windows versions of the simulator which I can run using Wine. But I want to sort this out because I have another simulator called RoboDK that is also giving me the same problem, no install file. How can I install these?
.so
files they are probably hard-linked in the executable, so I guess that yes that's due to the libraries included, permissions should be ok aftersudo mv [...]
. To remove the symbolic link just remove it as root since it's owned by root:sudo rm /usr/bin/rokisim
– kos Jun 22 '15 at 15:37