3

Possible Duplicate:
Software center not opening

When opening software center, the operation is stuck after opening the window and upper bar. The error message when launching from terminal is:

2012-06-19 12:53:33,684 - softwarecenter.backend.reviews - WARNING - Could not get usefulness from server, no username in config file
ofer
  • 31
  • 1
    I got it by myself.. this fixed the problem for me.. in terminal i typed :: rm -r ~/.cache/software-center – ofer Jun 19 '12 at 11:21

1 Answers1

3

The OP solved this by opening the terminal with Ctrl+Alt+T and typing:

rm -r ~/.cache/software-center
  • When doing this, it's very important to not accidentally have a space after ~ or the first /. If you do, it will remove all the files in your home directory, which generally includes all your documents!

  • An alternative command to run, which doesn't turn into such a bad thing when typed slightly wrong, is this:

    cd ~/.cache; rm -r software-center
    
Eliah Kagan
  • 117,780
ish
  • 139,926