もくじ
日本語キーボードに変更
# vi /etc/rc.conf hostname="" ifconfig_em0="DHCP" sshd_enable="YES" # Set dumpdev to "AUTO" to enable crash dumps, "NO" to disable dumpdev="AUTO" ※下記を追加 Section "InputDevice" Identifier "Keyboard0" Driver "kbd" Option "XkbModel" "jp106" Option "XkbLayout" "jp" EndSection
Crontab 外部設定ファイル読み込み検証
# vi cron.txt */1 * * * * touch crontest.txt
# crontab cron.txt
# vi cron_overide.txt */1 * * * * touch overide_ok.txt
# crontab cron_overide.txt
# rm -f crontest.txt crontest_r2.txt
# crontab -l */1 * * * * touch overide_ok.txt
# crontab cron.txt
# crontab -l */1 * * * * touch crontest.txt */1 * * * * touch crontest_r2.txt
crontabで外部設定ファイルを読み込むと上書きされる。
検証おしまい。