How to change your hostname in Linux/Unix?

Posted by Jiltin     18 March, 2009    12,633 views   

Fedora Core 2

Yes there’s an easy way of changing the hostname in FC2. after Login just at command line enter ‘hostname’ to see what is the hostname seted there, if returns localhost then you have to change this in

1. ‘/etc/sysconfig/network’ edit this file and give hostname whatever you like in the line “hostname=” and then save this file and at the command line give the hostname command but now also you will get the same old host name as ‘localhost’ so set the hostname using command hostname (for eg: hostname vikas — here hostname command will set the hostname as vikas, pls note that the name you are giving for the host name must be same as the hostname you have specified in ‘/etc/sysconfig/network’ file.

No, it does not have to be the same. It is just that if it is different, then what is in /etc/sysconfig/network will be the hostname when you reboot. The hostname you set on the command line will be gone. If you are going to reboot then messing with the hostname command is a waste of time.

At boot time the initscripts read the hostname from /etc/sysconfig/network and set it to whatever the HOSTNAME variable is set to. Note the HOSTNAME= line in the above file must be uppercase. ie: HOSTNAME=foo will set the hostname to foo. hostname=foo will not.

2. ‘/etc/hosts’ edit this file and this file would look like ” IPAddress hostname localhost.localdomain localhost” in the place of hostname give the name as you wish(in the example same as hostname given in /etc/sysconfig/network file and hostname setted at command line), and save this file

If you have a working dns on the network and the new name resolves you do not need to mess with /etc/hosts. If you are going to mess with /etc/hosts leave the line with the localhost stuff in it and add another line with the new info. That way localhost will always resolve no matter what. Not having localhost resolve can cause problems sometimes.

3. Now restart the NFS and Network service by using the command ’service nfs restart’ and ’service network restart’

Why? This is not necessary, especially if you are going to reboot. What is the point of restarting a service and then rebooting the machine to restart the service again. It appears to me you are giving advice on a subject you know little about.

4. Restart your computer inorder to take effect the changes you have done. Not necessary. Pick one way or the other. If you are going to restart the machine simply edit /etc/sysconfig/network and /etc/hosts if necessary, then reboot.

If you do not want to reboot, then do the above plus “hostname new_hostname” and “service syslog restart” so that syslog rereads the hostname and labels the log files correctly. The OP wanted a simple way to change the hostname.

Your way while it will not hurt is unnecessarily complex and as you described it above will not work (hostname= != HOSTNAME=).

While the /etc/hosts file is generally the first to come to mind when you think about changing the name of a Unix system, modifying this file is only one step in the process. The other files that need to be changed depend on which particular version of “*nix” you are running.

The following is a list of UNIX flavors and methods of changing hostname permanently on each system.

1) Solaris

On Solaris, there are three files that you need to edit. These include /etc/hosts, /etc/hostname. and /etc/nodename.

- Edit /etc/hosts with vi and update to the new hostname.
- Similarly update /etc/nodename using an editor or “echo newhost > /etc/nodename”
- Lastly, edit /etc/hostname.. The should be replaced by the name of the particular network interface on your server. For example, a common name is /etc/hostname.hme0. If you’re not sure about the interface name, simply do an ‘ifconfig -a‘, this’ll display the network interface name.

Once you’ve updated the above 3 files, best thing is to reboot your system or if can’t reboot right away, you can execute ‘uname -S ’ command to assign the new hostname immediately.

2) Redhat Linux (Fedora, Mandriva, PCLos)

On Redhat based Linux systems, the primary setting for the system hostname is included in the /etc/sysconfig/network file.

- Open this file in editor, you should see something like this:
—————————————————-
NETWORKING=yes
HOSTNAME=abc.example.com
—————————————————-
- and of course the /etc/hosts file.

3) Debian/Ubuntu Linux

Debian based systems use the file /etc/hostname to read the hostname of the system at boot time and set it up using the init script /etc/init.d/hostname.sh.

- Edit /etc/hostname and update to your new hostname, you can then run /etc/init.d/hostname.sh to activiate the change.
- Update your /etc/hosts file to refelect new hostname

You can also use sysctl to change the hostname:

- sysctl kernel.hostname (To read the current hostname)
- sysctl kernel.hostname=NEW_HOSTNAME (to change it)

To change in gui in Ubuntu you can click to:

- System > Administration > Networking > General tab > Host name field

4) Slackware Linux

Similar to Debian except the it is uppercase HOSTNAME.

- Edit /etc/HOSTNAME and update to new value
- Update /etc/hosts to new hostname value as well

