Search Results

1
vote

How to overcome an incompatibility between the ksh on Linux vs. that installed on AIX/Solaris/HPUX?

I installed 'ksh' and 'pdksh' on my local Ubuntu Hardy system. ii ksh 93s+20071105-1 The real, AT&T version of the Korn shell ii pdksh 5.2.14-21ubunt A pu …
0
votes

How to redirect all stderr in bash?

Try your commands in doublequotes, like so: ssh remotehost "command" 2>~/stderr Tested on my local system using a nonexistant file on the remote host. …
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 …
5
votes

How do I change default runlevel in Ubuntu

You need to do this: mv /etc/rc2.d/S30gdm /etc/rc2.d/K70gdm See, /etc/rc2.d/README. There's README files in all the /etc/rc?.d directories, as well as /etc/init.d. …
0
votes

Is there a Linux (Ubuntu) svn client that doesn’t suck??

Since you're using Ubuntu, and not Kubuntu, I assume you're using GNOME. You might be interested in …
3
votes

Do you disable SELinux?

I worked for a company last year where we were setting it enforcing with the 'targeted' policy enabled on CentOS 5.x systems. It did not interfere with any of the web application code our developer …
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 …
3
votes

What is your favorite bash prompt?

Here's mine. # this prompt will show the hostname in green if the last command returned 0, # otherwise it will be red. PS1="\[\`if [[ \$? = "0" ]]; then echo '\e[32m\h\e[0m'; else e …
1
vote

What command(s) control the behavior of /etc/rc*.d on Redhat/CentOS?

As mentioned by px, the proper way to manage the links to scripts from /etc/init.d to /etc/rc?.d is the /sbin/chkconfig command. Scripts should have comments near the top that specify how c …
7
votes

Best linux distribution for programming

In my experience of fourteen years using Linux for a variety of desktop and server tasks, I have formed educated opinions about each major distribution for different programming environments. …
0
votes

Barebones Linux Server Install

JEOS - Just Enough Operating System, an Ubuntu project, should be exactly what you are looking for. …
2
votes

Subversion Repository on Linux Dev

I work for an IT operations infrastructure automation company; we do this all the time. Location of repository: We use "/srv/svn" by default to store all SVN repositories, unless a custome …
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 …