The module below displays RSS feeds and you can create custom searches.

 

Link Text Date
Install Clam Av On Ubuntu
Install Clamav (Clam Antivirus) On Ubuntu
This short
2013-05-15
Install Firewall Ubuntu Univeral Firewall (GUFW)
Install Universal Firewall GUI For Ubuntu
With Ubuntu
2013-05-15
Installing Linux On a Partitioned Hard Drive
How To Install Linux On Partitioned Hard Drive
A Linux distribution can be installed directly onto a hard drive or it can be installed on a partition on the hard drive. When you partition a hard drive
2013-03-25
Linux Find Files Larger Than A Certain Size
Linux Find Files Based On Size
This example will demonstrate how to find files that are larger than a specified size. The example below will find files in the home directory which are larger than 20mb.

root# find /home -size +20480k -print
2013-02-09
Linux Find Files Within A Specific Date Range or Time Period
Find Files On Linux System Within A Timeframe
This tutorial will list files on your Linux system within a specific date range.



List Files Within 1 Day

root# find . -type f -mtime -1


root# find /myfolder -type f -mtime -1

List Files More Than 1 Day Old

root# find . -type f -mtime +1


root# find . -type f -mtime +1


root# find /home/user/public_html/example.com/myfolder -type f -mtime +1
2013-02-09
Linux Find Files With A Certain Name
Find Data Within Files In Linux and Centos
This tutorial explains how to find list all files and directories on a Linux system that have a string of text within the name. The example below is looking for files or folders with database_connect in the name.



Find Text Within The Files and Folders

root# find /pathtofiles -name "database_connect*"


root# find /directory | grep "database_connect"


root# find . | grep "database_connect"


find /home/username | grep conn [...]
2013-02-08
Linux Find Data Within Files
Find Data Within Files In Linux and Centos
This tutorial explains how to find data within files on a Linux system.



Find Text Within

root# find /pathtofiles | xargs grep "username"
2013-02-08
Remove IP Address From Eth Device With Linux
How To Remove An Ip Address With A Linux Device Like eth0 or eth1
This basic set of instructions can be used to remove an ip address of a device on your Linux system.



Show IP addresses.

root_user# ip addr show eth0

Remove the undesired ip.

root_user# ip addr del 192.168.0.1/21 dev eth0
2013-02-01
Linux Get Word Count of Files
Find Word Count of Linux Files
Using SSH
2013-01-25
CentOS Linux Live DVD with Server
CentOS Linux Live DVD with Server Running Apache
2013-01-18
Linux Install SudoLinux How To Install Sudo
Sudo 'Super User' can be installed with Yum. The process to install sudo is shown below.

root# yum install sudo

You will be prompted to install. Select y and click 'Enter' on your keyboard.

root# sudo whoami
root
2012-12-30
Going From Centos Gnome To Console and Back
From Centos Gnome To Console

Ctrl + Alt + f2
From Centos Console To Knome

Ctrl + Alt + f7
2012-12-26
Linux Move Files With mv Command
Move Files With Linux mv command
Unlike the cp command
2012-12-25
Linux Copy Files With cp Command
Copy Files With Linux
The 'cp' command can be used to copy files from one location to another. After a file is copied
2012-12-25
Vi Editor Basics With Linux
Linux Vi Editor Basics
Using the Vi Editor that comes with various Linux distributions is one of your options to create
2012-12-25
Stopping the Linux Command
Terminate a Linux Command
Sometimes
2012-12-25
Linux Job Control
Linux Job Control
The jobs command can be applied to see which jobs are executing in the Linux shell.

root@vps [~]# jobs
[1]+ Stopped cat
2012-12-25
Linux Pipe Output Using Grep
Linux Piping Output With Grep
Using the pipe operator '|'
2012-12-25
Linux Standard Output
Standard Output With Linux

Linux uses three standard program communication streams; STDIN
2012-12-25
Linux which rm
Linux which rm
The command below uses which rm to find the location of the nano editor.


root@vps [~]# which rm nano
/usr/bin/nano
root@vps [~]#

Note:

The editor is located in the bin folder.
2012-12-24