Ubuntu 12.04 - Hostname, IP Adresse und DNS Server eines Linuxsystems über die Konsole ändern

Hin und wieder kommt es vor, das bei Ubuntusystemen der Hostname bzw. die IP geändert werden muss. Dieser Vorgang ist über die Konsole schnell durchgeführt:

Hostname ändern

sudo nano /etc/hostname

sudo nano /etc/hosts

sudo hostname -F /etc/hostname


Hostname in Postfix anpassen

Sollte Postfix installiert sein muss auch dort der Hostname angepasst werden

sudo nano /etc/postfic/main.cf

myhostname = hostname
mydestination = hostname

sudo nano /etc/mailname

sudo service postfix restart

IP Adresse ändern

sudo nano /etc/network/interface

auto eth0
iface eth0 inet static
address 192.168.0.2
netmask 255.255.255.0
network 192.168.0.0
broadcast 192.168.255.255
gateway 192.168.0.1

sudo /etc/init.d/networking restart

DNS Server ändern

sudo nano /etc/resolv.conf

nameserver 192.168.0.101
nameserver 192.168.0.102

Für einen Hostname Look Up kann zusätzlich noch die Domäne angegeben werden

search domain.de

Trackbacks

Trackback specific URI for this entry

This link is not meant to be clicked. It contains the trackback URI for this entry. You can use this URI to send ping- & trackbacks from your own blog to this entry. To copy the link, right click and select "Copy Shortcut" in Internet Explorer or "Copy Link Location" in Mozilla.

No Trackbacks

Comments

Display comments as Linear | Threaded

No comments

Add Comment

E-Mail addresses will not be displayed and will only be used for E-Mail notifications.
Enclosing asterisks marks text as bold (*word*), underscore are made via _word_.