シャットダウン時に「Reached target Shutdown」が表示されてフリーズする
# systemctl poweroff ← systemdでシャットダウンする場合
=============================
簡易的な説明ですが、それぞれ下記の通り対応しています。
"shutdown -h now" → "systemctl poweroff"
"reboot" → "systemctl reboot"
"halt" → "systemctl halt"
エイリアスを作っておいた方がいいかもしれません。
=============================
# alias shutdown='systemctl poweroff'
# alias reboot='systemctl reboot'
=============================