- O que cada um deles faz?
rede:
#!/bin/sh -e ### BEGIN INIT INFO # Provides: networking # Required-Start: # Required-Stop: $local_fs # Should-Start: ifupdown # Should-Stop: ifupdown # Default-Start: # Default-Stop: 0 6 # Short-Description: Raise network interfaces. ### END INIT INFO
Em relação ao pacote ifupdown mencionado aqui: inclui comandos ifup
e ifdown
que podem ser usados para (de) configurar interfaces de rede ( /etc/network/interfaces
).
Os outros 3 são deamons iniciantes. De seus respectivos arquivos .conf
em /etc/init/
:
network-interface-security:
# network-interface-security - configure network device security # # This is a one-time start-up script to load AppArmor profiles needed # before the network comes up.
interface de rede:
# network-interface - configure network device # # This service causes network devices to be brought up or down as a result # of hardware being added or removed, including that which isn't ordinarily # removable.
gerenciador de rede:
# network-manager - network connection manager # # The Network Manager daemon manages the system's network connections, # automatically switching between the best available.
- Por exemplo, qual deles está relacionado à versão gui do gerenciador de rede?
Nada disso. Veja a próxima resposta.
- Qual deles deixará o suporte de rede para todas as placas de rede?
A inicialização de networking
fará isso, mas o comando usado provavelmente será ifup --all
e ifdown --all
. De man ifup
:
-a, --all If given to ifup, affect all interfaces marked auto. Interfaces are brought up in the order in which they are defined in /etc/network/interfaces. If given to ifdown, affect all defined interfaces. Interfaces are brought down in the order in which they are currently listed in the state file. Only interfaces defined in /etc/network/interfaces will be brought down.