Category Archives: /linux

cron: usage and debugging

cron – the daemon that executes scheduled commands. crontab – the program used to modify user crontab files, crontab file is a per user file that contains instructions for cron. The location of the root and user crontab files are generally … Continue reading

Posted in /linux | Tagged , , | Leave a comment

NFS share in Linux

NFS or Network File System is one of the most widely used network service which allows the client to mount remote file systems (i.e. drive/directories), and provide an access to it as if the file system is local. NFS is … Continue reading

Posted in /linux | Tagged , | Leave a comment

Adding content to SVN without checking out repository

Sometimes the svn repository you want to add project to, contains so many projects (sometimes bulky) that you think if there is any way out to add your project to svn repository without checking out it’s contents ? And the … Continue reading

Posted in /linux | Tagged | Leave a comment

Quick reference to linux shell script

shell: It is a program, A command line interpreter that sequentially executes commands, read from the standard input device (keyboard) or from a file. shell script: a program that is executed using shell to perform some operations like file manipulation, program execution, … Continue reading

Posted in /linux | Tagged | Leave a comment