-3
votes
0answers
9 views

Netgear develop applications for the Smart Network [closed]

How to setup Netgear develop applications for the Smart Network. Anyone have the idea to setup this environment. And also need to know what the hardware and software requirements to setup Netgear ...
0
votes
0answers
44 views

Redirect an application resource folder to installation folder instead of system (/usr/share)

I have a question, sorry if maybe it's already been answered somewhere. I'd like to have ability to install a new version of any application (gimp, inskape, codeblocks, whatever..) on Ubuntu system ...
0
votes
0answers
27 views

Linux deterministic & stable “Sandboxing”

This isn't about real security sandboxing. Basically, I would like to test some new kernel ideas, but as I can't make or design my own hardware (don't ask me why I need this), I'm thinking about ...
0
votes
1answer
41 views

How do I access environment vars from processes running as services in centos?

we've started running our EC2 apps as services by creating an /etc/init.d/[appname] script and executing it using something like: service [appname] start|stop|restart When doing this, however, our ...
0
votes
1answer
234 views

script run maven command?

I need to use some old version maven to run my code. instead of running like ~/software/apache-maven-2.0.11/bin/mvn install I want to write some shell script to setup MAVEN_HOME and run my code with ...
5
votes
2answers
92 views

define variable in linux that can be access in php [closed]

I add a variable in whole linux varibale in /etc/profile export MYNAME="My Value" how can i access this value in php source code during run via apache web server? in $_SERVER this value doesn't ...
0
votes
2answers
328 views

Can the Linux “at” command run in environments other than /bin/sh?

I need a scheduler (for one time only actions) for a site I'm coding (in php), and I had two ideas: 1- Run a php script with crontab and verify against a database of scheduled actions and execute ...
0
votes
1answer
65 views

Same program behaves differently in different consoles

I wrote a text mode batch C++ program that since today is giving me some troubles. The executable worked correctly and it did not change. The environment did not change; not even a reboot. When I ...
1
vote
2answers
73 views

framework for creating local environment for native libraries

I write code that often depends on native libraries on linux or mac os. Usually I don't have permissions to install the respective native lib in the system, so I resort to creating a local folder ...
1
vote
2answers
391 views

Dynamic environment variables in Linux?

Is it possible in some way to have dynamic environment variables in Linux? I have a webserver where sites follow this layout: site/ qa/ production/ I would like to have an environment ...
0
votes
1answer
303 views

IntelliJ : unable to find JAXB generated classes in sub project

I have a Maven project which has a number of child projects. For historical reasons the project is structured like this: Root - client - core - model - parent - webapp where parent is the parent ...
0
votes
1answer
722 views

Changing environment variable of a running process

I have a script that exports a environment variable and starts some subscripts. export LOGLEVEL="1" /home/myuser/bin/myscript1.sh /home/myuser/bin/myscript2.sh LOGLEVEL is available for the ...
1
vote
0answers
133 views

What will be the priority parameter?

If you define your JAVA_OPTS as such JAVA_OPTS: -Dprogram.name=run.sh -server -Xms2048m -Xmx4096 -server -Xms128m -Xmx512m -Dsun.rmi.dgc.client.gcInterval=3600000 ...
0
votes
5answers
761 views

Linux C: Shell-like environment - for individual execution - of C commands? (C interpreter)

Sorry if the question is worded wrong - I don't know the right word for what I'm asking for! :) Say, you have some simple C program like: #include <stdio.h> int main() { int a=2; ...
6
votes
2answers
2k views

How to create a simple desktop environment?

I want to know how to create a simple desktop environment, such as KDE, Gnome and LXDE, for Linux, or specifically, Ubuntu/Kubuntu, but I do not know how to begin and how complex it is. I want to ...
6
votes
2answers
4k views

Setting environment variable with maven 2.x

Is it possible to set environment variable with maven (OS: Linux)? I already have user-defined properties (in the pom and in profiles.xml)....my problem is, how to execute following from Maven ...
8
votes
3answers
694 views

Detect desktop environment in Linux programmatically in C

I am trying to detect whether I am running on a Gnome or KDE desktop environment. I know I can check via a ps -aux and grepping either gnome or KDE but that's not good: 1) what if I am on a gnome ...
7
votes
3answers
1k views

how to setup common emacs environment for windows and linux computers?

I use emacs for text editing and script development. I use both windows and ubuntu emacs 23.1 distribution. Now I want both my linux and windows environment to replicate the same environment. I ...
3
votes
9answers
2k views

How do I import environment settings into my Perl program?

I have a script whose content simply exports a variable in linux. export LD_LIBRARY_PATH=.... I want to run this script in my Perl script so whoever is running my Perl script will have their ...
34
votes
8answers
19k views

How do I run a program with a different working directory from current, from Linux shell?

Using a Linux shell, how do I start a program with a different working directory from the current working directory? For example, I have a binary file helloworld that creates the file hello-world.txt ...
31
votes
6answers
26k views

How do I get the path of a process in Unix / Linux

In Windows environment there is an API to obtain the path which is running a process. Is there something similar in Unix / Linux? Or is there some other way to do that in these environments?
5
votes
2answers
4k views

/usr/bin/env questions regarding shebang line pecularities

Questions: What does the kernel do if you stick a shell-script into the shebang line? How does the Kernel know which interpreter to launch? Explanation: I recently wanted to write a wrapper ...
2
votes
3answers
2k views

Is it possible to change the Environment of a parent process in python?

In Linux When I invoke python from the shell it replicates its environment, and starts the python process. Therefore if I do something like the following: import os os.environ["FOO"] = "A_Value" ...
4
votes
3answers
3k views

reinitialize system wide environment variable in linux

I just want my apache to register some of my predefined environment so that i can retrieve it using getenv function in php. How can i do this? I tried adding /etc/profile.d/foo.sh with export ...