Directory listings slow with ftp server and CentOS

I recently installed the VSFtpd FTP Server onto a CentOS box and have a fairly tight firewall setup script using iptables. When I logged in to test it and issued an "ls -l" command it took a really long time for the driectory listing to come back. At first I thought it wasn’t going to show the directory listing at all but it finally did. This post looks at the solution to the problem.

Find all symbolic links with the find command

This quick tip shows how to find all the symbolic links under a particular directory using the “find” command from the command line on UNIX based systems such as Linux, OSX and BSD. Find all symbolic links Substitute [path] in the example below with the root level path you want to find symlinks from, and …

Read more

Debian releases and names

Debian releases are named after characters from Toy Story and are frequently referred to with the name rather than the version. This post is for my own quick reference for the version-to-name of each Debian release.

Showing seconds with ls on Linux and OSX

Using the "ls" command to list directory contents from the command line with the -l flag will include the date and time down to the minute, but not show the seconds. This post shows how to display the seconds as well with bash on Linux and OSX.

Show only one process with top on Linux

Top is a useful command line tool for showing processes running on Linux such as how much CPU and memory they've been using and how long they've been running, and also showing the system load, CPU and memory usage as a whole. But what if you only one to show output for one process or command?