FQDN (Fully Qualified Domain Name)
On Fedora, the system configuration requests a domain name and a hostname separately. On Ubuntu it requests only the hostname, in which you would input your hostname.domain. On Debian it also requests only a hostname, in which you would also type hostname.domain. On Ubuntu and Fedora you can reference your computer just by the hostname. I have noticed that on Debian, an SSH connection will show the host computer as the hostname.domain. There is nothing to be worried about, this is just some observations about the behavior of different Linux distributions. Note that on Debian systems, you cannot use a short hostname, you need the hostname.domain to establish a FQDN (Fully Qaulified Domain Name). To set the hostname use: sudo hostname -v hostname.domain For instance, the web server, that produces this website, uses a hostname of web.bgevolution.com, where web is the hostname and bgevolution.com is the domain name. At one point I tried to just use the hostname as web, without the domain, and by not setting the domain, Apache was setting 127.0.0.1 as the FQDN. I dont think this is an issue at all, as Apache fully functioned properly, but none the less I dont like to see errors when I restart a computer service, therefore I set the hostname to include a domain to establish a FQDN
