5
votes
3answers
208 views
Debugging in XCode as root
In my program I need to create sockets and bind them to listen HTTP port (80). The program works fine when I launch it from command line with sudo, escalating permissions to root. Running under XCode …
2
votes
3answers
90 views
Reliable cube root in Haskell
Hi
I am doing question 62 at project euler and came up with the following to test whether a number is cubic:
isInt x = x == fromInteger (round x)
isCube x= isInt $ x**(1/3)
But due to floating …
2
votes
3answers
277 views
How should I log from a non-root Debian Linux daemon?
I'm writing a new daemon, which will be hosted on Debian Linux.
I've found that /var/log has root only write permissions, so my daemon cannot write log files there.
However, if it writes there, it …
0
votes
3answers
51 views
How to set root node name when XmlSerializing an array?
I have an array of objects which I want to serialize as XML. These objects are annotated to set XML node names but I was wondering how to set the name of the XML root node.
The code looks like this:
…
1
vote
5answers
1k views
Is there a way to read environment variables of other processes using Perl and in a Linux or Solaris environment?
In Perl, I need to read the environment of other processes.
The script is running with root
privileges.
The script will be
running in both Linux and Solaris.
I would like a solution that's mostly …
7
votes
8answers
2k views
Is there a way for non-root processes to bind to “privileged” ports (<1024) on Linux?
It's very annoying to have this limitation on my development box, when there won't ever be any users other than me.
I'm aware of the standard workarounds, but none of them do exactly what I want:
…
0
votes
5answers
828 views
How to set the DOCUMENT_ROOT and site root in my local PHP dev setup?
I'm doing a job for a guy with a site online. It's an alien site to me, and I'm slowly working through the strange code. I have MAMP locally and my http://localhost/ has many client folders coming off …
0
votes
0answers
44 views
I just set up a Ubuntu hardy server. [closed]
logged in as root, environmental variables are great. I typed "set"
I did:
useradd -m alex
su alex
For some reason, everything is gone when I type "set". How do I make it so that alex has all the …
-1
votes
0answers
86 views
chown is not changing symbolic link [closed]
I'm trying to change the user/group of a symbolic link with the command:
$ chown -h myuser:mygroup mysymbolic/
But it's not changing. I'm logged in as root. The current user/group is set to …
0
votes
2answers
47 views
What’s the proper way to drop to a lower privilege level with setuid?
I'm writing a program in C that binds to a port < 1024. I'd like it to run at non-root privileges thereafter.
I know I need to call setuid(), but with what argument? UID's vary from system to …
2
votes
5answers
92 views
How to execute os.* methods as root?
Is it possible to ask for a root pw without storing in in my script memory and to run some of os.* commands as root?
My script
scans some folders and files to check if it can do the job
makes some …
1
vote
1answer
41 views
kdialog progress bar “object not accessible” as root
Hi all
I have a script containing lots of commands that need root rights. Instead of running all these command with sudo inside the script I prefer to run the whole script with sudo. This is also …
0
votes
1answer
47 views
How do I restore the MySQL root user’s privileges?
I accidentally removed most of the privileges from my MySQL root user, including the ability to grant privileges. Is there some way I can restore this user to its original state?
2
votes
4answers
195 views
How do I import a new Java CA cert without using the keytool command line utility?
Executive summary: how do I install a new root certificate into Java using Java code?
We have a desktop application which accesses various web services. Recently one of them switched their SSL …
0
votes
1answer
70 views
.htaccess redirect problem! All subdirectories to root [SOLVED]
Hello,
I'm trying to redirect all subdirectories to the root of my website via .htaccess!
The code below works fine if I try to access a subdirectory ... but doesn't let me display the index page in …
