| Mobile | RSS

Convert man pages to pdf

Convert Linux man pages to PDF

Here we are trying to find out how to convert Linux man pages to PDF. Man Pages are most reliable reference available for Linux users and man command remains the easiest way to access those reference pages.

[ More ] September 2nd, 2011 | No Comments | Posted in Applications, Scripting & Automation |
autoconf

Autoconf – brief introduction for beginners

Autoconf is a set of tools which makes your project configurable and portable for running in Linux distributions. Simply, autoconf will help you to create configure script and Makefile for your code. Before going to generate configure script using autoconf, we need to define set of rules and dependencies. We are defining that rules and [...]

[ More ] August 25th, 2011 | No Comments | Posted in Applications, OS Internals, Scripting & Automation |
rsync

Synchronize data between two servers using rsync

Rsync: rsync is an application used in unix systems which synchronize files and directories between two machines.rsync behaves like rcp(remote file copy),but it much faster than rcp.because rsync sends the differences in the files instead of sending entire files. Servers are SERVER_SOURCE & SERVER_DESTINATION Configure SSH key authentication In SERVER_DESTINATION open sshd_config file vi /etc/ssh/sshd_config [...]

linux boot process

Basic commands

cat Sends file contents to standard output.This is a way to list the contents of short files to the screen.It works well with piping. Eg:cat .bashrc (Sends content of “.bashrc” file to screen). cd Change directory eg:cd /home Change the current working directory to /home. The ‘/’ indicates relative to root, and no matter what [...]

[ More ] June 26th, 2011 | 1 Comment | Posted in Basic Setup, OS Internals, Scripting & Automation |
job scheduling in Linux

Crontab in brief

To edit cron jobs #crontab -e You may want to put in the following header #MINUTE(0-59) HOUR(0-23) DAYOFMONTH(1-31) MONTHOFYEAR(1-12) DAYOFWEEK(0-6) Note 0=Sun and 7=Sun # #14,15 10 * * 0 /usr/bin/somecommmand >/dev/null 2>&1 The sample “commented out command” will run at 10:14 and 10:15 every Sunday. There will be no “mail” sent to the user [...]

[ More ] June 23rd, 2011 | No Comments | Posted in Scripting & Automation |
terminal

Change lowercase letters to uppercase

When you want to do text manipulation, you can use Sed and Awk. These 2 tools which come on most Linux distributions, will allow you to modify text files in many ways.

Related Posts Plugin for WordPress, Blogger...
[ More ] June 22nd, 2011 | No Comments | Posted in Scripting & Automation |