5) SuSE Linux

To change hostname permanently on SuSE Linux

- Edit the file /etc/HOSTNAME and change the value in it, Save and exit
- Update /etc/hosts to new hostname value

6) Mac OSX

To change hostname on a Mac OSX server…

- Edit /etc/hostconfig and update to your new hostname
- And of course the /etc/hosts file needs to be adjusted to your new host

You can also execute the following command:

- sudo scutil –set HostName abc.example.com

7) OpenBSD

Very similar to Solaris operating system.

- Update to new hostname in /etc/hosts file
- Make appropriate change in /etc/myname
- Lastly, /etc/hostname.. Similar to Solaris, you’ll need to identify system interface and update this file appropriately.

8 ) HP-UX

The script /sbin/set_parms changes system parameters including hostname and IP address.

- /sbin/set_parms

9) Digital Unix

- Edit /etc/hostname.driver

- As well as /etc/hosts file

10) FreeBSD

To change hostname do:

- Edit /etc/rc.conf and update to new hostname value

- Edit /etc/hosts

11) AIX

AIX stores all its information in ODM (Object Database Manager) including hostname value. There are a couple ways of doing it:

- chdev -l inet0 -a hostname=thomas

Or you can use smitty as well.

12) NetBSD

- Edit /etc/myname

- And of course edit /etc/hosts file :)

13) SCO Unix

I don’t know who in their right mind would run SCO these days. But anyhow the way to change hostname permanently is:

- sys-unconfig

14) IRIX

I can understand why IRIX may still be used. To change hostname:

- Edit /etc/sys_id and update to new host value

- Edit /etc/hosts as well

Then reboot your workstation/server for changes to take affect.

Finally, some general facts about all Linux distros. The following are commands that are unique to all flavors of Linux:

To print current system hostname on the system:

- hostname
- uname -n
- cat /etc/hosts ‘ grep 127.0.0.1

To print the fully qualified domain name of the system:

- hostname -fqd

To temporarily update the system to new hostname:

- hostname new_hostname
- echo “new hostname” > /proc/sys/kernel/hostname

On most Linux flavors, you can also execute the command:

- netconfig

In conclusion, please keep in mind that all UNIX flavors utilizes the /etc/hosts file to associate IP to hostname for your local server. So this file is global and you’ll need to make sure this file is not overlooked. Please add to the comments if I’ve missed other major flavors.

