Search Results

0
votes

Detecting a chroot jail from within

test -x /sbin/init Should return '0', for there's no reason for 'init' to exist in a chroot jail, unless of course the chroot jail is a single user mode emergency recovery …
1
vote

Network Socket command

What is the nature of the question here? Are you trying to see packets on port 8787? Are you looking for services listening on port 8787? Most importantly, how is this a programming-related questio …
0
votes

How do you run a script on login in *nix?

Search your local system's bash man page for ^INVOCATION for information on which file is going to be read at startup. man bash /^INVOCATION Also in the FILES sec …
0
votes

How do you do Cygwin passwordless rlogin or rsh to Solaris 5.7

While you found the answer to your question with rlogin/rsh, my recommendation is to discontinue use of these insecure programs. Both are known to have buffer overflow exploits, and they both send …
1
vote

What are the most often linux (power) commands that you use?

The command in the original question can be better written as, grep -RHi "string" I use grep -R quite frequently. Of course, the find command can be used for fine- …
1
vote

To what extent can Version Control help in system administration?

More than just having configuration files in a revision control system, I suggest using a configuration management system such as …