New to Linux
I want to start playing around with Linux and have loaded it on an older computer I have here (PCLinux 2007) I have not been able to figure out how to install the PBasic tools on the machine. I have been able to uncompress them, and attempt to run the "Make" command from the Konsole, but get errors.
Any one here use Linux, and have some tips on how to get it working for someone who has NEVER used Linux before?
Thanks
Mike
Any one here use Linux, and have some tips on how to get it working for someone who has NEVER used Linux before?
Thanks
Mike
Comments
I will be on a business trip for a couple of days, but will post the actual error message when I get back.
Thanks,
Mike
That would be under Parallax Downloads 'Software for Windows'
Or
You can use the strickly Linux version by looking under Parallax Downloads 'Software for Linux'
Choosing one or the other would be your first decision.· It seems like you have already choose the strickly Linux.· In that case, the installation is likely to be bit steeper learning curve to a begineer.
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
"Everything in the world is purchased by labour; and our passions are the only causes of labor." -- David·Hume (1711-76)········
Post Edited (Kramer) : 10/1/2007 12:27:08 PM GMT
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
"... one of the main causes of the fall of the Roman Empire was that, lacking zero, they had no way to indicate successful termination of their C programs." -
"If Python is executable pseudocode, then perl is executable line noise."
"The best accelerator available for a Mac is one that causes it to go at 9.81 m/s2."
"My software never has bugs. It just develops random features."
"Windows isn't a virus, viruses do something."
"Programmers are tools for converting caffeine into code."
"Enter any 11-digit prime number to continue."
so at a new terminal, type cd /whatever/stampbc124 (just make sure you extracted the entire directory from the .tgz)
then you should be in the directory.
Actually I don't think you need to do a ./configure if you downloaded the stampbc124.tgz
so if you're already in the directory:
type "make clean" (no quotes)
then "make"
then "su" (it'll ask you for your password, unless you're already root)
then "make install"
after that, it should be ready to use.
Does the propeller tool work on linux?· Is any extra software needed?
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
Anybody have a solution.
Is there a plan for a Mac or Linux proptool like the mac and linux stamp editors?
PS: sorry for the thread "hijaction" hope you get the editor running
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
Post Edited (D Faust) : 10/3/2007 12:58:01 AM GMT
As I said originally, I wanted to get to know Linux, but maybe I should stick with XP?
Thanks for any help...
Mike
[noparse][[/noparse]root@new-host bstamp]# ls
bstamp-2006.05.31.tar.gz pbasic_examples/
bstamp_run.cpp PBASIC_Tokenizer_Software_Distribution_License.pdf*
bstamp_tokenize.cpp* PBASIC_Tokenizer_Software_Distribution_License.txt
CHANGES.txt README.txt
COPYING.txt TODO.txt
error_handling.cpp tokenizer.h*
GPL.txt tokenizer.so
Makefile
[noparse][[/noparse]root@new-host bstamp]# make clean
rm bstamp_run
rm: cannot remove `bstamp_run': No such file or directory
make: [noparse][[/noparse]clean] Error 1 (ignored)
rm bstamp_tokenize
rm: cannot remove `bstamp_tokenize': No such file or directory
make: [noparse][[/noparse]clean] Error 1 (ignored)
rm *.o
rm: cannot remove `*.o': No such file or directory
make: [noparse][[/noparse]clean] Error 1 (ignored)
[noparse][[/noparse]root@new-host bstamp]# make install
cp bstamp_tokenize /usr/local/bin/
cp: cannot stat `bstamp_tokenize': No such file or directory
make: *** [noparse][[/noparse]install] Error 1
[noparse][[/noparse]root@new-host bstamp]#
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
So do this:
make clean
make
make install
Maybe I will give it a shot later on down the road.
Thanks for all the help!
Mike
make (NOT "make clean")
make install
The problem was it wasn't actually compiling it.