Sudo Bleachbit Output Errors

0

Quando executo o bleachbit como root, recebo o que parece ser um erro no arquivo de troca. Eu nunca vi isso antes e estou me perguntando se existe uma maneira simples de consertar isso ??

aqui está a saída:

debug: DeepScan.scan: searches= {'/root': [u'^\.DS_Store$', u'\.[Bb][Aa][Kk]$', u'[a-zA-Z]{1,4}~$', u'^~wr[a-z][0-9]{4}\.tmp$', u'^ppt[0-9]{4}\.tmp$', u'^Thumbs\.db$', u'^Thumbs\.db:encryptable$']}
debug: running cmd  ['swapon', '-s']
debug: detected swap devices: None
debug: wipe_memory() pid 10751 waiting for child pid 10764
debug: new nice value 19
debug: physical free: 6.66GB (6656237568 B)
info: allocating and wiping 2.66GB (2662291865 B) of memory
debug: physical free: 3.99GB (3991920640 B)
info: allocating and wiping 1.6GB (1596768256 B) of memory
debug: physical free: 2.39GB (2391945216 B)
info: allocating and wiping 956.8MB (956778086 B) of memory
debug: physical free: 1.44GB (1442086912 B)
info: allocating and wiping 576.8MB (576834764 B) of memory
debug: physical free: 893.4MB (893407232 B)
info: allocating and wiping 357.4MB (357362892 B) of memory
debug: physical free: 562.5MB (562454528 B)
info: allocating and wiping 225MB (224985088 B) of memory
warning: child process returned code 9
debug: re-enabling swap
wrote 2 files and 212277846016 bytes in 690 seconds at 307.47 MB/s
0 bytes and 14030430 inodes available to non-super-user
16576512 bytes and 14030430 inodes available to super-user


debug: DeepScan.scan: searches= {'/root': [u'^\.DS_Store$', u'\.[Bb][Aa][Kk]$', u'[a-zA-Z]{1,4}~$', u'^~wr[a-z][0-9]{4}\.tmp$', u'^ppt[0-9]{4}\.tmp$', u'^Thumbs\.db$', u'^Thumbs\.db:encryptable$']}
debug: running cmd  ['swapon', '-s']
debug: disabling swap
debug: running cmd  ['swapoff', '-a', '-v']
debug: detected swap devices: ['/dev/sda5']
info: wiping swap device '/dev/sda5'
Error in execution of <bleachbit.Command.Function instance at 0x7f44ad7c36c8>
Traceback (most recent call last):
  File "/usr/share/bleachbit/bleachbit/Worker.py", line 84, in execute
    for ret in cmd.execute(self.really_delete):
  File "/usr/share/bleachbit/bleachbit/Command.py", line 134, in execute
    for func_ret in self.func():
  File "/usr/share/bleachbit/bleachbit/Memory.py", line 270, in wipe_memory
    wipe_swap_linux(devices, proc_swaps)
  File "/usr/share/bleachbit/bleachbit/Memory.py", line 248, in wipe_swap_linux
    'swap device %s is larger than expected' % device)
RuntimeError: swap device /dev/sda5 is larger than expected
wrote 2 files and 212279988224 bytes in 806 seconds at 263.36 MB/s
0 bytes and 14030424 inodes available to non-super-user
16535552 bytes and 14030424 inodes available to super-user
    
por user251788 05.06.2016 / 13:08

2 respostas

1

A linha chave no log é este erro:

% bl0ck_qu0te%

O BleachBit possui alguns protocolos de segurança para evitar apagar acidentalmente a partição errada quando está tentando limpar a memória, e no BleachBit versão 1.12 o limite de segurança é de 8.589.934.592 bytes (8 gibibytes).

O limite é codificado, e eu dobrei para 16 gibibytes para o próximo lançamento.

Por enquanto, você pode:

  1. Desmarque Sistema - Memória para desativar a limpeza da memória
  2. Edite Memory.py no seu sistema. Mude o 8 * 1024 ** 3 para um valor grande, semelhante ao este patch .
  3. Aguarde o próximo lançamento
por Andrew 21.07.2016 / 06:17
0

Você está executando como root? E se você executar lsblk no terminal, qual é o tamanho da partição sda5? Diz que é "maior que o esperado"

Tente reduzi-lo para apenas o dobro da sua RAM (se esse for o problema)

Eu nunca usei o BleachBit, mas essas são minhas únicas idéias ...

    
por Gilbert 05.06.2016 / 15:08