Você pode iniciar o ícone na barra manualmente em um terminal:
nm-applet
O Security Onion é uma distro separada baseada no xubuntu, então eu acho que eles usam suas próprias ferramentas para gerenciar a interface sem fio. Aqui estão algumas coisas que você pode tentar:
Verifique se sua interface sem fio é reconhecida como uma interface sem fio:
iwconfig
deve ser algo assim:
lo no wireless extensions.
wlan0 IEEE 802.11bgn ESSID:off/any
Mode:Managed Access Point: Not-Associated Tx-Power=14 dBm
Retry long limit:7 RTS thr:off Fragment thr:off
Encryption key:off
Power Management:off
eth0 no wireless extensions.
Verifique se a sua interface sem fio está com problemas ou com problemas:
rfkill list wlan
Saída possível:
0: sony-wifi: Wireless LAN
Soft blocked: yes
Hard blocked: no
3: phy0: Wireless LAN
Soft blocked: yes
Hard blocked: yes
Difícil bloqueado significa que está bloqueado por um interruptor de hardware no seu dispositivo. Soft Blocked significa que um aplicativo (como o Network Manager) está bloqueando, como no meu caso.
Desbloquear o dispositivo sem fio bloqueado:
rfkill unblock wlan
É óbvio que você não pode desbloquear um switch de hardware, além de magic =)
Verifique se sua interface sem fio é gerenciada pelo Network Manager:
nm-tool
Em caso de saída sim, é assim:
- Device: wlan0 ---------------------------------------------------------------
Type: 802.11 WiFi
Driver: iwlwifi
State: disconnected
Default: no
HW Address: 8C:A9:82:52:CA:2A
Capabilities:
Wireless Properties
WEP Encryption: yes
WPA Encryption: yes
WPA2 Encryption: yes
Se não, você verá State: unavailable
:
- Device: wlan0 ---------------------------------------------------------------
Type: 802.11 WiFi
Driver: iwlwifi
State: unavailable
Default: no
HW Address: 8C:A9:82:52:CA:2A
Capabilities:
Wireless Properties
WEP Encryption: yes
WPA Encryption: yes
WPA2 Encryption: yes
Verifique se suas interfaces sem fio não estão no arquivo /etc/network/interfaces
:
O Network Manager não está gerenciando uma interface listada neste arquivo.
Verifique se sua interface sem fio não está inativa:
Para a interface invocar no terminal (assumido que wlan0 é sua interface sem fio):
ifconfig wlan0 up
Se algo der erros, adicione-os à sua pergunta.