The perfect server room?

Hi i got a chance to think about Data center design .But i searched and i got few notes to make good data center .
kindly update the details more about perfect data center

Enough space for expansion
Plenty of network ports
Sufficient network bandwidth
Plenty of dedicated power sockets
Should not be on the ground floor (risk of flooding [...]

How Do I Search for Files on linux ?

How Do I Search for Files on linux ?

find / -name “kartook” -print

This command tells find to start looking in the root directory of the filesystem.

(/) for files named (-name) kartook and then to print (-print) the full name of each file it finds.

Possibly Related Posts:

Linux tool :Fdupes
Backtrack : TestDisk ( Digital forensics ,forensics analysis)
LINUX [...]

How to change the enable password on a Cisco router ?

To change or set the enable password to P@s5wo61):

config t

enable secret p@s5w061

The enable pasword P@s5wo61) command will also set the enable password, but will leave the password in plain text and visible in the router configuration. This is not affected by the service password-encryption setting.

Possibly Related Posts:

CIsco : Enable Cisco Password Encryption ?
Cisco’s offers borderless security
Cisco [...]

How Do I Copy and Rename Linux Files?

$ cp kartook.conf.backupĀ  kartook.conf
$ cp stuff stuff.bak

Note: The cp command will overwrite files with the same name without warning. To be prompted before overwriting, use the -i flag, like so:

$ cp -i kartook.conf.backup foldername/kartook.conf
cp: over kartook.conf.backup foldername/kartook.conf (y/n)?

Renaming Files

Use the mv command to rename a file or move it to another directory, like so:

$ mv stuff [...]