Rakhi helps to convey love message to your brother and sister. Send raksha bandhan rakhi Gifts to all over India with our Wide range of rakhi gifts for sister. You can also Find that unexpected gift for the person who already has everything.
Online
Rakhi,
rakhi
india,
gold
send
gifts
to
in
User:amar488
Holidays2India offering South India tour packages, travel to South India, South India travel packages, Southern India tour packages, holidays in South India, South India wildlife tour, beaches and backwaters tour in South India.
User:seoalok: Travel Tour in India
in
Southern
south
india,
holidays
India
tour
to
travel
packages,
Info2India organize North India tour packages, North India tours, travel to North India, India tour packages, India tours, holidays in North India, pilgrimage tour packages, North India cultural tour packages
User:seoalok: Travel Tour in India
packages
india,
holidays
India
tour
north
to
travel
in
pilgrimage
India Travel Junction offers South India tours, South India tour packages, tour to South India, travel to South India, holidays in South India, vacation in South India, holiday packages to South India
User:seoalok: Travel Tour in India
in
packages,
south
india,
holidays
India
tour
to
travel
Tours,
Holidays2India provide customize tour packages for India tours, India tour packages, India tours, holidays in India, pilgrimage tour packages, Indian cultural tour packages, holiday packages South North India, travel to India, wildlife tour, honeymoon in india
User:seoalok: Travel Tour in India
in
cultural
india,
holidays
Indian
India
tour
to
travel
pilgrimage
India Travel Junction offers budget packages for India tours, India travel, India tour, India tour packages, travel to India, holidays in India, Rajasthan tours, travel to vacation in South North India, wildlife tour India, adventure travel trip India.
If you want to upgrade IOS on a 3750 switch stack follow this procedure
There are some new IOS commands to automate upgrading of a stack, but I use the familiar manual method.
(...)
Read the rest of Howto upgrade IOS on a 3750 switch stack (264 words)
© Admin for Debian Admin, 2008. | Permalink | No comment
Add to del.icio.us
Search blogs linking this post with Technorati
Want more on these topics ? Browse the archive of posts filed under Network.
---
Related Articles at Debian Admin:
Debian: Debian Admin Step By Step Tutorials and articles with screenshots
ssh (SSH client) is a program for logging into a remote machine and for executing commands on a remote machine. It is intended to replace rlogin and rsh, and provide secure encrypted communications between two untrusted hosts over an insecure network. X11 connections and arbitrary TCP ports can also be forwarded over the secure channel.
We all know, by default installation of openssh daemon service (sshd), it binds itself to all existing IP address from given host.
Alternatively, if you wish to bind sshd service to selected IP address, this is possible by simply editing /etc/ssh/sshd_config file.
First, always make a backup copy of conf files you wish to edit.
# cp /etc/ssh/sshd_config /etc/ssh/sshd_config.backup
Launch your fave text editor and edit /etc/ssh/sshd_config
#vi /etc/ssh/sshd_config
Go to specific lines that shows
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
ListenAddress *
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
If you wish to bind ssh to existing 2 IP address, let’s say 192.168.1.5 and 192.168.1.7 , this could be done by changing the above sshd_config lines to
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
ListenAddress 192.168.1.5
ListenAddress 192.168.1.7
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
and Restart sshd daemon using the following command
# service sshd restart
One applicable instance that his can be useful is that when you have a group of ssh users and there are times you need to disconnect all those currently logged in ssh users except your own remote ssh connections. This can be simply done by shutting down the other interface from where those ssh users are currently connected. And ofcourse, you need to be currently connected with the other interface before shutting down the other interface or IP address.
Tags: bind ssh to selected IP address, bind ssh to selected IP address in linux, bind ssh to static ip addressbind ssh to selected IP address, bind ssh to selected IP address in linux, bind ssh to static ip address addthis_url = 'http%3A%2F%2Fwww.debianadmin.com%2Fhowto-bind-ssh-to-selected-ip-address.html'; addthis_title = 'Howto+bind+ssh+to+selected+IP+address+'; addthis_pub = 'david23';
©2007 Debian Admin. All Rights Reserved.
.Debian: Debian Admin Step By Step Tutorials and articles with screenshots
This is very useful tip for all debian users
You can prevent automatic running of the GUI when you boot your debian machine by disabling your login manager be it KDM, GDM or XDM from running at boot time. To disable the login manager from automatically running at boot up, run the following command as root
#update-rc.d -f gdm remove
Replace gdm with kdm or xdm if they are what you use.
To start X manually, you would then have to login at the command prompt and enter the command startx.
To reset your login manager so that it runs at boot up, do
#update-rc.d -f gdm defaults
Tags: boot debian in text mode, disable login manager debian, how to boot debian in text modeboot debian in text mode, disable login manager debian, how to boot debian in text modeDebian: Debian Admin Step By Step Tutorials and articles with screenshots
su is run a shell with substitute user and group IDs. su is used to become another user during a login session. Invoked without a username, su defaults to becoming the super user. The optional argument - may be used to provide an environment similar to what the user would expect had the user logged in directly.
Restricting su command to root superuser only is simple.
First, determining the path location of the binary is required using the following command
# which su
returns
~~~~~~~~~~~~~~~
/bin/su
~~~~~~~~~~~~~~~
Remember the current file mode bits and restrictions for su binary
# ls -la /bin/su
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-rwxr-xr-x 1 root root 24284 Apr 28 2007 /bin/su
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Noticed that su binary is world executable and world readable. This basically means anybody can call and execute the su binary and gain access to perhaps stolen password with bash-enabled user accounts. If you wish to change this, you can issue the following command as follows
# chmod 700 /bin/su
So, only root and root alone can call su binary command.
Note that, it is not advisable to do this if your su binary is set to suid root, that has similar attributes like below:
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-rwsr-xr-x 1 root root 27052 2007-08-02 18:33 /bin/su
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
as it could affect some apps and package that links to suid root-ted su binary.
Tags: restrict su command to superuser, restrict su command to superuser in linux, super user linuxrestrict su command to superuser, restrict su command to superuser in linux, super user linux
Debian: Debian Admin Step By Step Tutorials and articles with screenshots
Let us say that you want to rename all of your “.php5″ files to “.php” files. You can use for loop.
for old in *.php5; do cp $old `basename $old .php5`.php; done
Thats all there is to it. Let us say you need to rename index.php5 to index.php. The way above snippet works is that it loops through current directory and finds all the files with extension “.php5″ and processes ‘one by one. In our index.php5 file example, it finds index.php5 file, does a cp index.php5 `basename index.php5 .php5`.php Tag: Rename multiple files to another extension in LinuxRename multiple files to another extension in Linux
Debian: Debian Admin Step By Step Tutorials and articles with screenshots