全文検索:
- 2022.08.31 ubuntu motd
- 1 ubuntu motd ====== ubuntuでmotdを修正する方法 ===== /etc/update-motd.d/以下のスクリプトが実行されている ===== <code> root@regist01:~# ls -al /etc/update-motd.d/ total 68 drwxr-xr-x 2 root root ... == ファイル追加後、実行権限追加 <code> # cat << __EOM__ | tee /etc/update-motd.d/99-test #!/bin/bash echo 'test message: Hello World.' __EOM__ # chmod +x /etc/update-motd.d/99-test </code> これでログインしてみると 「tes