You are not logged in.

#1 2015-07-04 05:16:28

Otsdarva
Member
From: Newark, NJ
Registered: 2014-06-03
Posts: 18

[SOLVED] Cannot upgrade any packages; keys unable to be imported

Hi all,

I am having a lot of trouble trying to run anything pacman related. I essentially get one of two errors:

When trying to run

sudo pacman -Syu

I get the error:

downloading required keys...
error: key "7A4E76095D8A52E4" could not be looked up remotely
error: required key missing from keyring
error: failed to commit transaction (unexpected error)
Errors occurred, no packages were upgraded.

When trying to run

sudo pacman -S archlinux-keyring

I get the error:

error: archlinux-keyring: signature from "Pierre Schmitz <pierre@archlinux.de>" is unknown trust
:: File /var/cache/pacman/pkg/archlinux-keyring-20150605-1-any.pkg.tar.xz is corrupted (invalid or corrupted package (PGP signature)).
Do you want to delete it? [Y/n] Y
error: failed to commit transaction (invalid or corrupted package (PGP signature))
Errors occurred, no packages were upgraded.

I have tried all the steps at:

https://bbs.archlinux.org/viewtopic.php?id=191279
https://bbs.archlinux.org/viewtopic.php?id=193382
https://wiki.archlinux.org/index.php/Pacman-key

Please let me know if you think you can help. Using pacman again would be great. Thanks!

Last edited by Otsdarva (2015-07-04 21:25:24)


harryjhurley.com

Offline

#2 2015-07-04 05:24:43

jasonwryan
Anarchist
From: .nz
Registered: 2009-05-09
Posts: 30,424
Website

Re: [SOLVED] Cannot upgrade any packages; keys unable to be imported


Arch + dwm   •   Mercurial repos  •   Surfraw

Registered Linux User #482438

Offline

#3 2015-07-04 06:35:33

Otsdarva
Member
From: Newark, NJ
Registered: 2014-06-03
Posts: 18

Re: [SOLVED] Cannot upgrade any packages; keys unable to be imported

Okay, so I had

SigLevel = Never

in the wrong place. That's fixed.

Running

sudo pacman -S archlinux-keyring

again, I got the following error:

