Init.d कमांड को मापदंडों के बिना चलाएं, यह आपको बताएगा कि कौन सा उपयोग है:
~# /etc/init.d/networking
Usage: /etc/init.d/networking {start|stop}
लगता है कि पुनः आरंभ किया गया है
यह डेबियन में भी कम से कम तब से पदावनत है:
netbase (4.38) unstable; urgency=low
* Create /etc/sysctl.d/bindv6only.conf on upgrades and new installs
to set net.ipv6.bindv6only=1.
* Made the init script check for swap over the network. (Closes: #540697)
* Temporarily depend on initscripts to work around a bug in multistrap.
(Closes: #556399)
* etc-services: added sieve (4190/tcp).
* etc-services: removed sieve (2000/tcp). (Closes: #555664)
* Made the init script warn that using the force-reload and restart
parameters is not a good idea. (Closes: #550240)
-- Marco d'Itri <md@linux.it> Sun, 06 Dec 2009 17:09:41 +0100
संबंधित बग # 550240 यहाँ
जो काफी गंदा है। रिमोट से नेटवॉकिंग को फिर से शुरू करने के लिए संभवत: सबसे अच्छा और सुरक्षित दृष्टिकोण स्क्रीन सत्र के भीतर चलाया जाएगा :
~# /etc/init.d/networking stop; /etc/init.d/networking start
आज की networking
init स्क्रिप्ट के रूप में, restart
और ज्यादातर परिस्थितियों मेंforce-reload
काम करेगा । मुझे लगता है कि यह चेतावनी को नजरअंदाज करने और फिर भी पुनरारंभ का उपयोग करने के लिए उचित रूप से सुरक्षित है । हालाँकि मैं स्टॉप + स्टार्ट रास्ते से जाऊंगा :-)
case "$1" in
start)
process_options
log_action_begin_msg "Configuring network interfaces"
if ifup -a; then
log_action_end_msg $?
else
log_action_end_msg $?
fi
;;
stop)
check_network_file_systems
check_network_swap
log_action_begin_msg "Deconfiguring network interfaces"
if ifdown -a --exclude=lo; then
log_action_end_msg $?
else
log_action_end_msg $?
fi
;;
force-reload|restart)
process_options
log_warning_msg "Running $0 $1 is deprecated because it may not enable again some interfaces"
log_action_begin_msg "Reconfiguring network interfaces"
ifdown -a --exclude=lo || true
if ifup -a --exclude=lo; then
log_action_end_msg $?
else
log_action_end_msg $?
fi
;;
*)
echo "Usage: /etc/init.d/networking {start|stop}"
exit 1
;;
esac
/etc/init.d/networking stop; /etc/init.d/networking start