I'm a little confused with my systems hostname.
I have a Sabayon system at my office, where also a Domain is running.
my hostname actually is "it01" (as seen in /etc/conf.d/hostname
- Code: Select all
# Set to the hostname of this machine
hostname="it01"
When I start the system I get this on the KDE welcome screen:
- Code: Select all
Willkommen auf it01
And when I switch to console login I get this message:
- Code: Select all
This is it01.unknown_domain
Now I changed it to a fqdn which for our company is this: it01.domainname.local, so the /etc/conf.d/hostname looks like this:
- Code: Select all
# Set to the hostname of this machine
hostname="it01.domainname.local"
Now I did a reboot and for the KDE welcome screen it looks correct:
- Code: Select all
Willkommen auf it01.domainname.local
But when I switch to console it looks like this:
- Code: Select all
This is it01.domainname.local.domainname.local
Why does domainname.local appear double? Is it to show that the machines name is it01.domainname.local and the domainname is domainname.local?