Following Google Searches Lead To This Post: unix error hostname
change hostname in aix
oracle enterprise linux set hostname
set local fqdn fedora 11
set hostname redhat uppercase
linux mint change hostname
rhel5 how to set the IP address and host name
rhel5 change hostname oracle
change hostname and uname on ubuntu
change hostname on ubuntu9.04
ubuntu hostname change
files changed in sys unconfig script RHEL 5
debian hostname change command line
setting hostname on RHEL4
Linux AND host name AND dynamic
rhel5 change fqdn without reboot
adding hostname in SuSE
change hostname linux “echo”
how to find hostname in SLES 11
change nodename linux
linux, php how to get host name
change hostname in linux redhat slow server
unix hostname
mandriva 2009 set hostname
assign hostname in aix
change hostname fedora 11
ubuntu unable to resolve host after rename
UNIX change hostname
how do i set persistent hostname of a fedora machine dns
how do i set persistent hostname of fedora 11
how to change ip address and host name in RHEL5
redhat +change hostname+bash
change unix computer name
linux multiple host name
proper method of changing hostname rhel
change hostname in sles 9
redhat es5 change node name
fedora 11 set hostname
howto change hostname rhel 4
changing hostname on suse linux via comand line
how to give hostname in linux
hostname suse linux stored
change hostname linux fqn
config host name unix
assigning IP address in linux netbsd
rename host aix
change the hostname on aix
how to setup ip address in suse 11.0
linux php setting HOSTNAME
centos change host unique name
where does Linux store hostname
cent change hostname
suse 10 rename host
unix server, the hostname saved in
where will the hostname saved in unix system
where will the hostname saved in aix server
update hostname on AIX
linux set hostname automatic
how to change hostname rhel5
assigning ip address and hostname in linux from command line
debian changing uname
linux re read host name
suse set hostname to fqdn permanently
display hostname linux
how to change the hostname on a unix machine
editing host name through hosts linux
mengganti hostname di macintosh
Your hostname is not set properly. Please change your hostname to a fully qualified domain name, and re-run this installer.
rhel change host name
changing hostname aix
Your hostname is not set properly. Please
how to change the hostname in ubuntu 9
how to change uname hostname redhat
change unix hostname
“red hat linux 5″ “cambiar ip”
change nodename on suse linux
fedora11 how to set HOSTNAME
change hostname suse linux
how to permanently change the hostname+suse linux
+linux +change +hostname +commandline
suse hostname uname
how to convert hostname to host address using linux
unix hostname variable
suse change hostname oracle
change hostname fedora 11 command line
store UNIX AIX hostname in a variable
fedora core 10, get machine hostname
unix redhat local host name not qualified
hostname enterprise server umbenennen
can’t change hostname in linux
unix edit host file
cannot resolve hostname unix
linux change nodename
suse hostname not set
RHEL5 how-to rename host change IP
fedora core 11 how to set fqdn hostname
fedora core 11 how to set hostname fqdn
sles 10 check hostname renaming
add hostname in linux mint
services to restart after changing hostname
debian machine name hostname.sh command not found
centos “unable to resolve host address”
change hostname + red hat enterprise linux
odm host resolve
can’t get hostname for your address linux
how to configure the hostname in linux
network node hostname linux
Your hostname is not set properly. Pleasechange your hostname to a fully qualified domain name,and re-run this installer.
unix hostname how to display full server name
+/etc/hostname “multiple hostnames”
read hostname from unix in sql
change network name in linux centos
linux mysql + change hostname
changing mysql host to ip address on redhat enterprise linux
HOW TO CHANGE HOSTNAME AND DOMAINNAME IN UBUNTU CLI
solaris 10 change hostname oracle
oracle 10g change hostname solaris 10
find the computer hostname in unix
change host name suse
how to give hostname ubuntu
gui linux edit host domain
rhel5 changing hostname
ubuntu “change fqdn”
hostname unix
setting unix hostname
change the host name and the ip address in suse
how tochange localhost ubuntu to domain
set hostname opensuse CLI
solaris setting hostname java
how to change hostname for suse linux
unix+host+change
unix+change host
change hostname sous ubuntu
commandline change hostname linux
change hostname suse
Cambio de hostname en Solaris 9
ubuntu server i change hostname but syslog old hostname
Your hostname is not set properly. Please change your hostname to a fully qualified domain name, and re-run this installer.
where is hostname stored in linux
where does centos keep hostname?
cambiar hostname redhat
your hostname is not set properly. Please change your hostname to fully qualified domain name, and re-run this install
store \the hostname in C in LINUX?
Setting the hostname in LINUX C++
“changing ip address” of opensuse linux server
LINUX store hostname C++ language
how to change hostname on mint
rhel5 hostname
change localhost of oracle for linux
cambiar el hostname en redhat
redhat el 5 slow boot after ip address change
how to change hostname in UNIX
set suse linux hostname
what is a unix hostname
how to change hostname aix on reboot
change machine hostname in suse 10
how to change the hostname in unix
convert “host to ip” java
fedora 11 change localdomain command line
set hostname linux uname
unix set hostname
set hostname oracle enterprise linux
irix edit hosts problem
change servername suse linux
How to assign hostname to a node in linux
where is linux host name stored
sles change hostname
linux automate add hostname to hosts
aix network node name hostname
cant resolve hostname localhost in fedora
RHEL slow login after machine rename
“how to give mysql localhost a network host name”
changing aix hostname
how to give a host name a server aix
slackware change host domain
updating uname hostname
unix set domain hostname
what’s your hostname in jaunty
ubuntu c++ getting hostname
unix interface hostname
linux – Update the above files to set your hostname and IP address.
UNIX changing hostname
change hostname unix server
unix host name
redhat es5 change hostname
how to change fedora 11 domainname host name changing
how do I change the host name and domain in ubuntu command line
how to check host name in unix
unix configure local host name
change hostname in startup linux
opensuse change hostname command
unix create hostname
cambiar hostname fedora script
where is unix hostname
host name stored redhat
centos change hostname gui
how assign hostname to linux
how to change unix hostname
centos unable to resolve host address
change hostname on unix
linux multiple hostnames
change hostname oracle enterprise linux
how to change hostname in SuSE linux
linux kernel/hostname look at file
linux set network node hostname
rename host linux rhel5
sendmail wont start in fedora after changing hostname
change nodename Fedora 10
debian hostname change after restart
Mint: host-name ““;
change hostname and domain in linux rhel 4
changing computer name on mint 7
RHEL +howto change hostname
ubuntu 9 mysql hostname
mengganti hostname di centos
fedora change computer name
how to give the host name in linux
rename hostname freebsd
solaris upper-case hostname
set hostname on boot linux
jaunty hostname edit
unix edit hostname
changing hostname in linux hostname command
suse linux macchanger edit
unable to look up hostname +slackware
linux hostname variable ubuntu
unable toresolve host in linuxmint
setting your hostname in FreeBSD
how to change the hostname in sles 10
sendmailhostname
how to modify a hostname in unix server
config hostname ubuntu9
Your hostname is not set properly. Please change your hostname to a fully qualified domain name, and re-run this installer
unix command to change the hostname
linus “change fqdn”
rename+host+centos
changing hostname in fedora 11
unix configure hostname for ip address
linux modify hosts network restart
how to change the network domain in linux mint
sco unix change domain name
how to change nodename linux
set “random hostname” on boot
linux hostname variable
unix check current ip
adding ip and hostname in hosts file in linux through commands
CHANGE hostname in suse 11 command
linux set host address
oracle enterprise linux hostname rename
setting hostname in Unix
unix hostname network
cambiar hostname linux
centos /etc/nodename
SLES set hostname boot
how to change the hostname of Unix Machine
can unix hostname start with a number
keep your hostname from changing on MAC
cambiar ip en linux suse
how to read mac address and set linux hostname
localhost.localdomain cambiar
changing hostname oracle enterprise linux
change hostname in Linux Mint 7
change hostname mint
how to give a host name to a computer
assign local hostnames ubunto
how to change uname linux
change localhost in unix
modificare /etc/hosts script ubuntu
cambio de hostname en solaris 10
mint set local ip
multiple hostname same pc
change hostname suse 10 without rebooting
hostname in Unix
seting hostname di centos
how to save Network changes permanently in Linux
change mysql host unix
how to change hostname fedora and keep after reboot
changing IP address & hostname on RHEL4 server
to change the hostname in CentOS linux system
linux hostname not display
fedora11 persistant hostname change
chaning hostname in mysql
solaris+hostname change persist
changin shell in unix
how to get hostname in ubuntu c++
linux update hostname
fedora 11 change hostname
where hostname is stored in redhat linux
how to change fully qualified computer name in aix
redhat change machine name
change hostname sles 11
modify hostname unix
linux name multiple addresses check uname
cli change host name osx
change hostname fedora core
command rename linux hostname
how to modify startup in linux mint
“localhost change”+hp-ux
slackware change domain
AIX hostname change
what to change in rc script to make ip permanent in solaris 9
linux bash changing host name
centos change hostname without reboot
how do you change the hostname in rhel
RHEL change computer name
dont print hostname at linux login prompt
change host ip address permanently in unix
How do i change the command prompt to hostname is OPENSUSE
specify multiple hostname in oracle oem
how to change hostname on unix
ip change mysql redhad
how to change the permnently change the hostname in linux
echo $DISPLAY change localhost linux
ubuntu “change domain name” howto
where is hostname stored in linux in openSuSE
apply changes in resolver without restarting bsd
rename host linux oracle database 10g
unix make interface changes permanent
how do i setup Hostname Ubuntu9
where the host name will stor in unix
suse 9 change host name
save hostname mac
change computername debian
suse change host name
how to check domain on unix machine
set hostname rhel
hwo to send mail via linux command line
to change hostname in unix
automatic hostname ubuntu
linux hostname lost on reboot
modificar hosts en ubuntu
opensuse11.1 +”changing hostname”
linux hostname uname
centos set multiple hostnames
display host name suse linux
linux change hostname suse
changing hostname on linux without reboot
node change uname linux
how to change the hostname in linux
how to change hostname sco unix
c++ set domainname linux
change computer name unix
after changing the hostname in solaris, without rebooting how the settings will effect
debian can’t resolve host names
unix linux mail options set hostname
ubuntu howto rename host
change localhost prompt in linux permanently
fedora hostname change permenant
configure hostname and ip in suse linux
linux c++ change hostname
unix hostname and uname
random hostname at boot
changing hostname in sco unix
unix set host ip
linux + cannot find full hostname
ipchange in linux rhel5 server
how to update hostname in RHEL4
how to chnage unix hostname
change hostname RedHat ES5
getHostName in Java returns FQDN in AIX ?
where does hostname is located in unix machine
howto set hostname linux mint
unix to redhat linux script changes
which service to restart after change in hosts file linux
uso di sys-unconfig
freebsd multiple hostnames interfaces
How to change the host name in redhat 5
linux local variables hostname
“hostname -fqdn” fedora
can not change linux hostname
how to configure hostname in linux for mysql
changing ip of a host in unix
change host name in SLES
centos /etc/sysconfig/network hostname automatic
fedora 11 change computername cli
oracle enterprise linux change hostname
edit hosts file +linux +restart
sco unix where is hostname stored
i used the gui to change the hostname on aix, how do i fix it?
change ip permanently in linux
Linux script to change hostname
sles 11 change hostname
change nodename redhat
changing hostname red
rename linux mint hostname
“os x” “find hostname”
irix set hostname
change host name on command line
how to change node in linux
where do you set network node name linux
change hostname linux gui
change hostname suse11
unable to resolve host address `opensuse’
hostname change in unix
change the hostname of ubuntu workstation
rename hostname suse
how to find hostname on opensuse
modify unix hosts howto
suse linux set hostname
opensuse hostname generator
cambiar+ip+ubuntu+network
change hostname suse cli
adding hostname unix
unable to resolve the hostname specified in the “/etc/hostname.hme0″ file
how to change hostname linux sles10 /etc/hostname
config hostname on linux
sys-unconfig ubuntu
ubuntu cambio mac address
change hostname ubuntu 9
how to change hostname of linux in command line in rhel
Cambiare ip adresse a ubuntu server
sethostname c++
CAMBIAR EL HOSTNAME EN FEDORA
change host name centos gui
command line unix “ip change” rename
what is the impact if the hostname is changed on Redhat
suse linux set hostname command line
local host name is not qualified
command to change hostname in centos 5
how to change the host name in enterprise manager
comand and enterprise economy
changing the hostname SLES 11
fedora 11 set hostname from command-line
how to change the name of a unix server
how to change change FQDN linux
linux ip changer
change domain host name +centos
modify hostname after installation linux
change sles 11 hostname
unix +hostname
how to change computer name in linux mint
linux mint change network name
unable to resolve host changed hostname mint 7
add hostname in suse
rhel4 unable to resolve hostname
linux cannot resolve dns
Linux + how to change + uname shows FQDn
changing hostname in rhel4
linux random hostname startup
ebian chnage computer host name
ubuntu change nodename
ubuntu change hostname without restart
how to change network on unix
change “computer name” centos
how to set hostname in slackware
how to change localhost name in mandriva
rename unix hostname
cambiar hostname opensuse
how to change dns in mint linux
i cant save changes in hostname file in ubuntu
Suse Linux Command Prompt Hostname
Linux set nodename
your host name is not set
oracle 10g database host “change ip”
changing linux hostname without rebooting + debian
assign machine name in linux from command line
modify hostname in Linux box
What system command is responsible for setting the hostname on a Unix or Linux system?
redhat enterprise cant change hostname
unix change ipaddress bash
redhat 5 change ip and hostname
hostname change linux suse
“use dynamic global hostname”
Changing network name using unix on a mac
suse configuring multiple hostnames
Hostname change command in unix
find your hostname unix
ubuntu server multiple hostnames
what is /etc/nodename for linux?
HOW TO hostname to linux enterprise linux
hostname rename linux redhat
hostname rename redhat sysconfig without reboot
hostname rename redhat sysconfig service restart
change hostname aix
how to rename a linux ubuntu host
how to check the full hostname unix
how do i change computer name in unix
fedora changing hostname & localhost ip address alias
command for setting hostname in UNIX and linux
Suse Linux hostname command
how to change the hostname without restarting the server in solaris
how to change hostname in suse 10
assing hostname in linux
get hostname for linux pc
how to find the hostname in linux
edit unix hostname mac
hostname linux change reboot permanent
how to create ip address and hostname in linux 5.0
change computer name in slackware
change linux hostname of oracle server
changing hostname in Unix
find hostname of machine command line centos
UNIXWARE+change hostname
unixware+hostname
create hostname fedora
change hostname unix
how to make hostname permanent in suse linux 10
linux /etc/hostname 2 hostnames on ceontos
Linux how to make the hostname permanent
unix hostname change
unix hostname file
suse change hostname
set host in unix
unix command set host name
change the computer name unix
how to rename hostname in fedora
oracle 10g cambio de IP linux
change hostname Linux enterprise linux server
set computer name unix permanently
Can’t get hostname for your address
linux give hostname to a pc
SCO 5.0 hostname en prompt
add host name linux mint
php mail change hostname
changing host name hp
change hostname without rebooting centos
how to change name on linux mint from oem
set hostname redhat 9
change hostname on linux without reboot
change localhost name on fedora 11
set up permanent hostname centos
how to give domain name and hostname in redhat linux
how to change hostname suse
how to change hostname c++
change hostname in fedora without reboot
how to change ip address and hostname in linux
oracle change linux hostname
oracle “change network domain”
change host name linus redahat
set machine hostname on suse linux
sudo@ unable to resolve host after renaming machine
Unix Change host name
modificare l’hostname in n centos
enterprise linux store fully qualified hostname
unix : how to set hostname
sles 11 hostname dns
rename host fedora11
unix modify hostname without restart
java unix hostname
unix hostname reboot
ubuntu rename host
permanently changing the hostname for a sles machine
how to change SLES10 hostname to fully qualified
linux give machine hostname
changing localhost in linux prompt
SUSE11 CHANGE IP ADDRESS cli
variable hostname on linux
how to change host name unix command
how-to ubuntu persist fully qualified domain in resolv
jaunty fully qualified hostname lost
changing hostname in linux suse
how do I change hostname ip on unix
whereis save hostname cmd
unix echo hostname
how to edit ip local host mint
suse hostname change
modify hostname fedora
how to change mysql hostname
mac cannot resolve host name which is in /etc/hosts
changing the prompt to hostname in linux
mengganti hostname di opensuse
how to change hostname in suse 11
script to chaneg rhel5 hostname IP
sles 11 where is host command
cambiar hostname red hat linux enterprise
host to set hostname in RHEL
how to set fqdn in RHEL5 by gui
Hostnames must be fully qualified in RHEL5.1
updating hostname in unix
How to change the hostname in HPUX
set oracle enterprise linux host name
How to change your hostname and domain name in Linu
how to find hostname in unix
unix network hostname
Can’t resolve host: ‘localhost’ in fedora 6
restart process to get new hostname suse
unix how to change the hostname
how to change nodename hp ux
problem changing hp-ux hostname
rhel set hostname fqn
suse command “how to change hostname”
centos OR redhat “rename host” hostname
linux uname “change nodename”
update hostname linux automatically
how to change the system name in SUSE
unix chnge DNS reboot
hostname change sles 9
debian change hostname bash script
rename host name linux gui
linux mint change localhost
modificar local-host-names
macchanger linux howto
unix change hostname ubuntu
network node hostname centos
rename host centos
using echo to change hostname
How would you make the new IP address persistent after a reboot on a UNIX?
changing computer name in linux mint
mysql hostname variable change
change hostname when using mail linux
odm + hostname + aix
how to set hostname in unix
redhat change hostname does not take effect
display hostname in Suse
how to rename hostname redhat 5
in unix hostname
Your hostname is not set properly. Please
change your hostname to a fully qualified domain name,
and re-run this installer.

how to change hostname in linux permanently without reboot
how to change domainname fedora 10
assigning a hostname to linux box
change hostname sles
cannot save dns entry in FC 11
set host on linux
hostname digital unix
SLES 11 hostname
linux change hostname sles
how to change hostname in linux command line
centos change nodename
apache2 change hostname opensuse
how to change hostname of slackware computer
changing hostname variable
opensuse apache change hostname
centos change hostname fqdn
ubuntu sys-unconfig
schimbare hostname linux ubuntu
how to resolve hostname in unix
where is hostname stored in redhat
“suse change hostname”
uname change machine hostname
how to give hostname in centos
changed linux hostname, now slow
hostname linux uname
changing rhel5 hostname
Linux chane hostname
hostname linux change gui
how to change unix server hostname
random hostname boot script centos
randomize host name linux
sles 11 hostname sysconfig
how to change nodename on linux
how to change nodename on linux centos
mac os x set hostname at command line “MAC Address”
suse linux change hostname
ubuntu 9 change hostname
oracle enterprise manager agent can’t find hostname on /etc/hosts
random hostname script linux
how to change hostname in freebsd unix
howto unix change computer name
command to set hostname permanently in linux
config hostname in unix
how to change host name in unix
how to restart after hostname is set
linux howto hostname fqdn hosts sendmail
ubuntu uname hostname
sles 10 host umbenennen
ubuntu changing hostname breaks network manager
oracle checkhostname linux
redhat change hostname oracle
unix change localdomain
cambiar fqdn server ubuntu
change mac hostname from script
“unable to resolve host” sendmail
How to change the hostname of an unix machine
change local hostname unix
aix change hostname
centos: change hostname without reboot
command for renaming hostname in redhat enterprise linux
command for renaming hostname in redhat enterprise linux 5
renaming computer name in redhat linux 5
command for renaming hostname in redhat linux-5
how to add hostname to ubunto 9 server
slackware changer hostname
cambiar linux hostname oracle 10g
making a hostname permanent in linux
modify hostname mac
domainname set fedora 11
cambiar hostname
Mint 7 change domains
unix sending host name
centos hostname stored
opensuse hostname at boot
how to modify hostname in linux
which service must restart after change host name in debian
/etc/nodename linux centos
linux change host name gui
linux-mint change host name gui
how to change your hostname on centos
“/etc/HOSTNAME” opensuse through command line permanently
solaris hostname in upper case
configure multiple hostname in ubuntu
unix adding hostname
rhel5+setting hostname script
how to change the ip on sco unix
changing uname on linux
modificare name server ubuntu server
cambiar ubuntu mac osx
linux macchanger “change ip”
change hostname linux suse
sles change server name
how to give hostname in solaris commands
redhat linux commands to create hostname
change hostname rhel5
oracle oem change ip lunix
can’t change hostname aix
change local hostname solaris 10
enterprise manager host name change
how to change a hostname unix
linux hostnames without reboot debian
linux php hostname
is reboot needed after modify hostname file
HOW TO set hostname in enterprise manager
linux service restart domain name hostname
changing hostname in aix
change localhost in terminal in PC Linux
“mint 7″ “change domain”
seting a host name in mint\
unix network files change host name
fedora 11 chane hostname
changing host FQDN suse
suse10 how change hostname
changing the hostname and ip address of a oracle database
linux where is hostname stored
using “php” to config ip, service DNS in red hat linux enterprise 5
linux mint error unable to resolve host
fedora 11 modify hostname
change hostname in rhel5
how to rename unix node name
what to change in Oracle Enterprise Manager with dns change
where do the hostname will store in linux
“can’t get hostname for your address”
howto rename server opensuse
hostname command in unix
setting hostname jaunty
fedora 11 change host name
linux change node name
change “node name” linux slackware
slow linux after changing hostname
SLES HOSTNAME
Your hostname is not set properly. Please change your hostname to a fully qualified domain name, and re-run th
linux hostname stored
modifica hostname fedora 11
linux example how to know your host name
change hostname hostaddress ubuntu
bash “host to IP”
Your hostname is not set properly. Please change your hostname to a fully qualified domain name, and re-run this installer. fix error
Change linux Hostname and Keep Oracle 10g Running
how to change the hostname on your local linux machine
setting hostname unix
where is unix hostname stored
rhel change computer name and domain
fedora hostname fully qualified
how to give centos a hostname
how to change and save hostname in linux
change host name susse 11command line
change host name rhel 5 restart
how to change the hostname on unix box
changing hostname using gui debian
update hostname without reboot ubuntu
script for changing a machine name in linux
networking restart unable to resolve host
change hostname linux gethostname
how to give permanent ip in rhel
linux mint how to change domain
merubah hostname di fedora
giving hostname to linux box
mandriva set hostname
hostname redir unix
redhat hosts localhost nodename
rhel5 configure hostname
osx change computer network name “uname -n”
linux mint rename oem
script to reboot local host in linux
cambiar hostname ubuntu
whereis the host name for unix
getting script restarted after reboot in AIX
on suse linux set localhost to ip-address
hostname in linux and AIX
how to save hostname in redhat linux
how to assign hostname in linux
change hostname on SUSE
change ip to resolve to your hostname
how to configure a hostname on a unix
linux oracle hostname ändern
redhat change nodename
change hostname in sles
how to change hostname unixware
changing /etc/hosts does not change the hostname
debian change hostname without reboot
centos5 rename computer
linux red hat change uname
red hat linux ip address not saved on reboot
sles change host name
set permanent hostname on rh5.4
modify nodename + HP-UX
mac os x oracle setting hostname
“set the hostname” “suse linux”
get full hostname oracle
linux hostname does not save new name
rhel5 how to change hostname
Linux changing domain name via command line
linux hostnames ip address ubuntu
how to rename ubuntu host without reboot
ubuntu host umbenennen
Fedora 9 command-line setting your hostname
what does sys-unconfig redhat
jaunty server “change domain name”
linux hostname persistant hosts
change computer name linux mint
cambiar hostname fedora
howto set domainname in redhat linux
how to set hostname of pc using redhat
linux giving hostnames
change node name after installed linux
mandriva sets hostname in startup
“solaris 10″ oracle update changed hostname
unix server hostname
suse rename host
how to change the hostname in command line in linux
set node name centos
how to give hostname to machine
script resolve hostname by domain
how to modify hostname linux
where is host names stored in unix
how to change hostname unix
howto add domainname + aix
“change linux name”
fedora11 change hostname and domainname
unix change hostname reboot machine
suse “change uname”
change hostname aix :ibm.com
hostname script
enterprise linux change machine name
Your hostname is not set properly
change localhost to ip address suse
hostname modify ubuntu
change hostnames suse 10
script to change hostname and ip on linux
suse qualified hostname
cambiar mac y hostname en linux
rename hostname /proc/sys/kernel
permanent change machine name fedora
“unable to resolve host name” fedora
unable to resolve host restart apache
centos hostname keeps changing on reboot
linux hostname modify
how to set fully qualified host name in solaris 10
multiple hostnames linux
etc nodename linux
changing the hostname of a linux machine with oracle installed
set hostname SLES 11
ubuntu renaming your hostname
set node name linux
howto give a fully qualified domain name in ubuntu
unix fully qualified domain oracle
change hostname oracle redhat
Your system hostname is not set correctly.
changing hostname suse
changing hostname in bash linux
fedora rename host machine name
set hostname linux mint
redhat set domain hostname
rename computer name unix
can’t login after hostname change
suse linux how to change hostname
networkmanager slow to set hostname
change localhost to domain on Ubuntu
host name in unix
opensuse change hostname file
how to change hostname on oracle enterprise linux
linux HOSTNAME=-AUTOMATIC-
ubuntu change hostname and domain GUI
assign hostname using command linux
“gethostname” linux sample
find hostname unix
modify hostname linux
configure suse 11 linux hostname
/etc/init.d/hostname.sh & “command not found”
+osx +oracle +hostname +change
rename sles 9 hotsname
howto unix change fqdn
linux suse change name of command prompt
modify hostname ubuntu
oracle linux change hostname
linux sles 11 change ip
mandriva set fully qualified domain name
fedora change hostname on boot
mac change computer name uname
Oracle 10g linux mint
suse linux shell set localhost
edit hosts in linux mint
how to change the fully qualified host name ubuntu server
slackware changing host name
change host name linux will affect oracle
cambiar hostname sles
ip and hostname in suse
how to change hostname unix aix
howro set hostname sles9
package “update-hostname” ubuntu
ubuntu host umbennen
cara mengganti hostname windows
centos set persistant hostname
chnage hostname mac
Unable to find Fully Qualified Host Name for host unix
centos 5 change hostname script
how to change domain in unix
centos going really slow after changing hostname
centos very slow after ip and hostname change
configuring dns on sles 11
add multiple hostname to mysql
centos5 howto change oracle 10g server name
change dns hostname in osx script
changing hostname opensuse
hostname suse linux
opensuse linux how to change machine name
unix dns hostname
mengubah hostname centos
sendmail slow to work on boot rhel5
oracle changing Linux hostname
suse hostname command
change localhost to domain in linux
UNIX AIX and redhat Linux Commands
“hostname.sh command not found”
how to give parmnent hostname in fedora
linux change machine name permanent
setting ip address in sco unix version 5
linux mint change computer name
Which files needed to modify to change a hostname in SLES
sys-unconfig centos
how to assign hostname to node
rhel change ip and hostname
hostname change is not working solaris 10
linux can’t get hostname for your
modificar hostname in solaris
finding unix hostname on command line
change hostname aix commandline
hostname suse command line
how to change hostname using hostname command in mandriva 2009
automatic upgrading wordpress keeps changing hostname
how to assign a fqdn in rhel5
change hostname red hat enterprise 5
mint oem umbenennen
how to set hostname sles
fedora 11 permanent change computer name
centos multiple hostname value
cambiar hostname oracle enterprise linux
jaunty hostname
oracle “change domain”
set hostname on boot SUSE
linuxmint computername change
cannot resolve linux host from mac
linux give hostname to localhost
fedora 11 configure local hosts
rename the linux host RHEL4.4
linux change hostname rhel5
how to change your hostname, suse
SLES 11 change domain
changing pc name mint
cara setting domain di linux mint
hostname chaned syslog
suse find hostname
command to change hostname in redhat
mint set hostname

Post to Twitter  Post to Delicious  Post to Digg    Post to StumbleUpon

Categories : Scripts Unix Tags : ,

Comments

No comments yet.


Leave a comment

(required)

(required)