힘내라 일처리

How set MOTD per user 본문

알아보기

How set MOTD per user

일처리 2021. 11. 21. 20:39
반응형

Summary

few times ago I wrote post about motd
https://keepworking.tistory.com/8

and AFAIK it showes for all user on this server
but i did not want to show to another people, so i tried some way to fix it

actually it is not to normal way, but it works

Write profile.d script

Let write script in to /etc/profile.d/usermotd.sh
you can use vi or nano like that sudo vi /etc/profile.d/usermotd.sh

test -e /home/$USER/.motd && cat /home/$USER/.motd

explain about this code test -e $FILE will return success when that file exist
so if that file exist will print /home/$USER/.motd file

Let's try it

Make file on ~/.motd
you can put text what do you want

it is for example

                           ///////////////////////////                          
                     ///////////////////////////////////////                    
                 ///////////////////////////////////////////////                
              /////////////////////////////////////////////////////             
           ///////////////////////////////////////&@@@@@@(///////////           
         ////////////////////////////////////////@@@@@@@@@@/////////////        
       ////////////////////////////@@@@@@@@@@@///@@@@@@@@@@//////////////       
      /////////////////////////@@@@@@@@@@@@@@@@///@@@@@@@@/////////////////     
     ////////////////////@@@@///@@@@@@@@@@@@@@@@@%//////////////////////////    
   ////////////////////@@@@@@@///@@@////////(@@@@@@@@@@@@@///////////////////   
   //////////////////@@@@@@@@@@///////////////////@@@@@@@@@@//////////////////  
  //////////////////@@@@@@@@#///////////////////////@@@@@@@@@////////////////// 
 /////////////////(@@@@@@@@///////////////////////////@@@@@@@@//////////////////
 //////////&@@@(///@@@@@@@/////////////////////////////@@@@@@@@/////////////////
 ////////@@@@@@@@@//@@@@@///////////////////////////////@@@@@@@/////////////////
 ///////@@@@@@@@@@@//@@@@///////////////////////////////////////////////////////
 ////////@@@@@@@@@//@@@@@///////////////////////////////@@@@@@@/////////////////
 ///////////@@@////@@@@@@@/////////////////////////////@@@@@@@@/////////////////
 //////////////////@@@@@@@@///////////////////////////@@@@@@@@//////////////////
  //////////////////@@@@@@@@@///////////////////////@@@@@@@@@////////////////// 
   //////////////////@@@@@@@@@@//////////////////&@@@@@@@@@@//////////////////  
   (///////////////////@@@@@@@///@@@@///////@@@@@@@@@@@@@@///////////////////   
     ////////////////////%@@@///@@@@@@@@@@@@@@@@@///////////////////////////    
      ////////////////////////#@@@@@@@@@@@@@@@@///@@@@@@@@/////////////////     
        ///////////////////////////(@@@@@@@@@////@@@@@@@@@@//////////////       
         ////////////////////////////////////////@@@@@@@@@@////////////         
            ///////////////////////////////////////@@@@@@////////////           
              /////////////////////////////////////////////////////             
                 //////////////////////////////////////////////                 
                     //////////////////////////////////////                     
                           ///////////////////////////                          

and try to login with ssh

 

and another account will not show

 

반응형

'알아보기' 카테고리의 다른 글

playing Video on terminal with ffmpeg and libcaca  (0) 2021.11.22
터미널에서 동영상 재생하기  (0) 2021.11.22
사용자 별로 MOTD 따로 두기  (0) 2021.11.21
Byobu 뵤부 소개및 사용법  (0) 2021.11.18
Sudo hint 숨기기  (0) 2021.11.18
Comments