תרגיל של SSH
חיפוש חכם של קבצים:
כשאתם מגדירים גישה ממחשב למחשב דרך ssh שימו לב שלפעמים צריך לשנות שם הקובץ שפקודת היצירה מייצרת עבור המפתח הציבורי:
- ssh-keygen
It ouptutedt a file called yes - needed to change it onto id_rsa.pub only than it worked!
חיפוש חכם של קבצים:
נניח אתם צריכים כל הקבצים בתיקיית tmp שקיימים לפחות יום אחד, ובנוסף אתם רוצים גם לעשות עליהם פעולה נניח למחוקם. לא יאומן אבל זה פקודה אחת. תשתמשו ב- find ו rm בצורה הבאה (יתכנו שינויים בסינטקס קלים בלינוקסים שונים):
- find . -mtime +5 -exec rm {} \
- I installed Ngnix instead of Apache for heavy loaded sites - recommended!
- How to run few commands in one window in linux shell -useful ! I tested it in Ubuntu - no warranty others:
a. screen
b. ctl+a S - split and run your cmd1
c ctl +a n - to jump to next win
d. ctl+c - and run your cmd2
e. ctl+a d - close screen mode
-------
-------
- Use multitail - same as tail but colored + few tails together!
- Use vimdiff instead of diff - same but colored
- If you see your computer slow or got stuck - do top and see what process is taking most of cpu. Kill it if possible by: kill -9 pid
htop is better than top - read a manual page to understand the output! ps -elf | grep process_name - returns all instances of the process you're looking for - here you can get the pid needed above