Nautilus Scripts Pack -ubuntu 9.04

Here is a collection of many scripts installable from a deb package. Some are very useful, others less but they might come in handy sometime.

The scripts included here are:
* Auto Thumbnail
* Browse as root
* Convert image to GIF
* Convert image to JPG
* Convert image to PNG
* Copy to …
* Copy to Desktop
* Copy to Download
* [...]

How to test the Apache configuration file?

How to test the Apache configuration file httpd.conf

After making changes to the Apache configuration file, it is a good practice to test the configuration before implementing it.

To test the Apache configuration file for errors:

apachectl configtest

If the configuration file is fine, this command will return Syntax Ok. Otherwise, it will return detailed information about the error [...]

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 [...]

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 : How to Disable Direct Root Logins
Linux :How [...]

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’s offers borderless security
Cisco : How to Check an [...]

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 [...]

How to allow login to VMware ESX Server with SSH ?

I was facing a problem to login the ESX through winSCP client then i found the solution ..

Go to the service console on the physical server & login
vi /etc/ssh/sshd_config
Change the line that says PermitRootLogin from “no” to “yes”
do service sshd restart

And my problem was solved…

I don’t have any problems with SFTP or SCP using WinSCP [...]

How to Remove an RPM Package

Step 1:
Close all programs. This will keep the computer from slowing down or freezing when removing the RPM package. It allows the computer to focus on this one task and allow it to finish quickly and accurately. This is a technique you should use whenever removing or installing any programs.

Step 2:
Open a terminal window. Type [...]

how to IP forward on Squid Proxy

Script used to fwd ips from squid proxy server

iptables -t nat -A POSTROUTING  -s 192.168.0.2(client machine ip address) -j MASQUERADE

Possibly Related Posts:

Linux : How to Disable Direct Root Logins
Linux :How to encrypt text file in Linux (VIM)
FreeBSD : Data set and change
Mysql : Connect to a remote mysql Server
MySql : how to create database [...]