Advanced Search
Search Results
32 total results found
Migrate to a virtual Linux environment with Clonezilla
from IBM DeveloperWorksHow to convert a physical server to a virtual one using the open source tool Clonezilla LiveSummary: Learn how to use the open source Clonezilla Live cloning software to convert your physical server to a virtual one. Specifically, see h...
15 Basic ‘ls’ Command Examples in Linux
I learned at least three things from this list, and I’ve been using ls for years.15 Basic ‘ls’ Command Examples in LinuxThe new things for me were: ls -lh – human readable format on file sizes ls -ltr – reverse output order, which is particularly useful when s...
cron job examples
Here are some interesting examples of cron job use. http://www.thegeekstuff.com/2009/06/15-practical-crontab-examples/ – I didn’t know about @monthly, @yearly, and @reboot, or changing the MAIL destination setting. http://www.pantz.org/software/cron/croninfo.h...
Command Line Tools to Monitor Linux Performance
If you have any tools for monitoring Linux, or have comments or limitations on these, please add them to this article. Thanks, 15 Command Line Tools to Monitor Linux Performance
Creating Spherical Panoramic Visuals
Linux Tools for Digital Imaging, Graphics and Spherical Panoramic PhotographyDigital photographic image technology, representations, formats, Linux software tools for image viewing, resizing, editing, graphics manipulation, panoramic stitching and spherical pa...
Linux scp command examples
I’ve used scp for years, but didn’t know many of these options. The compress-before-transferring and recursively copying a subdirectory structure, look particularly useful. 12 scp command examples to transfer files on Linux
Linux tee command
The Linux “tee” command is extremely useful in the right situation. This article gives some good examples: http://linuxaria.com/pills/linux-terminal-the-tee-command
Ruby one-liner to count logins in Linux last command
count logins in last commandIf you want to take the output of the Linux last command, and get a count of how many times each user connected to your server, this script will do.sample inputtommytrojan sshd abc.def Fri May 15 13:30 - 13:30 (00:00)j...
Linux performance analysis in 60 seconds
Here’s an intro to understanding what’s going on with a Linux server, quickly.http://techblog.netflix.com/2015/11/linux-performance-analysis-in-60s.htmlIf anyone has others, please post them here.
Regular Expressions
Regular Expressions are how you match text and patterns of text in a programming language, and once you learn it, it’s useful in many languages. Regular Expression Cheat Sheet RegExr is an online tool to learn, build, & test Regular Expressions CROSSWORDS ...
Bash scripting
Learning Shell Scripting Language: A Guide from Newbies to System Administrator – October 3, 2013 Bash shell scripting Tutorial – Part I Advanced Bash-Scripting Guide bash Cookbook – UCLA only – licensed through O’Reilly Safari books online Unix: Debugging y...
Apache log shell scripts
Return count of timestamps with most error logs. A couple years ago an app error_log reported about 16000 errors within a few seconds. After fixing it, we wanted to sort by number of errors per second. This does that. The first column is the count. cat /logs...
PHP ODBC Setup Guide
Guide to setting up php-odbc for connection to Registrar database. Example for RedHat EL 5.Create file tds.datasource.template:[Registrar]Driver = FreeTDSDescription = UCLA Registrar (SRDB)Trace = NoServer = srdb.registrar.ucla.eduPort = 1433Create file t...
grep tricks
I’ve been using grep (Global Regular Expression Print) to search files on Unix for years and never knew you could have it appear in color. And here are some other interesting articles about grep. http://unstableme.blogspot.com/2009/03/highlight-match-with-col...