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
-------------------------------
# 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