IOError: [Errno 5] Erro de entrada / saída: '~ .cache / software-center / software-center.log'

0

Por algum motivo, o Ubuntu Software Center não abrirá, tentei reinstalá-lo, mas ainda assim não haverá sorte. Aqui está a saída de erro que recebi por meio de um rastreamento!

  File "/usr/bin/software-center", line 40, in <module>
    import softwarecenter.log
  File "/usr/share/software-center/softwarecenter/log.py", line 119, in <module>
    logfile_path, maxBytes=100 * 1000, backupCount=5)
  File "/usr/lib/python2.7/logging/handlers.py", line 118, in __init__
    BaseRotatingHandler.__init__(self, filename, mode, encoding, delay)
  File "/usr/lib/python2.7/logging/handlers.py", line 65, in __init__
    logging.FileHandler.__init__(self, filename, mode, encoding, delay)
  File "/usr/lib/python2.7/logging/__init__.py", line 897, in __init__
    StreamHandler.__init__(self, self._open())
  File "/usr/lib/python2.7/logging/__init__.py", line 916, in _open
    stream = open(self.baseFilename, self.mode)
IOError: [Errno 5] Input/output error: '/home/shaq/.cache/software-center/software-center.log'

Espero que alguém possa me ajudar com isso e me ajude a consertar isso. Este erro ocorreu depois de instalar as atualizações.

Estou usando o Ubuntu 12.04

    
por Shaquille Ray 30.07.2012 / 14:07

1 resposta

2

Esses três comandos funcionaram para mim:

rm -r ~/.cache/software-center
sudo apt-get remove software-center
sudo apt-get install software-center
    
por Bent Gammelby 01.08.2012 / 20:59