diff --git a/pages/linux/hostname.md b/pages/linux/hostname.md new file mode 100644 index 0000000000..b807d87b6d --- /dev/null +++ b/pages/linux/hostname.md @@ -0,0 +1,23 @@ +# hostname + +Show or set the system's host name + +- Show current host name + +`hostname` + +- Show the network address of the host name + +`hostname -i` + +- Show all network addresses of the host + +`hostname -I` + +- Show the FQDN (Fully Qualified Domain Name) + +`hostname --fqdn` + +- Set current host name + +`hostname {{new_hostname}}` diff --git a/pages/osx/hostname.md b/pages/osx/hostname.md new file mode 100644 index 0000000000..ed4c36a6cf --- /dev/null +++ b/pages/osx/hostname.md @@ -0,0 +1,11 @@ +# hostname + +Show or set the system's host name + +- Show current host name + +`hostname` + +- Set current host name + +`hostname {{new_hostname}}`