Search Results

15
votes

Free/Cheap Task/Bug Management software

There's a plethora of solutions available. I like Trac, as it integrates well with SVN, and it includes a wiki as well. It is very ex …
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

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

Where’s the best source of up to date RPMs for RedHat?

You should get packages for RHEL from Red Hat Network. In the interest of maintaining utmost integrity of packages, Red Hat only patches packages with serious bugs (ie, security), and backports the …
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. …
2
votes

Best Awk Commands

I use this: df -m | awk '{p+=$3}; END {print p}' To total all disk space used on a system across filesystems. …