Login Message (Linux): Unterschied zwischen den Versionen

Aus Tutorials
Zur Navigation springen Zur Suche springen
Zeile 1: Zeile 1:
{{note|Noch in Bearbeitung}}
{{note|Noch in Bearbeitung}}


== Servername ==
<pre>
sudo apt-get install figlet
</pre>
<pre>
sudo vi /etc/update-motd.d/20-host
</pre>
<pre>
#!/bin/sh
figlet -c `hostname`
</pre>
<pre>
sudo chmod a+x /etc/update-motd.d/20-host
</pre>
<pre>
                      ___  ___ _ ____  _____ _ _|___ \
                      / __|/ _ \ '__\ \ / / _ \ '__|__) |
                      \__ \  __/ |  \ V /  __/ |  / __/
                      |___/\___|_|    \_/ \___|_| |_____|
</pre>


== Links ==
== Links ==

Version vom 17. Februar 2020, 22:52 Uhr

Noch in Bearbeitung


Servername

sudo apt-get install figlet
sudo vi /etc/update-motd.d/20-host
#!/bin/sh

figlet -c `hostname`
sudo chmod a+x /etc/update-motd.d/20-host
                       ___  ___ _ ____   _____ _ _|___ \ 
                      / __|/ _ \ '__\ \ / / _ \ '__|__) |
                      \__ \  __/ |   \ V /  __/ |  / __/ 
                      |___/\___|_|    \_/ \___|_| |_____|

Links

https://linuxconfig.org/how-to-change-welcome-message-motd-on-ubuntu-18-04-server

http://www.kriblogapp1.appspot.com/linux/centos/how-to-change-welcome-message-or-banner-on-linux-centos.html

Text to ASCII Generator (TAAG)


Zurück zu Ubuntu