全文検索:
- 2022.08.31 ubuntu motd
- ==== /etc/update-motd.d/以下のスクリプトが実行されている ===== <code> root@regist01:~# ls -al /etc/update-motd.d/ tota... root root 144 May 14 2021 98-reboot-required </code> ===== ファイルを追加してみる ===== ファイル追加後、実行権限追加 <code> # cat << __EOM__ | tee /etc/update-motd.d/99-test #!/b... __EOM__ # chmod +x /etc/update-motd.d/99-test </code> これでログインしてみると 「test message: Hello World.」が追加され
- 2022.08.18
- 時にansibleバージョンが対応してないというエラー ====== エラー ====== <code> ERROR: Ansible version should be between 2.11 an... rrent version is 2.13.3 which is not supported. </code> ====== 対応 ====== 古い2.12を入れてあげる <code> sudo apt remove ansible sudo apt --purge autoremove root@de... ] ansible-core/jammy 2.12.0-1 all apt install ansible-core=2.12.0-1 </code> {{tag>ansible openstack}}
- 2022.08.19 ubuntu update-initramfs 失敗
- ntu update-initramfs 失敗 ====== ===== エラー ===== <code> # sudo update-initramfs -u update-initramfs: Gen... e /lib/firmware/ast_dp501_fw.bin for module ast </code> ===== 対応 ===== ast_dp501_fw.binが無いようなので、touchしてみたら通った。 <code> sudo touch /lib/firmware/ast_dp501_fw.bin sudo update-initramfs -u update-initramfs: Generating /boot/initrd.img-5.4.0-124-generic </code> {{tag>日記}}