|
|
|
IBM developerWorks : Linux : Education - Tutorials | |
The changes to /etc/inetd.conf that we made in the previous panel won't take effect until we restart the inetd program. Most distributions have an init-script in /etc/init.d or in /etc/rc.d/init.d: # /etc/rc.d/init.d/inet stop Stopping INET services: [ OK ] # /etc/rc.d/init.d/inet start Starting INET services: [ OK ] In fact, you can usually use "restart" as a shortcut: # /etc/rc.d/init.d/inet restart Stopping INET services: [ OK ] Starting INET services: [ OK ] |
|
|