특정 명령을 부팅 때마다 자동으로 실행하고자 할 때,
rc.local은 기본으로는 실행되지 않아서, user가 실행할 수 있도록 권한 부여
# chmod 755 /etc/rc.d/rc.local
수행하고자 하는 명령을 full path를 통해 추가해준다.
# vim /etc/rc.d/rc.local
"at_here_Some_Command_what_want_to_execute"
e.g.)
/sbin/insmod /tmp/load_tmp_module.ko
반응형