(1/1) checking keys in keyring                                                                                                                                                                 [#######################################################################################################################] 100%
(1/1) checking package integrity                                                                                                                                                               [#######################################################################################################################] 100%
(1/1) loading package files                                                                                                                                                                    [#######################################################################################################################] 100%
(1/1) checking for file conflicts                                                                                                                                                              [#######################################################################################################################] 100%
(1/1) checking available disk space                                                                                                                                                            [#######################################################################################################################] 100%
(1/1) upgrading archlinux-keyring                                                                                                                                                              [#######################################################################################################################] 100%
==> Appending keys from archlinux.gpg...
gpg: starting migration from earlier GnuPG versions
gpg: can't connect to the agent: IPC connect call failed
gpg: error: GnuPG agent unusable. Please check that a GnuPG agent can be started.
gpg: migration aborted
gpg: can't connect to the agent: IPC connect call failed
gpg: can't connect to the agent: IPC connect call failed
gpg: can't connect to the agent: IPC connect call failed
gpg: can't connect to the agent: IPC connect call failed
gpg: can't connect to the agent: IPC connect call failed
gpg: can't connect to the agent: IPC connect call failed
gpg: can't connect to the agent: IPC connect call failed
gpg: can't connect to the agent: IPC connect call failed
gpg: can't connect to the agent: IPC connect call failed
gpg: can't connect to the agent: IPC connect call failed
gpg: can't connect to the agent: IPC connect call failed
gpg: can't connect to the agent: IPC connect call failed
gpg: can't connect to the agent: IPC connect call failed
gpg: can't connect to the agent: IPC connect call failed
gpg: can't connect to the agent: IPC connect call failed
gpg: can't connect to the agent: IPC connect call failed
gpg: can't connect to the agent: IPC connect call failed
gpg: can't connect to the agent: IPC connect call failed
gpg: can't connect to the agent: IPC connect call failed
gpg: can't connect to the agent: IPC connect call failed
gpg: can't connect to the agent: IPC connect call failed
gpg: can't connect to the agent: IPC connect call failed
==> Locally signing trusted keys in keyring...
  -> Locally signing key 0E8B644079F599DFC1DDC3973348882F6AC6A4C2...
==> ERROR: 0E8B644079F599DFC1DDC3973348882F6AC6A4C2 could not be locally signed.
  -> Locally signing key 684148BB25B49E986A4944C55184252D824B18E8...
==> ERROR: 684148BB25B49E986A4944C55184252D824B18E8 could not be locally signed.
  -> Locally signing key 44D4A033AC140143927397D47EFD567D4C7EA887...
==> ERROR: 44D4A033AC140143927397D47EFD567D4C7EA887 could not be locally signed.
  -> Locally signing key 27FFC4769E19F096D41D9265A04F9397CDFD6BB0...
==> ERROR: 27FFC4769E19F096D41D9265A04F9397CDFD6BB0 could not be locally signed.
  -> Locally signing key AB19265E5D7D20687D303246BA1DFB64FFF979E7...
==> ERROR: AB19265E5D7D20687D303246BA1DFB64FFF979E7 could not be locally signed.

Still don't know what's up. Tried some steps from:
https://bbs.archlinux.org/viewtopic.php?id=167612
https://bbs.archlinux.org/viewtopic.php?id=191629

But they didn't seem to be 100% relevant to my problem.


harryjhurley.com

Offline

#4 2015-07-04 07:35:21

mauritiusdadd
Member
From: Benevento, Italy
Registered: 2013-10-27
Posts: 776

Re: [SOLVED] Cannot upgrade any packages; keys unable to be imported

gpg says it is trying to migrate the configuration from an older version, have you also tried to do this https://bbs.archlinux.org/viewtopic.php … 9#p1501589?

Also, what if you try to start the agent manually? In a terminal execute the following command

# gpg-agent --homedir /etc/pacman.d/gnupg/ --daemon -vvv

and in another terminal do

# gpg --homedir /etc/pacman.d/gnupg/ -vvv --refresh-keys

can you please post the output of both commands?

Last edited by mauritiusdadd (2015-07-04 07:35:49)


About me - github

-- When you have eliminated the impossible, whatever remains, however improbable, must be the truth -- Spock | Sherlock Holmes

Offline

#5 2015-07-04 18:42:53

Otsdarva
Member
From: Newark, NJ
Registered: 2014-06-03
Posts: 18

Re: [SOLVED] Cannot upgrade any packages; keys unable to be imported

mauritiusdadd wrote:

gpg says it is trying to migrate the configuration from an older version, have you also tried to do this https://bbs.archlinux.org/viewtopic.php … 9#p1501589?
Also, what if you try to start the agent manually? In a terminal execute the following command

# gpg-agent --homedir /etc/pacman.d/gnupg/ --daemon -vvv

and in another terminal do

# gpg --homedir /etc/pacman.d/gnupg/ -vvv --refresh-keys

can you please post the output of both commands?

I certainly can!

The first thing I tried was what worked for you:

# rm -R /etc/pacman.d/gnupg/
# rm -R /root/.gnupg/  # only if the directory exists
# gpg --refresh-keys
# pacman-key --init && pacman-key --populate
# pacman-key --refresh-keys

but I got a similar error to what I was getting when running

pacman-key --init && pacman-key --populate

error:

gpg: starting migration from earlier GnuPG versions
gpg: can't connect to the agent: IPC connect call failed
gpg: error: GnuPG agent unusable. Please check that a GnuPG agent can be started.
gpg: migration aborted
gpg: checking the trustdb
gpg: no ultimately trusted keys found
gpg: can't connect to the agent: IPC connect call failed
gpg: starting migration from earlier GnuPG versions
gpg: can't connect to the agent: IPC connect call failed
gpg: error: GnuPG agent unusable. Please check that a GnuPG agent can be started.
gpg: migration aborted
gpg: Generating pacman keyring master key...
gpg: can't connect to the agent: IPC connect call failed [x a lot]
gpg: agent_genkey failed: No agent running
gpg: key generation failed: No agent running
gpg: Done 
==> Updating trust database...
gpg: no need for a trustdb check
[sudo] password for harry: 
[harry@cerberus lib]$ sudo pacman-key --populate
[sudo] password for harry: 
==> Appending keys from archlinux.gpg...
gpg: starting migration from earlier GnuPG versions
gpg: can't connect to the agent: IPC connect call failed
gpg: error: GnuPG agent unusable. Please check that a GnuPG agent can be started.
gpg: migration aborted
gpg: can't connect to the agent: IPC connect call failed [x a lot]
==> Locally signing trusted keys in keyring...
  -> Locally signing key 0E8B644079F599DFC1DDC3973348882F6AC6A4C2...
==> ERROR: 0E8B644079F599DFC1DDC3973348882F6AC6A4C2 could not be locally signed.
  -> Locally signing key 684148BB25B49E986A4944C55184252D824B18E8...
==> ERROR: 684148BB25B49E986A4944C55184252D824B18E8 could not be locally signed.
  -> Locally signing key 44D4A033AC140143927397D47EFD567D4C7EA887...

And it went on like this, same as in my previous post.

The output of

gpg-agent --homedir /etc/pacman.d/gnupg/ --daemon -vvv

is

gpg-agent: relocation error: gpg-agent: symbol assuan_sock_set_sockaddr_un, version LIBASSUAN_1.0 not defined in file libassuan.so.0 with link time reference

The output of

gpg --homedir /etc/pacman.d/gnupg/ -vvv --refresh-keys

is

gpg: WARNING: unsafe permissions on homedir '/etc/pacman.d/gnupg/'
gpg: using character set 'utf-8'
gpg: refreshing 63 keys from hkp://pool.sks-keyservers.net
gpg: no running Dirmngr - starting '/usr/bin/dirmngr'
gpg: waiting for the dirmngr to come up ... (5s)
gpg: waiting for the dirmngr to come up ... (4s)
gpg: waiting for the dirmngr to come up ... (3s)
gpg: waiting for the dirmngr to come up ... (2s)
gpg: waiting for the dirmngr to come up ... (1s)
gpg: connecting dirmngr at '/root/.gnupg/S.dirmngr' failed: IPC connect call failed
gpg: keyserver refresh failed: No dirmngr

I know I had seen dirmngr errors in related forum post https://bbs.archlinux.org/viewtopic.php?id=190380 so I tried:

dirmngr </dev/null

and

dirmngr --debug-level guru

which both output

dirmngr: error while loading shared libraries: libgnutls.so.30: cannot open shared object file: No such file or directory

Searching this error, https://bbs.archlinux.org/viewtopic.php?id=94902 suggested making a symlink for /usr/lib/libgnutls.so.30 and linking it to /usr/lib/libgnutls.so would work, so I did that:

 sudo ln -sf /usr/lib/libgnutls.so /usr/lib/libgnutls.so.30

That changed the dirmngr errors to

dirmngr: /usr/lib/libgnutls.so.30: version `GNUTLS_3_4' not found (required by dirmngr)

I searched /usr/lib for 'GNUTLS_3_4' but came up with nothing, so I don't think I linked to the wrong directory, and I'm not sure what to make of that.

Interestingly, running -Syu now gives

error: failed to commit transaction (conflicting files)
gnutls: /usr/lib/libgnutls.so.30 exists in filesystem
java-runtime-common: /usr/bin/java exists in filesystem
java-runtime-common: /usr/bin/keytool exists in filesystem
java-runtime-common: /usr/bin/orbd exists in filesystem
java-runtime-common: /usr/bin/pack200 exists in filesystem
java-runtime-common: /usr/bin/rmid exists in filesystem
java-runtime-common: /usr/bin/rmiregistry exists in filesystem
java-runtime-common: /usr/bin/servertool exists in filesystem
java-runtime-common: /usr/bin/tnameserv exists in filesystem
java-runtime-common: /usr/bin/unpack200 exists in filesystem
java-runtime-common: /usr/lib/jvm/default exists in filesystem
java-runtime-common: /usr/lib/jvm/default-runtime exists in filesystem
Errors occurred, no packages were upgraded.

So it's not complaining about keys anymore, just some conflicting files. If I delete those, will I be okay? I don't want to delete anything important. I am not able to install the ctrl+z package...

Also, sorry about the verbose post; I'm just trying to make sure the whole story is there.


harryjhurley.com

Offline

#6 2015-07-04 19:18:39

mauritiusdadd
Member
From: Benevento, Italy
Registered: 2013-10-27
Posts: 776

Re: [SOLVED] Cannot upgrade any packages; keys unable to be imported

Otsdarva wrote:

The output of

gpg-agent --homedir /etc/pacman.d/gnupg/ --daemon -vvv

is

gpg-agent: relocation error: gpg-agent: symbol assuan_sock_set_sockaddr_un, version LIBASSUAN_1.0 not defined in file libassuan.so.0 with link time reference

Can you also  provide the output of the following commands?

uname -a
file /usr/lib/libgnutls.so.30
file /usr/lib/libgnutls.so.30.1.0
file /usr/lib/libassuan.so
pacman -Qi gnupg
pacman -Qi gnutls
pacman -Qi libassuan
pacman -Qkk
Otsdarva wrote:

Searching this error, https://bbs.archlinux.org/viewtopic.php?id=94902 suggested making a symlink for /usr/lib/libgnutls.so.30 and linking it to /usr/lib/libgnutls.so

Don't do this: that is an ugly workaround that will bite you when you less expect it... and in fact it doesn't work already.

Otsdarva wrote:

If I delete those, will I be okay? I don't want to delete anything important. I am not able to install the ctrl+z package...

I'm sorry, but I don't understand it, can you elaborate on what ctrl+z  package is?


About me - github

-- When you have eliminated the impossible, whatever remains, however improbable, must be the truth -- Spock | Sherlock Holmes

Offline

#7 2015-07-04 19:49:05

Otsdarva
Member
From: Newark, NJ
Registered: 2014-06-03
Posts: 18

Re: [SOLVED] Cannot upgrade any packages; keys unable to be imported

mauritiusdadd wrote:

Can you also  provide the output of the following commands?

uname -a
file /usr/lib/libgnutls.so.30
file /usr/lib/libgnutls.so.30.1.0
file /usr/lib/libassuan.so
pacman -Qi gnupg
pacman -Qi gnutls
pacman -Qi libassuan
pacman -Qkk

Yes.

#uname -a
Linux cerberus 3.16.3-1-ARCH #1 SMP PREEMPT Wed Sep 17 21:54:13 CEST 2014 x86_64 GNU/Linux
#file /usr/lib/libgnutls.so.30
/usr/lib/libgnutls.so.30: cannot open `/usr/lib/libgnutls.so.30' (No such file or directory)
#file /usr/lib/libgnutls.so.1.0
/usr/lib/libgnutls.so.1.0: cannot open `/usr/lib/libgnutls.so.1.0' (No such file or directory)
#file /usr/lib/libassuan.so
/usr/lib/libassuan.so: symbolic link to `libassuan.so.0.4.1'
#pacman -Qi gnupg
Name           : gnupg
Version        : 2.1.5-1
Description    : Complete and free implementation of the OpenPGP standard
Architecture   : x86_64
URL            : http://www.gnupg.org/
Licenses       : GPL
Groups         : None
Provides       : dirmngr  gnupg2=2.1.5
Depends On     : npth  libgpg-error  libgcrypt  libksba  libassuan  pinentry  bzip2  readline  gnutls
Optional Deps  : libldap: gpg2keys_ldap [installed]
                 libusb-compat: scdaemon [installed]
Required By    : gpgme
Optional For   : None
Conflicts With : dirmngr  gnupg2
Replaces       : dirmngr  gnupg2
Installed Size : 8620.00 KiB
Packager       : Gaetan Bisson <bisson@archlinux.org>
Build Date     : Thu 11 Jun 2015 04:29:11 PM UTC
Install Date   : Sat 04 Jul 2015 03:46:19 AM UTC
Install Reason : Installed as a dependency for another package
Install Script : Yes
Validated By   : Signature
#pacman -Qi gnutls
Name           : gnutls
Version        : 3.3.8-2
Description    : A library which provides a secure layer over a reliable transport layer
Architecture   : x86_64
URL            : http://www.gnutls.org/
Licenses       : GPL3  LGPL2.1
Groups         : None
Provides       : None
Depends On     : gcc-libs  libtasn1  readline  zlib  nettle  p11-kit
Optional Deps  : None
Required By    : ffmpeg  filezilla  gnupg  libimobiledevice  smbclient
Optional For   : None
Conflicts With : None
Replaces       : None
Installed Size : 4741.00 KiB
Packager       : Evangelos Foutras <evangelos@foutrelis.com>
Build Date     : Fri 26 Sep 2014 06:26:08 AM UTC
Install Date   : Sun 28 Sep 2014 05:08:49 PM UTC
Install Reason : Installed as a dependency for another package
Install Script : Yes
Validated By   : Signature
#pacman -Qi libassuan
Name           : libassuan
Version        : 2.1.1-1
Description    : A IPC library used by some GnuPG related software
Architecture   : x86_64
URL            : http://www.gnupg.org/related_software/libassuan
Licenses       : GPL
Groups         : None
Provides       : None
Depends On     : libgpg-error
Optional Deps  : None
Required By    : gnupg
Optional For   : None
Conflicts With : None
Replaces       : None
Installed Size : 174.00 KiB
Packager       : Tobias Powalowski <tpowa@archlinux.org>
Build Date     : Tue 09 Jul 2013 01:03:48 PM UTC
Install Date   : Sun 08 Jun 2014 09:33:16 AM UTC
Install Reason : Installed as a dependency for another package
Install Script : Yes
Validated By   : Signature

And a separate box for

#pacman -Qkk
a52dec: 20 total files, 0 altered files
acl: 88 total files, 0 altered files
akonadi: 65 total files, 0 altered files
alsa-lib: 174 total files, 0 altered files
alsa-plugins: 47 total files, 0 altered files
alsa-utils: 89 total files, 0 altered files
amarok: 1343 total files, 0 altered files
anki: 532 total files, 0 altered files
archlinux-keyring: 8 total files, 0 altered files
aspell: 209 total files, 0 altered files
at-spi2-atk: 17 total files, 0 altered files
at-spi2-core: 300 total files, 0 altered files
atk: 409 total files, 0 altered files
attica: 52 total files, 0 altered files
attica-qt5: 103 total files, 0 altered files
attr: 66 total files, 0 altered files
autoconf: 75 total files, 0 altered files
automake: 139 total files, 0 altered files
warning: avahi: /etc/avahi/avahi-daemon.conf (Modification time mismatch)
warning: avahi: /etc/avahi/hosts (Modification time mismatch)
warning: avahi: /etc/avahi/services/sftp-ssh.service (Modification time mismatch)
warning: avahi: /etc/avahi/services/ssh.service (Modification time mismatch)
warning: avahi: /usr/lib/avahi/service-types.db (Modification time mismatch)
warning: avahi: /usr/share/avahi/service-types (Modification time mismatch)
avahi: 335 total files, 6 altered files
babl: 25 total files, 0 altered files
baloo4: 29 total files, 0 altered files
baloo4-akonadi: 7 total files, 0 altered files
baloo4-widgets: 17 total files, 0 altered files
warning: bash: /etc/bash.bash_logout (Modification time mismatch)
warning: bash: /etc/bash.bashrc (Modification time mismatch)
warning: bash: /etc/skel/.bash_logout (Modification time mismatch)
warning: bash: /etc/skel/.bash_profile (Modification time mismatch)
warning: bash: /etc/skel/.bashrc (Modification time mismatch)
bash: 141 total files, 5 altered files
binutils: 280 total files, 0 altered files
bison: 185 total files, 0 altered files
boost-libs: 77 total files, 0 altered files
bzip2: 26 total files, 0 altered files
ca-certificates: 0 total files, 0 altered files
ca-certificates-cacert: 14 total files, 0 altered files
ca-certificates-java: 16 total files, 0 altered files
ca-certificates-mozilla: 181 total files, 0 altered files
ca-certificates-utils: 14 total files, 0 altered files
cairo: 124 total files, 0 altered files
calligra-braindump: 74 total files, 0 altered files
calligra-devtools: 5 total files, 0 altered files
calligra-extras: 57 total files, 0 altered files
calligra-filters: 152 total files, 0 altered files
calligra-flow: 3956 total files, 0 altered files
calligra-handbook: 10 total files, 0 altered files
calligra-karbon: 128 total files, 0 altered files
calligra-kexi: 478 total files, 0 altered files
calligra-krita: 1347 total files, 0 altered files
calligra-libs: 601 total files, 0 altered files
calligra-plan: 213 total files, 0 altered files
calligra-plugins: 238 total files, 0 altered files
calligra-sheets: 423 total files, 0 altered files
calligra-stage: 267 total files, 0 altered files
calligra-words: 135 total files, 0 altered files
chmlib: 14 total files, 0 altered files
warning: chromium: /etc/chromium/default (Modification time mismatch)
warning: chromium: /etc/chromium/default (Size mismatch)
chromium: 113 total files, 1 altered file
chromium-pepper-flash: 10 total files, 0 altered files
cifs-utils: 31 total files, 0 altered files
cln: 100 total files, 0 altered files
cloog: 40 total files, 0 altered files
warning: colord: /var/lib/colord (UID mismatch)
warning: colord: /var/lib/colord (GID mismatch)
colord: 401 total files, 1 altered file
compositeproto: 16 total files, 0 altered files
convertlit: 3 total files, 0 altered files
coreutils: 421 total files, 0 altered files
cracklib: 129 total files, 0 altered files
cryptsetup: 62 total files, 0 altered files
curl: 297 total files, 0 altered files
damageproto: 16 total files, 0 altered files
db: 31 total files, 0 altered files
dbus: 67 total files, 0 altered files
dbus-glib: 44 total files, 0 altered files
dconf: 294 total files, 0 altered files
desktop-file-utils: 13 total files, 0 altered files
device-mapper: 34 total files, 0 altered files
warning: dhcpcd: /etc/dhcpcd.conf (Modification time mismatch)
dhcpcd: 34 total files, 1 altered file
dialog: 186 total files, 0 altered files
diffutils: 16 total files, 0 altered files
djvulibre: 95 total files, 0 altered files
dnssec-anchors: 7 total files, 0 altered files
docbook-xml: 166 total files, 0 altered files
docbook-xsl: 1229 total files, 0 altered files
dosfstools: 41 total files, 0 altered files
dotconf: 72 total files, 0 altered files
warning: e2fsprogs: /etc/mke2fs.conf (Modification time mismatch)
e2fsprogs: 167 total files, 1 altered file
ebook-tools: 16 total files, 0 altered files
efibootmgr: 7 total files, 0 altered files
efivar: 30 total files, 0 altered files
elfutils: 93 total files, 0 altered files
enca: 24 total files, 0 altered files
enchant: 25 total files, 0 altered files
exiv2: 81 total files, 0 altered files
expat: 19 total files, 0 altered files
faad2: 20 total files, 0 altered files
fakeroot: 40 total files, 0 altered files
ffmpeg: 232 total files, 0 altered files
fftw: 56 total files, 0 altered files
file: 23 total files, 0 altered files
warning: filesystem: /etc/arch-release (Modification time mismatch)
warning: filesystem: /etc/arch-release (Size mismatch)
warning: filesystem: /etc/crypttab (Modification time mismatch)
warning: filesystem: /etc/fstab (Modification time mismatch)
warning: filesystem: /etc/fstab (Size mismatch)
warning: filesystem: /etc/group (Modification time mismatch)
warning: filesystem: /etc/group (Size mismatch)
warning: filesystem: /etc/gshadow (Permissions mismatch)
warning: filesystem: /etc/gshadow (Modification time mismatch)
warning: filesystem: /etc/gshadow (Size mismatch)
warning: filesystem: /etc/host.conf (Modification time mismatch)
warning: filesystem: /etc/hosts (Modification time mismatch)
warning: filesystem: /etc/hosts (Size mismatch)
warning: filesystem: /etc/issue (Modification time mismatch)
warning: filesystem: /etc/ld.so.conf (Modification time mismatch)
warning: filesystem: /etc/motd (Modification time mismatch)
warning: filesystem: /etc/mtab (Modification time mismatch)
warning: filesystem: /etc/mtab (Symlink path mismatch)
warning: filesystem: /etc/nsswitch.conf (Modification time mismatch)
warning: filesystem: /etc/passwd (Modification time mismatch)
warning: filesystem: /etc/passwd (Size mismatch)
warning: filesystem: /etc/profile (Modification time mismatch)
warning: filesystem: /etc/resolv.conf (Modification time mismatch)
warning: filesystem: /etc/resolv.conf (Size mismatch)
warning: filesystem: /etc/securetty (Modification time mismatch)
warning: filesystem: /etc/shadow (Permissions mismatch)
warning: filesystem: /etc/shadow (Modification time mismatch)
warning: filesystem: /etc/shadow (Size mismatch)
warning: filesystem: /etc/shells (Modification time mismatch)
filesystem: 91 total files, 18 altered files
filezilla: 757 total files, 0 altered files
findutils: 132 total files, 0 altered files
fixesproto: 16 total files, 0 altered files
flac: 42 total files, 0 altered files
flex: 105 total files, 0 altered files
fontconfig: 486 total files, 0 altered files
fontsproto: 20 total files, 0 altered files
freetype2: 69 total files, 0 altered files
fribidi: 64 total files, 0 altered files
fuse: 35 total files, 0 altered files
gamin: 20 total files, 0 altered files
gawk: 109 total files, 0 altered files
gc: 75 total files, 0 altered files
gcc: 1807 total files, 0 altered files
gcc-libs: 59 total files, 0 altered files
gd: 39 total files, 0 altered files
gdbm: 62 total files, 0 altered files
gdk-pixbuf2: 424 total files, 0 altered files
gegl: 192 total files, 0 altered files
gettext: 385 total files, 0 altered files
ghostscript: 667 total files, 0 altered files
giflib: 31 total files, 0 altered files
gimp: 2505 total files, 0 altered files
glew: 23 total files, 0 altered files
glib2: 653 total files, 0 altered files
warning: glibc: /etc/gai.conf (Modification time mismatch)
warning: glibc: /etc/locale.gen (Modification time mismatch)
warning: glibc: /etc/locale.gen (Size mismatch)
warning: glibc: /etc/nscd.conf (Modification time mismatch)
glibc: 1510 total files, 3 altered files
glu: 11 total files, 0 altered files
gmp: 17 total files, 0 altered files
gnupg: 192 total files, 0 altered files
gnutls: 1080 total files, 0 altered files
google-talkplugin: 264 total files, 0 altered files
gpgme: 26 total files, 0 altered files
grantlee-qt4: 57 total files, 0 altered files
graphite: 22 total files, 0 altered files
grep: 144 total files, 0 altered files
groff: 607 total files, 0 altered files
warning: grub: /boot/grub/grub.cfg (Permissions mismatch)
warning: grub: /boot/grub/grub.cfg (Modification time mismatch)
warning: grub: /boot/grub/grub.cfg (Size mismatch)
warning: grub: /etc/default/grub (Modification time mismatch)
warning: grub: /etc/default/grub (Size mismatch)
warning: grub: /etc/grub.d/40_custom (Modification time mismatch)
warning: grub: /etc/grub.d/40_custom (Size mismatch)
grub: 1026 total files, 3 altered files
gsfonts: 110 total files, 0 altered files
gsl: 253 total files, 0 altered files
gsm: 24 total files, 0 altered files
gst-plugins-base-libs: 517 total files, 0 altered files
gstreamer: 445 total files, 0 altered files
gstreamer0.10: 269 total files, 0 altered files
gstreamer0.10-base: 321 total files, 0 altered files
gtk-update-icon-cache: 4 total files, 0 altered files
gtk2: 1450 total files, 0 altered files
gtk3: 1650 total files, 0 altered files
guile: 772 total files, 0 altered files
guvcview: 97 total files, 0 altered files
gzip: 33 total files, 0 altered files
harfbuzz: 89 total files, 0 altered files
hicolor-icon-theme: 343 total files, 0 altered files
hspell: 24 total files, 0 altered files
hunspell: 61 total files, 0 altered files
hwids: 5 total files, 0 altered files
iana-etc: 11 total files, 0 altered files
icu: 268 total files, 0 altered files
ilmbase: 82 total files, 0 altered files
warning: imagemagick: /etc/ImageMagick-6/coder.xml (Modification time mismatch)
warning: imagemagick: /etc/ImageMagick-6/colors.xml (Modification time mismatch)
warning: imagemagick: /etc/ImageMagick-6/log.xml (Modification time mismatch)
warning: imagemagick: /etc/ImageMagick-6/magic.xml (Modification time mismatch)
warning: imagemagick: /etc/ImageMagick-6/mime.xml (Modification time mismatch)
warning: imagemagick: /etc/ImageMagick-6/policy.xml (Modification time mismatch)
warning: imagemagick: /etc/ImageMagick-6/quantization-table.xml (Modification time mismatch)
warning: imagemagick: /etc/ImageMagick-6/thresholds.xml (Modification time mismatch)
warning: imagemagick: /etc/ImageMagick-6/type-dejavu.xml (Modification time mismatch)
warning: imagemagick: /etc/ImageMagick-6/type-ghostscript.xml (Modification time mismatch)
warning: imagemagick: /etc/ImageMagick-6/type-windows.xml (Modification time mismatch)
warning: imagemagick: /etc/ImageMagick-6/type.xml (Modification time mismatch)
imagemagick: 483 total files, 12 altered files
inetutils: 56 total files, 0 altered files
inputproto: 21 total files, 0 altered files
warning: iproute2: /etc/iproute2/ematch_map (Modification time mismatch)
warning: iproute2: /etc/iproute2/rt_dsfield (Modification time mismatch)
warning: iproute2: /etc/iproute2/rt_protos (Modification time mismatch)
warning: iproute2: /etc/iproute2/rt_realms (Modification time mismatch)
warning: iproute2: /etc/iproute2/rt_scopes (Modification time mismatch)
warning: iproute2: /etc/iproute2/rt_tables (Modification time mismatch)
iproute2: 133 total files, 6 altered files
iptables: 182 total files, 0 altered files
iputils: 27 total files, 0 altered files
isl: 79 total files, 0 altered files
iso-codes: 635 total files, 0 altered files
iw: 7 total files, 0 altered files
warning: jack: /etc/security/limits.d/99-audio.conf (Modification time mismatch)
jack: 185 total files, 1 altered file
jasper: 42 total files, 0 altered files
java-common: 10 total files, 0 altered files
jfsutils: 21 total files, 0 altered files
jre8-openjdk-headless: 171 total files, 0 altered files
js17: 76 total files, 0 altered files
json-c: 28 total files, 0 altered files
kactivities-frameworks: 252 total files, 0 altered files
karchive: 44 total files, 0 altered files
kauth: 346 total files, 0 altered files
kbd: 735 total files, 0 altered files
kbookmarks: 295 total files, 0 altered files
kbproto: 51 total files, 0 altered files
kcmutils: 335 total files, 0 altered files
kcodecs: 322 total files, 0 altered files
kcompletion: 334 total files, 0 altered files
kconfig: 336 total files, 0 altered files
kconfigwidgets: 354 total files, 0 altered files
kcoreaddons: 375 total files, 0 altered files
kcrash: 22 total files, 0 altered files
kdbusaddons: 136 total files, 0 altered files
kde-base-artwork: 34 total files, 0 altered files
kde-wallpapers: 142 total files, 0 altered files
kdebase-dolphin: 75 total files, 0 altered files
kdebase-katepart: 295 total files, 0 altered files
kdebase-kdepasswd: 36 total files, 0 altered files
kdebase-kdialog: 7 total files, 0 altered files
kdebase-keditbookmarks: 19 total files, 0 altered files
kdebase-kfind: 37 total files, 0 altered files
kdebase-konq-plugins: 160 total files, 0 altered files
kdebase-konqueror: 244 total files, 0 altered files
kdebase-konsole: 58 total files, 0 altered files
kdebase-kwrite: 24 total files, 0 altered files
kdebase-lib: 74 total files, 0 altered files
kdebase-plasma: 8 total files, 0 altered files
kdebase-runtime: 2270 total files, 0 altered files
warning: kdebase-workspace: /usr/share/config/kdm/README (Modification time mismatch)
warning: kdebase-workspace: /usr/share/config/kdm/README (Size mismatch)
warning: kdebase-workspace: /usr/share/config/kdm/kdmrc (Modification time mismatch)
warning: kdebase-workspace: /usr/share/config/kdm/kdmrc (Size mismatch)
kdebase-workspace: 2626 total files, 2 altered files
kdeclarative: 346 total files, 0 altered files
kdegraphics-ksnapshot: 40 total files, 0 altered files
kdegraphics-mobipocket: 22 total files, 0 altered files
kdegraphics-okular: 256 total files, 0 altered files
kdelibs: 3671 total files, 0 altered files
kdepim-runtime: 287 total files, 0 altered files
kdepimlibs: 1547 total files, 0 altered files
keyutils: 65 total files, 0 altered files
kfilemetadata: 46 total files, 0 altered files
kglobalaccel: 324 total files, 0 altered files
kguiaddons: 39 total files, 0 altered files
ki18n: 350 total files, 0 altered files
kiconthemes: 282 total files, 0 altered files
kio: 742 total files, 0 altered files
kitemviews: 334 total files, 0 altered files
kjobwidgets: 333 total files, 0 altered files
kmod: 61 total files, 0 altered files
knotifications: 328 total files, 0 altered files
konversation: 361 total files, 0 altered files
warning: krb5: /etc/krb5.conf (Modification time mismatch)
warning: krb5: /var/lib/krb5kdc/kdc.conf (Modification time mismatch)
krb5: 196 total files, 2 altered files
kservice: 360 total files, 0 altered files
ktextwidgets: 336 total files, 0 altered files
kwallet: 38 total files, 0 altered files
kwidgetsaddons: 443 total files, 0 altered files
kwindowsystem: 341 total files, 0 altered files
kxmlgui: 366 total files, 0 altered files
lame: 31 total files, 0 altered files
lcms: 29 total files, 0 altered files
lcms2: 24 total files, 0 altered files
ldb: 41 total files, 0 altered files
ldns: 545 total files, 0 altered files
less: 11 total files, 0 altered files
lib32-alsa-lib: 12 total files, 0 altered files
lib32-alsa-plugins: 22 total files, 0 altered files
lib32-attr: 5 total files, 0 altered files
lib32-bzip2: 10 total files, 0 altered files
lib32-curl: 13 total files, 0 altered files
lib32-e2fsprogs: 22 total files, 0 altered files
lib32-expat: 10 total files, 0 altered files
lib32-flac: 14 total files, 0 altered files
lib32-fontconfig: 16 total files, 0 altered files
lib32-freetype2: 7 total files, 0 altered files
lib32-gcc-libs: 41 total files, 0 altered files
lib32-glib2: 33 total files, 0 altered files
lib32-glibc: 356 total files, 0 altered files
lib32-harfbuzz: 14 total files, 0 altered files
lib32-icu: 44 total files, 0 altered files
lib32-json-c: 10 total files, 0 altered files
lib32-keyutils: 5 total files, 0 altered files
lib32-krb5: 57 total files, 0 altered files
lib32-lcms2: 10 total files, 0 altered files
lib32-libasyncns: 7 total files, 0 altered files
lib32-libcap: 7 total files, 0 altered files
lib32-libdbus: 14 total files, 0 altered files
lib32-libffi: 15 total files, 0 altered files
lib32-libgcrypt: 5 total files, 0 altered files
lib32-libgpg-error: 5 total files, 0 altered files
lib32-libice: 10 total files, 0 altered files
lib32-libjpeg-turbo: 11 total files, 0 altered files
lib32-libldap: 14 total files, 0 altered files
lib32-libmng: 11 total files, 0 altered files
lib32-libogg: 14 total files, 0 altered files
lib32-libpng: 17 total files, 0 altered files
lib32-libpulse: 18 total files, 0 altered files
lib32-libsm: 11 total files, 0 altered files
lib32-libsndfile: 7 total files, 0 altered files
lib32-libssh2: 10 total files, 0 altered files
lib32-libtiff: 15 total files, 0 altered files
lib32-libvorbis: 18 total files, 0 altered files
lib32-libx11: 14 total files, 0 altered files
lib32-libxau: 11 total files, 0 altered files
lib32-libxcb: 110 total files, 0 altered files
lib32-libxcursor: 10 total files, 0 altered files
lib32-libxdmcp: 10 total files, 0 altered files
lib32-libxext: 10 total files, 0 altered files
lib32-libxfixes: 10 total files, 0 altered files
lib32-libxi: 10 total files, 0 altered files
lib32-libxrandr: 11 total files, 0 altered files
lib32-libxrender: 10 total files, 0 altered files
lib32-libxss: 10 total files, 0 altered files
lib32-libxtst: 10 total files, 0 altered files
lib32-libxv: 10 total files, 0 altered files
lib32-nvidia-libgl: 17 total files, 0 altered files
lib32-nvidia-utils: 51 total files, 0 altered files
lib32-openssl: 26 total files, 0 altered files
lib32-pcre: 26 total files, 0 altered files
lib32-qt4: 187 total files, 0 altered files
lib32-sqlite: 10 total files, 0 altered files
lib32-systemd: 37 total files, 0 altered files
lib32-util-linux: 19 total files, 0 altered files
lib32-v4l-utils: 28 total files, 0 altered files
lib32-xz: 12 total files, 0 altered files
lib32-zlib: 11 total files, 0 altered files
libaccounts-glib: 105 total files, 0 altered files
libaccounts-qt: 36 total files, 0 altered files
libaio: 7 total files, 0 altered files
libarchive: 62 total files, 0 altered files
libass: 15 total files, 0 altered files
libassuan: 15 total files, 0 altered files
libasyncns: 15 total files, 0 altered files
libatasmart: 19 total files, 0 altered files
libatomic_ops: 89 total files, 0 altered files
libbaloo4: 81 total files, 0 altered files
libbluray: 19 total files, 0 altered files
libbsd: 87 total files, 0 altered files
libcanberra: 78 total files, 0 altered files
libcap: 55 total files, 0 altered files
libcap-ng: 43 total files, 0 altered files
libcl: 9 total files, 0 altered files
libcroco: 81 total files, 0 altered files
warning: libcups: /etc/cups/client.conf (Modification time mismatch)
libcups: 42 total files, 1 altered file
libdaemon: 21 total files, 0 altered files
libdatrie: 22 total files, 0 altered files
libdbus: 35 total files, 0 altered files
libdbusmenu-qt: 108 total files, 0 altered files
libdbusmenu-qt5: 114 total files, 0 altered files
libdca: 23 total files, 0 altered files
libdmtx: 13 total files, 0 altered files
libdrm: 60 total files, 0 altered files
libdvbpsi: 75 total files, 0 altered files
libdvdnav: 20 total files, 0 altered files
libdvdread: 27 total files, 0 altered files
libebml: 33 total files, 0 altered files
libedit: 43 total files, 0 altered files
libepoxy: 19 total files, 0 altered files
libevdev: 21 total files, 0 altered files
libevent: 59 total files, 0 altered files
libexif: 108 total files, 0 altered files
libffi: 24 total files, 0 altered files
libfontenc: 15 total files, 0 altered files
libgcrypt: 23 total files, 0 altered files
libglade: 46 total files, 0 altered files
libgpg-error: 63 total files, 0 altered files
libgusb: 47 total files, 0 altered files
libical: 61 total files, 0 altered files
libice: 24 total files, 0 altered files
libidn: 138 total files, 0 altered files
libimobiledevice: 63 total files, 0 altered files
libjpeg-turbo: 43 total files, 0 altered files
libkactivities4: 56 total files, 0 altered files
libkate: 218 total files, 0 altered files
libkdcraw: 44 total files, 0 altered files
libkexiv2: 30 total files, 0 altered files
libkeybinder2: 9 total files, 0 altered files
libkfbapi: 176 total files, 0 altered files
libkgapi: 255 total files, 0 altered files
libkipi: 49 total files, 0 altered files
libkolab: 24 total files, 0 altered files
libkolabxml: 26 total files, 0 altered files
libksba: 15 total files, 0 altered files
liblastfm: 40 total files, 0 altered files
libldap: 216 total files, 0 altered files
liblqr: 23 total files, 0 altered files
libltdl: 51 total files, 0 altered files
libmad: 9 total files, 0 altered files
libmariadbclient: 156 total files, 0 altered files
libmatroska: 36 total files, 0 altered files
libmng: 21 total files, 0 altered files
libmodplug: 17 total files, 0 altered files
libmpc: 11 total files, 0 altered files
libmpcdec: 19 total files, 0 altered files
libmpeg2: 24 total files, 0 altered files
warning: libnl: /etc/libnl/classid (Modification time mismatch)
warning: libnl: /etc/libnl/pktloc (Modification time mismatch)
libnl: 183 total files, 2 altered files
libnotify: 37 total files, 0 altered files
libodfgen: 113 total files, 0 altered files
libofa: 14 total files, 0 altered files
libogg: 105 total files, 0 altered files
libpaper: 101 total files, 0 altered files
libpciaccess: 13 total files, 0 altered files
libpipeline: 78 total files, 0 altered files
libplist: 29 total files, 0 altered files
libpng: 34 total files, 0 altered files
libproxy: 32 total files, 0 altered files
libpulse: 81 total files, 0 altered files
libqalculate: 239 total files, 0 altered files
libqzeitgeist: 47 total files, 0 altered files
libraw: 42 total files, 0 altered files
libraw1394: 24 total files, 0 altered files
librevenge: 463 total files, 0 altered files
librsvg: 65 total files, 0 altered files
libsamplerate: 30 total files, 0 altered files
libsasl: 52 total files, 0 altered files
libseccomp: 35 total files, 0 altered files
libshout: 20 total files, 0 altered files
libsm: 21 total files, 0 altered files
libsndfile: 53 total files, 0 altered files
libspectre: 17 total files, 0 altered files
libspiro: 12 total files, 0 altered files
libspnav: 9 total files, 0 altered files
libssh: 22 total files, 0 altered files
libssh2: 181 total files, 0 altered files
libsystemd: 23 total files, 0 altered files
libtar: 88 total files, 0 altered files
libtasn1: 61 total files, 0 altered files
libthai: 29 total files, 0 altered files
libtheora: 104 total files, 0 altered files
libtiff: 269 total files, 0 altered files
libtiger: 11 total files, 0 altered files
warning: libtirpc: /etc/netconfig (Modification time mismatch)
libtirpc: 71 total files, 1 altered file
libtool: 31 total files, 0 altered files
libunistring: 55 total files, 0 altered files
libupnp: 37 total files, 0 altered files
libusb: 10 total files, 0 altered files
libusb-compat: 11 total files, 0 altered files
libusbmuxd: 12 total files, 0 altered files
libutempter: 18 total files, 0 altered files
libutil-linux: 14 total files, 0 altered files
libva: 71 total files, 0 altered files
libvdpau: 21 total files, 0 altered files
libvorbis: 174 total files, 0 altered files
libvpx: 28 total files, 0 altered files
libwbclient: 13 total files, 0 altered files
libwebp: 44 total files, 0 altered files
libwmf: 48 total files, 0 altered files
libwpd: 1352 total files, 0 altered files
libx11: 1250 total files, 0 altered files
libx264: 9 total files, 0 altered files
libxau: 25 total files, 0 altered files
libxaw: 143 total files, 0 altered files
libxcb: 2400 total files, 0 altered files
libxcomposite: 29 total files, 0 altered files
libxcursor: 52 total files, 0 altered files
libxdamage: 15 total files, 0 altered files
libxdmcp: 17 total files, 0 altered files
libxext: 100 total files, 0 altered files
libxfixes: 18 total files, 0 altered files
libxfont: 29 total files, 0 altered files
libxft: 19 total files, 0 altered files
libxi: 96 total files, 0 altered files
libxinerama: 23 total files, 0 altered files
libxkbcommon: 107 total files, 0 altered files
libxkbcommon-x11: 14 total files, 0 altered files
libxkbfile: 20 total files, 0 altered files
libxklavier: 42 total files, 0 altered files
libxml2: 353 total files, 0 altered files
libxmu: 45 total files, 0 altered files
libxpm: 21 total files, 0 altered files
libxrandr: 32 total files, 0 altered files
libxrender: 18 total files, 0 altered files
libxres: 23 total files, 0 altered files
libxshmfence: 14 total files, 0 altered files
libxslt: 166 total files, 0 altered files
libxss: 29 total files, 0 altered files
libxt: 340 total files, 0 altered files
libxtst: 33 total files, 0 altered files
libxv: 43 total files, 0 altered files
libxxf86vm: 39 total files, 0 altered files
libzip: 91 total files, 0 altered files
licenses: 57 total files, 0 altered files
warning: linux: /etc/mkinitcpio.d/linux.preset (Modification time mismatch)
warning: linux: /usr/lib/modules/3.16.3-1-ARCH/modules.alias (Modification time mismatch)
warning: linux: /usr/lib/modules/3.16.3-1-ARCH/modules.alias (Size mismatch)
warning: linux: /usr/lib/modules/3.16.3-1-ARCH/modules.alias.bin (Modification time mismatch)
warning: linux: /usr/lib/modules/3.16.3-1-ARCH/modules.alias.bin (Size mismatch)
warning: linux: /usr/lib/modules/3.16.3-1-ARCH/modules.builtin.bin (Modification time mismatch)
warning: linux: /usr/lib/modules/3.16.3-1-ARCH/modules.dep (Modification time mismatch)
warning: linux: /usr/lib/modules/3.16.3-1-ARCH/modules.dep (Size mismatch)
warning: linux: /usr/lib/modules/3.16.3-1-ARCH/modules.dep.bin (Modification time mismatch)
warning: linux: /usr/lib/modules/3.16.3-1-ARCH/modules.dep.bin (Size mismatch)
warning: linux: /usr/lib/modules/3.16.3-1-ARCH/modules.devname (Modification time mismatch)
warning: linux: /usr/lib/modules/3.16.3-1-ARCH/modules.softdep (Modification time mismatch)
warning: linux: /usr/lib/modules/3.16.3-1-ARCH/modules.symbols (Modification time mismatch)
warning: linux: /usr/lib/modules/3.16.3-1-ARCH/modules.symbols (Size mismatch)
warning: linux: /usr/lib/modules/3.16.3-1-ARCH/modules.symbols.bin (Modification time mismatch)
warning: linux: /usr/lib/modules/3.16.3-1-ARCH/modules.symbols.bin (Size mismatch)
linux: 4181 total files, 10 altered files
linux-api-headers: 746 total files, 0 altered files
linux-firmware: 1062 total files, 0 altered files
llvm-libs: 8 total files, 0 altered files
lm_sensors: 48 total files, 0 altered files
logrotate: 19 total files, 0 altered files
lsb-release: 10 total files, 0 altered files
lua: 33 total files, 0 altered files
lvm2: 165 total files, 0 altered files
lzo: 33 total files, 0 altered files
m4: 12 total files, 0 altered files
make: 90 total files, 0 altered files
man-db: 210 total files, 0 altered files
man-pages: 3368 total files, 0 altered files
warning: mariadb: /etc/mysql/my.cnf (Modification time mismatch)
mariadb: 233 total files, 1 altered file
mariadb-clients: 19 total files, 0 altered files
mcpp: 24 total files, 0 altered files
warning: mdadm: /etc/mdadm.conf (Modification time mismatch)
mdadm: 36 total files, 1 altered file
media-player-info: 267 total files, 0 altered files
mesa: 90 total files, 0 altered files
warning: mkinitcpio: /etc/mkinitcpio.conf (Modification time mismatch)
mkinitcpio: 80 total files, 1 altered file
mkinitcpio-busybox: 4 total files, 0 altered files
mpfr: 27 total files, 0 altered files
mtdev: 17 total files, 0 altered files
warning: nano: /etc/nanorc (Modification time mismatch)
nano: 150 total files, 1 altered file
ncurses: 3609 total files, 0 altered files
netctl: 82 total files, 0 altered files
nettle: 71 total files, 0 altered files
npth: 12 total files, 0 altered files
nspr: 72 total files, 0 altered files
nss: 127 total files, 0 altered files
ntfs-3g: 99 total files, 0 altered files
nvidia: 9 total files, 0 altered files
nvidia-libgl: 23 total files, 0 altered files
nvidia-utils: 147 total files, 0 altered files
opencolorio: 27 total files, 0 altered files
opencore-amr: 18 total files, 0 altered files
openexr: 135 total files, 0 altered files
openjpeg: 29 total files, 0 altered files
warning: openresolv: /etc/resolvconf.conf (Modification time mismatch)
openresolv: 21 total files, 1 altered file
openssh: 58 total files, 0 altered files
warning: openssl: /etc/ssl/openssl.cnf (Modification time mismatch)
openssl: 1350 total files, 1 altered file
opus: 20 total files, 0 altered files
orc: 98 total files, 0 altered files
oxygen-icons: 6929 total files, 0 altered files
p11-kit: 74 total files, 0 altered files
warning: pacman: /etc/pacman.conf (Modification time mismatch)
warning: pacman: /etc/pacman.conf (Size mismatch)
pacman: 266 total files, 1 altered file
warning: pacman-mirrorlist: /etc/pacman.d/mirrorlist (Modification time mismatch)
warning: pacman-mirrorlist: /etc/pacman.d/mirrorlist (Size mismatch)
pacman-mirrorlist: 3 total files, 1 altered file
warning: pam: /etc/environment (Modification time mismatch)
warning: pam: /etc/default/passwd (Modification time mismatch)
warning: pam: /etc/security/access.conf (Modification time mismatch)
warning: pam: /etc/security/group.conf (Modification time mismatch)
warning: pam: /etc/security/limits.conf (Modification time mismatch)
warning: pam: /etc/security/namespace.conf (Modification time mismatch)
warning: pam: /etc/security/namespace.init (Modification time mismatch)
warning: pam: /etc/security/pam_env.conf (Modification time mismatch)
warning: pam: /etc/security/time.conf (Modification time mismatch)
pam: 564 total files, 9 altered files
pambase: 8 total files, 0 altered files
pango: 152 total files, 0 altered files
patch: 7 total files, 0 altered files
pciutils: 24 total files, 0 altered files
pcmciautils: 21 total files, 0 altered files
pcre: 211 total files, 0 altered files
perl: 2525 total files, 0 altered files
phonon-qt4: 205 total files, 0 altered files
phonon-qt4-vlc: 11 total files, 0 altered files
phonon-qt5: 204 total files, 0 altered files
phonon-qt5-vlc: 6 total files, 0 altered files
pinentry: 10 total files, 0 altered files
pixman: 15 total files, 0 altered files
pkg-config: 13 total files, 0 altered files
plotutils: 77 total files, 0 altered files
warning: polkit: /etc/polkit-1/rules.d/50-default.rules (Permission denied)
polkit: 156 total files, 1 altered file
polkit-kde: 132 total files, 0 altered files
polkit-qt4: 51 total files, 0 altered files
polkit-qt5: 51 total files, 0 altered files
poppler: 177 total files, 0 altered files
poppler-qt4: 18 total files, 0 altered files
popt: 113 total files, 0 altered files
portaudio: 39 total files, 0 altered files
prison: 25 total files, 0 altered files
procps-ng: 64 total files, 0 altered files
psmisc: 101 total files, 0 altered files
pstoedit: 53 total files, 0 altered files
pth: 17 total files, 0 altered files
pulseaudio: 302 total files, 0 altered files
pulseaudio-alsa: 2 total files, 0 altered files
pygobject2-devel: 18 total files, 0 altered files
pygtk: 678 total files, 0 altered files
pyqt4-common: 10 total files, 0 altered files
python: 5077 total files, 0 altered files
python-dbus-common: 17 total files, 0 altered files
python-xdg: 46 total files, 0 altered files
python2: 4657 total files, 0 altered files
python2-beautifulsoup3: 11 total files, 0 altered files
python2-cairo: 14 total files, 0 altered files
python2-dbus: 65 total files, 0 altered files
python2-gobject2: 111 total files, 0 altered files
python2-httplib2: 17 total files, 0 altered files
python2-keybinder2: 9 total files, 0 altered files
python2-notify: 17 total files, 0 altered files
python2-pyqt4: 613 total files, 0 altered files
python2-sip: 14 total files, 0 altered files
qca: 36 total files, 0 altered files
qimageblitz: 14 total files, 0 altered files
qjson: 21 total files, 0 altered files
qrencode: 15 total files, 0 altered files
qt4: 4077 total files, 0 altered files
qt5-base: 3120 total files, 0 altered files
qt5-declarative: 671 total files, 0 altered files
qt5-script: 191 total files, 0 altered files
qt5-svg: 56 total files, 0 altered files
qt5-x11extras: 32 total files, 0 altered files
qt5-xmlpatterns: 436 total files, 0 altered files
qtchooser: 50 total files, 0 altered files
qtscriptgenerator: 45 total files, 0 altered files
qtwebkit: 67 total files, 0 altered files
randrproto: 16 total files, 0 altered files
readline: 50 total files, 0 altered files
recode: 87 total files, 0 altered files
recordproto: 17 total files, 0 altered files
reiserfsprogs: 23 total files, 0 altered files
renderproto: 16 total files, 0 altered files
rtkit: 30 total files, 0 altered files
rtmpdump: 25 total files, 0 altered files
run-parts: 28 total files, 0 altered files
s-nail: 14 total files, 0 altered files
sbc: 14 total files, 0 altered files
schroedinger: 90 total files, 0 altered files
screen: 39 total files, 0 altered files
scrnsaverproto: 16 total files, 0 altered files
sdl: 223 total files, 0 altered files
sdl_image: 14 total files, 0 altered files
sed: 125 total files, 0 altered files
shadow: 560 total files, 0 altered files
shared-mime-info: 200 total files, 0 altered files
signon: 123 total files, 0 altered files
sip: 7 total files, 0 altered files
skype: 163 total files, 0 altered files
smbclient: 227 total files, 0 altered files
snappy: 23 total files, 0 altered files
solid: 240 total files, 0 altered files
sonnet: 353 total files, 0 altered files
sound-theme-freedesktop: 44 total files, 0 altered files
speech-dispatcher: 113 total files, 0 altered files
speex: 41 total files, 0 altered files
sqlite: 19 total files, 0 altered files
strigi: 136 total files, 0 altered files
warning: sudo: /etc/sudoers (Modification time mismatch)
warning: sudo: /etc/sudoers (Size mismatch)
warning: sudo: /etc/pam.d/sudo (Modification time mismatch)
sudo: 165 total files, 2 altered files
sysfsutils: 19 total files, 0 altered files
warning: systemd: /etc/dbus-1/system.d/org.freedesktop.hostname1.conf (Modification time mismatch)
warning: systemd: /etc/dbus-1/system.d/org.freedesktop.locale1.conf (Modification time mismatch)
warning: systemd: /etc/dbus-1/system.d/org.freedesktop.login1.conf (Modification time mismatch)
warning: systemd: /etc/dbus-1/system.d/org.freedesktop.timedate1.conf (Modification time mismatch)
warning: systemd: /etc/systemd/bootchart.conf (Modification time mismatch)
warning: systemd: /etc/systemd/coredump.conf (Modification time mismatch)
warning: systemd: /etc/systemd/logind.conf (Modification time mismatch)
warning: systemd: /etc/systemd/system.conf (Modification time mismatch)
warning: systemd: /etc/systemd/user.conf (Modification time mismatch)
warning: systemd: /var/log/journal/remote (GID mismatch)
systemd: 1005 total files, 10 altered files
systemd-sysvcompat: 18 total files, 0 altered files
taglib: 115 total files, 0 altered files
taglib-extras: 19 total files, 0 altered files
talloc: 23 total files, 0 altered files
tar: 133 total files, 0 altered files
tdb: 24 total files, 0 altered files
terminator: 347 total files, 0 altered files
tevent: 13 total files, 0 altered files
texinfo: 519 total files, 0 altered files
thin-provisioning-tools: 34 total files, 0 altered files
tidyhtml: 17 total files, 0 altered files
ttf-linux-libertine: 36 total files, 0 altered files
tzdata: 1815 total files, 0 altered files
udisks2: 358 total files, 0 altered files
unzip: 18 total files, 0 altered files
upower: 72 total files, 0 altered files
usbutils: 15 total files, 0 altered files
warning: util-linux: /etc/pam.d/chfn (Modification time mismatch)
warning: util-linux: /etc/pam.d/chsh (Modification time mismatch)
warning: util-linux: /etc/pam.d/login (Modification time mismatch)
warning: util-linux: /etc/pam.d/su (Modification time mismatch)
warning: util-linux: /etc/pam.d/su-l (Modification time mismatch)
util-linux: 452 total files, 5 altered files
v4l-utils: 201 total files, 0 altered files
vi: 25 total files, 0 altered files
videoproto: 19 total files, 0 altered files
warning: vlc: /usr/lib/vlc/plugins/plugins.dat (Modification time mismatch)
warning: vlc: /usr/lib/vlc/plugins/plugins.dat (Size mismatch)
vlc: 1014 total files, 1 altered file
vte: 337 total files, 0 altered files
vte-common: 4 total files, 0 altered files
wayland: 124 total files, 0 altered files
webrtc-audio-processing: 19 total files, 0 altered files
wget: 130 total files, 0 altered files
which: 10 total files, 0 altered files
warning: wpa_supplicant: /etc/wpa_supplicant/wpa_supplicant.conf (Modification time mismatch)
wpa_supplicant: 32 total files, 1 altered file
wxgtk: 869 total files, 0 altered files
wxgtk2.8: 755 total files, 0 altered files
x265: 11 total files, 0 altered files
xapian-core: 474 total files, 0 altered files
xcb-proto: 63 total files, 0 altered files
xcb-util: 20 total files, 0 altered files
xcb-util-image: 16 total files, 0 altered files
xcb-util-keysyms: 14 total files, 0 altered files
xcb-util-renderutil: 14 total files, 0 altered files
xcb-util-wm: 19 total files, 0 altered files
xdg-utils: 25 total files, 0 altered files
xerces-c: 517 total files, 0 altered files
xextproto: 60 total files, 0 altered files
xf86-input-evdev: 18 total files, 0 altered files
xf86vidmodeproto: 14 total files, 0 altered files
xfsprogs: 90 total files, 0 altered files
xineramaproto: 12 total files, 0 altered files
xkeyboard-config: 434 total files, 0 altered files
xorg-bdftopcf: 10 total files, 0 altered files
xorg-font-util: 36 total files, 0 altered files
xorg-font-utils: 0 total files, 0 altered files
xorg-fonts-alias: 14 total files, 0 altered files
xorg-fonts-encodings: 59 total files, 0 altered files
xorg-fonts-misc: 428 total files, 0 altered files
xorg-mkfontdir: 10 total files, 0 altered files
xorg-mkfontscale: 10 total files, 0 altered files
xorg-server: 57 total files, 0 altered files
xorg-server-common: 15 total files, 0 altered files
xorg-setxkbmap: 10 total files, 0 altered files
xorg-xauth: 10 total files, 0 altered files
xorg-xkbcomp: 13 total files, 0 altered files
xorg-xmessage: 14 total files, 0 altered files
xorg-xprop: 10 total files, 0 altered files
xorg-xrandr: 10 total files, 0 altered files
xorg-xrdb: 10 total files, 0 altered files
xorg-xset: 10 total files, 0 altered files
xorg-xsetroot: 10 total files, 0 altered files
xproto: 43 total files, 0 altered files
xvidcore: 7 total files, 0 altered files
xz: 115 total files, 0 altered files
zita-alsa-pcmi: 10 total files, 0 altered files
zita-resampler: 27 total files, 0 altered files
zlib: 18 total files, 0 altered files
zvbi: 49 total files, 0 altered files
mauritiusdadd wrote:

Don't do this: that is an ugly workaround that will bite you when you less expect it... and in fact it doesn't work already.

Yeah, I figured I'd try it in the off chance it would let me run -Syu once before removing it. I deleted the symlink as soon as I got the errors from the last post.

mauritiusdadd wrote:

I'm sorry, but I don't understand it, can you elaborate on what ctrl+z package is?

Haha, it is just a joke; ctrl+z is undo, and I didn't want to delete those files without doing irreversible damage.

Does any of this help?


harryjhurley.com

Offline

#8 2015-07-04 20:34:04

mauritiusdadd
Member
From: Benevento, Italy
Registered: 2013-10-27
Posts: 776

Re: [SOLVED] Cannot upgrade any packages; keys unable to be imported

Otsdarva wrote:
#pacman -Qi gnupg
Version        : 2.1.5-1
Install Date   : Sat 04 Jul 2015 03:46:19 AM UTC

#pacman -Qi gnutls
Version        : 3.3.8-2
Install Date   : Sun 28 Sep 2014 05:08:49 PM UTC

#pacman -Qi libassuan
Version        : 2.1.1-1
Install Date   : Sun 08 Jun 2014 09:33:16 AM UTC

That is definitely a problem, how did you end having a partial upgraded system? Well, try installing first the new version of the above packages and then do a full system upgrade:

pacman -S gnutls libassuan
pacman -Syu

For the file exists in filesystem error, take a look here https://wiki.archlinux.org/index.php/Pa … 9.22_error

PS:

Haha, it is just a joke; ctrl+z is undo, and I didn't want to delete those files without doing irreversible damage.

Oh, I got it... I have a very bad sense of humour big_smile


About me - github

-- When you have eliminated the impossible, whatever remains, however improbable, must be the truth -- Spock | Sherlock Holmes

Offline

#9 2015-07-04 21:24:06

Otsdarva
Member
From: Newark, NJ
Registered: 2014-06-03
Posts: 18

Re: [SOLVED] Cannot upgrade any packages; keys unable to be imported

Fixed!

pacman -S gnutls libassuan

was successful. And as recommended in the pacman wiki, I renamed those troublesome files, ran -Syu successfully, and was then able to remove them. Running -Syu a second time, I had to run

pacman-db-upgrade

.

Everything is running smoothly after an upgrade. Tried installing a few additional packages, both official and from the AUR with no problems.

It looks like this was caused by a partial upgrade, likely caused by my shaking internet/electricity situation in the building I was living over the past few months. Happily I'm out of there now so that will no longer be a problem. Thank you so much to mauritiusdadd and also to jasonwryan!

Marking as solved.


harryjhurley.com

Offline

Board footer

Powered by FluxBB