Upgrade to Pro — share decks privately, control downloads, hide ads and more …

サーバ作業の注意コマンド

S-cubism
December 22, 2017

 サーバ作業の注意コマンド

S-cubism

December 22, 2017
Tweet

More Decks by S-cubism

Other Decks in Technology

Transcript

  1. crontab # crontab -l > cron_daily_file.txt # vi cron_daily_file.txt 00

    13 * * * root /root/lunch.sh # crontab cron_daily_file.txt 7
  2. crontab # vi cron_daily_file.txt 00 13 * * * root

    /root/lunch.sh 00 13 * * 8 root /root/lunch.sh # crontab cron_daily_file.txt "cron_daily_file.txt":2: bad day-of-week errors in crontab file, can't install. 8
  3. shutdown, reboot # shutdown -r now # reboot # init

    6 ※電源切れても問題ない環境でお試しください。 17
  4. rm, cp, mv ユニークなディレクトリパスをつける -iをつける(interactive) パスのtab補完が効く場合、1文字削ってtabキーで補完する rm -i ファイル名 …

    削除確認 cp -i 元ファイル名 先ファイル名 … 上書き確認 mv -i 元ファイル名 先ファイル名 … 上書き確認 20