Moved those files from _partials out of the way. Should be completely removed when the current articles with the former partials included are checked.

This commit is contained in:
Peter Boy 2023-08-29 16:54:28 +02:00
parent 36bbc39eaf
commit 8bb6a17f0f
148 changed files with 0 additions and 0 deletions

View file

@ -0,0 +1,34 @@
// Module included in the following assemblies:
//
// changing-hostname.adoc
[id='displaying-current-hostname']
== Displaying your current hostname
For Fedora Workstation, using the default GNOME desktop, open the Settings application and choose About.
image::displaying-current-hostname-1.png[GNOME Settings - About]
To see the hostname from the command line, use the command `hostnamectl` with no options. The example output below shows the static and transient hostnames. Your output may be slightly different depending on which hostname types have been set.
....
Static hostname: localhost.localdomain
Transient hostname: fedora
Icon name: computer-laptop
Chassis: laptop
Machine ID: 15fc9e69d007013025f31bc5272c4ed1
Boot ID: 41ac938872bae052294bcb277241ac93
Operating System: Fedora 33 (Workstation Edition)
CPE OS Name: cpe:/o:fedoraproject:fedora:33
Kernel: Linux 5.10.10-200.fc33.x86_64
Architecture: x86-64
....
To see the current static, transient or pretty hostname, you can use the `hostnamectl` command with options, such as:
....
hostnamectl --static
hostnamectl --transient
hostnamectl --pretty
....