Name find — Searching for files and possibly executing commands on them Synopsis find [path] [options] Examples To list all files below a given directory, say /home/user/some-directory find /home/user/some-directory To find all pdf files below that directory find /home/user/some-directory -nameContinue reading… Linux : Awesome commands – find
Category: Operating Systems
Typical Unix/Linux recursive search commands
The Typical one is – to find the files with some pattern recursively in a given directory. $ find path/to/dir -name “*.html” You can replace the “*.html” to your own filename pattern. Another one is, in addition to above IContinue reading… Typical Unix/Linux recursive search commands
I DNT HATE MOZILLA BUT USE IE OR ELSE…
Recently I came across a new worm(virus) in my friend’s system. When I started firefox, I got a message I DNT HATE MOZILLA BUT USE IE OR ELSE… as pop up window with USE INTERNET EXPLORER U DOPE as windowContinue reading… I DNT HATE MOZILLA BUT USE IE OR ELSE…
Sockets for interprocess communication
This is a simple tutorial on using sockets for interprocess communication. The client server model Most interprocess communication uses the client server model. These terms refer to the two processes which will be communicating with each other. One of theContinue reading… Sockets for interprocess communication
Recursive execusion of commands in Linux command prompt
When we want to execute any command recursively for a directory, we can use find command for that. find . -name ‘blah*’ -exec rm -rf {} ; But some times, it gives the error as Argument list too long. InContinue reading… Recursive execusion of commands in Linux command prompt
Nice link to OS concepts
http://www.cag.lcs.mit.edu/~rinard/osnotes/
OS concepts
Virtual Memory Frames and their physical address Page Fault Thrashing
How to Delete the Windows 2000 and XP Pagefile
Delete the scraps and leftovers on your hard drive. RAM, your computer’s temporary storage area, loses all stored data when the power is turned off. Your pagefile is extra, RAM-like storage on your hard drive. It maintains its data evenContinue reading… How to Delete the Windows 2000 and XP Pagefile
Managing disk quotas in Linux
Table of Contents 1. Setting quotas 2. Enabling and disabling quotas 3. Checking and updating quotas Summary 1. Setting quotas Linux enables you to limit the amount of space that a user or group can consume on a given partition.Continue reading… Managing disk quotas in Linux
Creating partitions and file systems in Linux
Table of Contents 1. Disk types, units, and partitions 2. Creating partitions 3. Using fdisk 4. Creating file systems with mkfs Summary 1. Disk types, units, and partitions Before partitioning a disk in Linux, it is useful to have someContinue reading… Creating partitions and file systems in Linux