Aimed primarily at James (if you are around), but if anyone else can help I'd be very grateful.
It's probably a very simple problem but being a complete novice at Linux, and a Muppet at IT generally, I'm really struggling.
I’ve bought the electronics for this 3D printer and, I believe, worked out how it all hooks up. To run it I need some software which is open source and readily available with what look to be very clear and concise instruction as follows ....
-----------------------------------------------
Installing for all usersIf you want RepRap to be available system-wide to all users, you will need to log in as the superuser to install it.
Assume you downloaded reprap-nnnnnn-yyyymmdd.zip into the directory /xxx/yyy. Move to the directory /usr/local, then unpack it:
# cd /usr/local
# unzip /xxx/yyy/reprap-nnnnnn-yyyymmdd.zip
Then move to the /usr/local/bin directory and create a short shell script called reprap using your favourite text editor (gedit in the example).
# cd /usr/local/bin
# gedit reprap
Copy and paste these three lines into the script, then save it:
#!/bin/sh
cd /usr/local/reprap-nnnnnn-yyyymmdd
./reprap
(Don't forget to replace the nnnnnn and the yyyymmdd with the right strings for your distribution file.)
Finally, set execute permission on the file:
# chmod 755 reprap
Any user will now be able to run the software just by typing the command "reprap".
There is a RepRap teardrop symbol in the file /usr/local/reprap-nnnnnn-yyyymmdd/reprap-icon.png which people can use if they add the program to their desktop or task-bar as a clickable executable. The program is /usr/local/bin/reprap .
If you want to save space, you can now delete the distribution .zip file:
# rm /xxx/yyy/reprap-nnnnnn-yyyymmdd.zip
-----------------------------------------------
There appear to be some additional instructions for 64 bit systems (which mine is), but that's another bridge to cross later perhaps. For completeness this is the page where the instructions are located ...
http://reprap.org/wiki/Installing_RepRap_on_your_computerI've managed to get the unzipped main directory located in usr/local and some how (I've tried so many things) managed to create the reprap file in usr/local/bin. I've run the chmod 755 reprap command which I beleive makes the file accessible to all, but each time I try and run the program using the reprap command, I get a "Permission denied" warning and nothing happens.
I've managed to find a command which lists permissions for bin and the result is ...
root@julian-HP:/usr/local/bin# ls -l
total 8
-rwxrwxr-x 1 root root 62 Dec 9 01:00 reprap
-rw-r--r-- 1 root root 62 Dec 9 00:49 reprap~
I'm now at the point of pulling out clumps of hair, any help (phrased as if talking to a 10 year old) would be greatly appreciated.