Search Results

0
votes

reinitialize system wide environment variable in linux

You can use SetEnv in your config files (/etc/httpd/conf.d/*.conf, .htaccess ...). Additionally you should be a …
1
vote

How to rename all folders and files to lowercase on Linux?

Most of the answers above are dangerous because they do not deal with names containing odd characters. Your safest bet for this kind of thing is to use find's -print0 option, which will terminate f …
0
votes

Best way to sandbox Apache on Linux

You should use SELinux. I don't know how well it's supported on Debian; if it's not, just install a Centos 5.2 with SELinux enabled in a VM. Shouldn't be too much work, and much much safer than any …
0
votes

Simulating file descriptor in user space

It's really not clear what you're trying to do; if you want a socket-like device, why not use sockets? You don't say ... And what's the deal with POLLIN and POLLOUT? I kinda suspect you mi …
0
votes

How to know if a process had been started but crashed in Linux

I don't know of a standard way of getting all the process names that have executed; there might be a way however to do this with SystemTap …