1

Everytime I run apt-get install or update on my server I get the following error:

(May not be exactly this because I am translating from portuguese)

An error was found when processing: netatalk
E: Sub-process /usr/bin/dpkg returned an error code (1)

I am not trying to install that package. This error appeared when I tried to install that package, which failed to install, and it won't disappear. This doesn't prevent me from installing other packages. It installs them, just gives this error at the end.

EduAlm
  • 165
  • 2
  • 6

2 Answers2

1

Offhand I would probably try one of the following commands:

apt-get clean

apt-get remove netatalk

apt-get -f install

dpkg --configure --pending

Chris Disbro
  • 358
  • 2
  • 6
0

I'd try apt-get remove netatalk or apt-get clean (to clean up the locally downloaded packages).

Mindflux
  • 120
  • 4
  • 12