Não é possível atualizar ebtables no WSL

2

Eu estava correndo sudo apt update && sudo apt upgrade -y ontem. Houve uma atualização para o pacote ebtables (eu procurei e aparentemente é iptables, mas para Ethernet?). No entanto, apt não estava conseguindo instalá-lo.

root@win10:~# apt dist-upgrade -V
Reading package lists... Done
Building dependency tree
Reading state information... Done
Calculating upgrade... Done
The following packages will be upgraded:
   ebtables (2.0.10.4-3.5ubuntu2 => 2.0.10.4-3.5ubuntu2.18.04.1)
1 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
Need to get 0 B/79.9 kB of archives.
After this operation, 0 B of additional disk space will be used.
Do you want to continue? [Y/n]
(Reading database ... 29277 files and directories currently installed.)
Preparing to unpack .../ebtables_2.0.10.4-3.5ubuntu2.18.04.1_amd64.deb ...
invoke-rc.d: could not determine current runlevel
 * Error: insufficient privileges to access the ebtables rulesets.
invoke-rc.d: initscript ebtables, action "stop" failed.
dpkg: warning: old ebtables package pre-removal script subprocess returned error exit status 1
dpkg: trying script from the new package instead ...
invoke-rc.d: could not determine current runlevel
 * Error: insufficient privileges to access the ebtables rulesets.
invoke-rc.d: initscript ebtables, action "stop" failed.
dpkg: error processing archive /var/cache/apt/archives/ebtables_2.0.10.4-3.5ubuntu2.18.04.1_amd64.deb (--unpack):
 new ebtables package pre-removal script subprocess returned error exit status 1
update-rc.d: warning: start and stop actions are no longer supported; falling back to defaults
invoke-rc.d: could not determine current runlevel
E: Sub-process /usr/bin/dpkg returned an error code (1)

Eu tentei uma reinicialização, sudo dpkg --configure -a e sudo apt clean/autoclean/remove/install -f/update/... , mas nada funcionou.

O que devo fazer agora? Devo apenas segurar o pacote ( sudo apt-mark hold ebtables )? Existe uma solução para instalá-lo?

    
por vikarjramun 30.05.2018 / 17:48

2 respostas

4

Ele não deve ser necessário no WSL porque as tabelas são gerenciadas pelo kernel do Linux, e no WSL você não está usando o kernel do Linux. Parece que não é possível removê-lo por causa desse erro, mas você pode ignorá-lo com segurança.

Atualização: O script de pré-remoção e o script de parada do ebtables foram corrigidos no pacote ubuntu para que a atualização agora funcione.

link

link

link

    
por user3648523 31.05.2018 / 20:56
6
sudo cp -p  /bin/true /sbin/ebtables       
sudo apt update -y
sudo apt upgrade -y

de: link

    
por ohho 18.06.2018 / 11:28