안녕하세요....

# vi /etc/inittab

..
..
# /etc/init.d executes the S and K scripts upon change
# of runlevel.
#
# Runlevel 0 is halt.
# Runlevel 1 is single-user.
# Runlevels 2-5 are multi-user.
# Runlevel 6 is reboot.

lc:0123456:wait:/etc/rc.d/rc.local <<===== 이 부분 추가

l0:0:wait:/etc/rc.d/rc 0
l1:1:wait:/etc/rc.d/rc 1
l2:2:wait:/etc/rc.d/rc 2
..
..


# vi /etc/rc.d/rc.local

#!/bin/sh

# This script will be executed *after* all the other init scripts.
# You can put your own initialization stuff in here if you don't
# want to do the full Sys V style init stuff.

ifconfig eth0 192.168.10.125 netmask 255.255.255.0 up <<<== 이 부분에 추가
route add default gw 192.168.10.1 eth0 <<<==

..
..

위부분에 적어 주시면 됩니다...[ 즉, #!/bin/sh 다음에 적어 주시면 됩니다... ]


그럼 좋은 하루 되세요..


최준영 wrote..
: 답변감사합니다.
:
: rc.local 스크립트 화일을 수행하는 부분은 없는거 같습니다.
: 제가 초보라 스크립트 화일을 어떻게 수행 시키는질 잘 모르겠습니다.
:
: id:runlevels:action:process
:
: 대충보니까 이런식으로 실행을 시키는거 같은데요
: id는 sh
: process는 /etc/rc.d/rc.local
: runlevels 는 3인거 같은데요
: action에는 어떤거를 적어줘야하는질 모르겠습니다.
:
: 그리고 스크립트 화일을 실행시킬때 어느부분에 적어줘야하나요?
: 맨 마지막에 적어줘도 되는지요?
:
: 좋은 하루 되세요
:
: 유영창 wrote..
: : /etc/inittab에서
: :
: : rc.local 스크립트 화일을 수행하는 부분이 있는가를 확인해
: : 보세요...