We closed this forum 18 June 2010. It has served us well since 2005 as the ALPHA forum did before it from 2002 to 2005. New discussions are ongoing at the new URL http://forum.processing.org. You'll need to sign up and get a new user account. We're sorry about that inconvenience, but we think it's better in the long run. The content on this forum will remain online.
IndexProgramming Questions & HelpIntegration › install problem in linux
Page Index Toggle Pages: 1
install problem in linux (Read 2985 times)
install problem in linux
Mar 29th, 2010, 8:49am
 
hi,
I use processing in windoz no problem
but i want to use it in linux, with a problem:

things done:
1. downloades linux version 1.1
2. tar -zxvf processing-1.1.tgz
3. cd processing, ./processing

result
bash: ./processing: Permission denied
(even with sudo)

what to do plz?
what obvious thing is missing? (newbiee here)


Re: install problem in linux
Reply #1 - Mar 29th, 2010, 11:45am
 
It seems very unlikely to me that the processing script has the wrong file permissions  (which is what your problem looks like to me). Simple solution if that is the case:-
chmod +x processing
Smiley
Re: install problem in linux
Reply #2 - Mar 29th, 2010, 12:06pm
 
hi,
tnx
that was the problem!
Re: install problem in linux
Reply #3 - Mar 29th, 2010, 11:02pm
 
A few tips for a newbie linux/processing user:-
The console is your friend, but you can add processing to your menu or create a desktop launcher.

To determinine whether your linux box can run OPENGL
glxinfo|grep renderer
glxinfo|grep vendor

of course you need to find out what the result means to you, but the result you don't  want is a generic (software emulated opengl?) driver eg vendor Mesa when you wanted Tungsten Graphics etc.

To troubleshoot rogue java processes:-
pgrep java
To kill all of them:-
pkill java (doesn't always work)
or kill 2222 (say 2222 was the rogue java process running)
or be tough and do (as root if necessary)
kill -s KILL 2222

If the window freezes (say when running a misbehaving opengl applet):-

Use 'Alt F2....F4' to move to another virtual desktop, and run a console from there.

Another useful way of checking your graphics set up is to
dmesg| grep drm (particularly with recent kernels)
Re: install problem in linux
Reply #4 - Apr 4th, 2010, 3:02am
 
My friend is here and uses linux and we've been searching the right solution for hours now. thanks!
Re: install problem in linux
Reply #5 - Apr 13th, 2010, 4:04am
 
martin_p wrote on Mar 29th, 2010, 11:02pm:
To determinine whether your linux box can run OPENGL
glxinfo|grep renderer
glxinfo|grep vendor


Another useful one is:
glxinfo | grep "direct rendering"


martin_p wrote on Mar 29th, 2010, 11:02pm:
To troubleshoot rogue java processes:-
pgrep java
To kill all of them:-
pkill java (doesn't always work)


A note of caution, pkill will kill all process related to java, whether they're processing or not. So if you're running any other java-based program while executing 'pkill java', they will all be killed. Use 'pgrep java -l' to find out how many process you will kill if you run 'pkill java'.
Page Index Toggle Pages: 1