Não é possível atualizar o procps em 12.04

3

Se eu estiver executando apt-get upgrade , recebo o seguinte erro:

Reading package lists... Done
Building dependency tree       
Reading state information... Done
The following packages will be upgraded:
  procps
1 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
1 not fully installed or removed.
Need to get 0 B/235 kB of archives.
After this operation, 0 B of additional disk space will be used.
Do you want to continue [Y/n]? Y
Traceback (most recent call last):
  File "/usr/bin/apt-listchanges", line 237, in <module>
    main()
  File "/usr/bin/apt-listchanges", line 48, in main
    debs = apt_listchanges.read_apt_pipeline(config)
  File "/usr/share/apt-listchanges/apt_listchanges.py", line 83, in read_apt_pipeline
    return map(lambda pkg: filenames[pkg], order)
  File "/usr/share/apt-listchanges/apt_listchanges.py", line 83, in <lambda>
    return map(lambda pkg: filenames[pkg], order)
KeyError: 'procps'
Setting up procps (1:3.2.8-11ubuntu6.2) ...
start: Job failed to start
invoke-rc.d: initscript procps, action "start" failed.
dpkg: error processing procps (--configure):
 subprocess installed post-installation script returned error exit status 1
Errors were encountered while processing:
 procps
E: Sub-process /usr/bin/dpkg returned an error code (1)

E cat /etc/sysctl.d/*.conf /etc/sysctl.conf | sudo sysctl -p - retorna:

kernel.printk = 4 4 1 7
error: "net.ipv6.conf.all.use_tempaddr" is an unknown key
error: "net.ipv6.conf.default.use_tempaddr" is an unknown key
error: "Invalid argument" setting key "kernel.kptr_restrict"
net.ipv4.conf.default.rp_filter = 1
net.ipv4.conf.all.rp_filter = 1
net.ipv4.tcp_syncookies = 1
error: "kernel.yama.ptrace_scope" is an unknown key
vm.mmap_min_addr = 65536
net.ipv6.conf.all.autoconf = 0
net.ipv6.conf.default.autoconf = 0
net.ipv6.conf.eth0.autoconf = 0
net.ipv6.conf.all.accept_ra = 0
net.ipv6.conf.default.accept_ra = 0
net.ipv6.conf.eth0.accept_ra = 0
net.ipv6.conf.all.autoconf = 0
net.ipv6.conf.default.autoconf = 0
net.ipv6.conf.eth0.autoconf = 0
net.ipv6.conf.all.accept_ra = 0
net.ipv6.conf.default.accept_ra = 0
net.ipv6.conf.eth0.accept_ra = 0

Alguém tem uma idéia do que poderia estar dando errado?

    
por s1lv3r 28.11.2013 / 14:23

1 resposta

8

primeiro tente renomear seu procps.conf como

sudo mv /etc/init/procps.conf /etc/init/procps.conf.old

se funcionar, bem, caso contrário, a última solução é baixar o procps (1: 3.3.3-2ubuntu7) e libprocps0 (1: 3.3.3-2ubuntu7) e instalá-los manualmente.

Você pode baixá-los de -

link

e

link

Atualizá-los pode resolver o problema como mencionado aqui link . é um bug bem conhecido, visite o link fornecido.

Espero que desta vez funcione.

    
por Sukupa91 28.11.2013 / 15:29