How to remove welcome message after SSH login in Ubuntu
For all users
empty the file /etc/motd
echo |sudo tee /etc/motd
and disable all the scripts in /etc/update-motd.d/
sudo chmod -x /etc/update-motd.d/*
For specific user
touch an empty file named .hushlogin
in the user’s home directory.
touch ~/.hushlogin
Disclaimer
- License under
CC BY-NC 4.0
- Copyright issue feedback
me#imzye.me
, replace # with @ - Not all the commands and scripts are tested in production environment, use at your own risk
- No privacy information is collected here