Another tweak to use on Ubuntu to make sure it is working just fine.

The /etc/hosts file on my Ubuntu system did not have the proper hostname set and this could have been causing issues. So I edited it and set a nodename and now my PC works fine. 4.4 Fri Sep 07 jason@Yog-Sothoth 0: $ cat /etc/hosts 127.0.0.1 Yog-Sothoth # The following lines are desirable for IPv6 capable … Read more

How to change the Ubuntu hostname easily.

Change the hostname easily on your Ubuntu or Linux Mint machine To change the hostname of an Ubuntu machine, there are a couple of files that need editing. Firstly, open the /etc/hostname file and change the hostname in here to the one you wish to use. 09:51:17 0 ~ jason$ sudo vim /etc/hostname09:51:17 0 ~ … Read more

How to set a hostname on a Cisco 2950 switch with the terminal.

To set a new hostname on a Cisco router, switch to privileged exec mode by typing enable at the prompt. Enter configuration mode by entering this command. eng_floor_2#configure terminaleng_floor_2#configure terminal Then set the hostname by typing this command. eng_floor_2(config)#hostname eng_floor_2eng_floor_2(config)#hostname eng_floor_2 Now the proper hostname has been set on the switch. eng_floor_2#show running-config Building configuration… … Read more

How to change the hostname on an Ubuntu or Linux Mint system with the command line.

Changing the hostname on a Linux system is very easy indeed. Use this command to set a new hostname. homer@homer-eME730:~$ sudo hostname netbook.local Then edit the /etc/hosts file to set the new hostname. homer@homer-eME730:~$ sudo vim.tiny /etc/hosts And edit it to the new value. 127.0.0.1 localhost 127.0.1.1 netbook.local # The following lines are desirable for … Read more