Banner creation in the linux

# Banner creation in the linux.
-------------------------------
# Banner creation for all users including superuser.
----------------------------------------------------
vi /etc/profile
# Goto the E.O.F. and include the lines as,
echo
echo Welcome to praveshsilor.com!
echo
:wq

# Exit from the console and check out the banner.


# Banner creation for superuser.
--------------------------------
vi /root/.bash_profile
# Goto the E.O.F. and include the lines as,
echo " "
echo "Welcome to praveshsilor.com!"
echo " "
:wq

# Exit from the console and check out the banner.


# Banner creation for non-privileged users.
-------------------------------------------
vi /home/user1/.bash_profile
# Goto the E.O.F. and include the lines as,
echo
echo Welcome to praveshsilor.com!
echo
:wq

# Exit from the console and check out the banner.

# If you want to modify the banner which is abhove the login screen, you can do it
vim /etc/issue

Comments

Popular Posts

Install and configure rsyslog Centralized logging server in CentOS

How to fix postfix/smtp Network is unreachable error

Could not join realm: Necessary packages are not installed: sssd-tools sssd libnss-sss libpam-sss adcli