You are not logged in.

#1 2013-08-20 07:47:17

Xi0N
Member
From: Bilbao - Spain
Registered: 2007-11-29
Posts: 832
Website

[SOLVED] Problem with CRC checks in general + other

Hi all!
Lately, I've been having issues when trying to update my system with pacman -Suy:

(263/263) checking keys in keyring                                                                           [################################################################] 100%
(263/263) checking package integrity                                                                         [################################################################] 100%
error: jre7-openjdk-headless: signature from "Andreas Radke <andyrtr@archlinux.org>" is invalid
:: File /var/cache/pacman/pkg/jre7-openjdk-headless-7.u40_2.4.1-3-x86_64.pkg.tar.xz is corrupted (invalid or corrupted package (PGP signature)).
Do you want to delete it? [Y/n] 

I have been searching and already tested many soutions.
I also attach my pacman.conf in order to give more detail:

#
# /etc/pacman.conf
#
# See the pacman.conf(5) manpage for option and repository directives

#
# GENERAL OPTIONS
#
[options]
# The following paths are commented out with their default values listed.
# If you wish to use different paths, uncomment and update the paths.
#RootDir     = /
#DBPath      = /var/lib/pacman/
#CacheDir    = /var/cache/pacman/pkg/
#LogFile     = /var/log/pacman.log
#GPGDir      = /etc/pacman.d/gnupg/
HoldPkg     = pacman glibc
#XferCommand = /usr/bin/curl -C - -f %u > %o
#XferCommand = /usr/bin/wget --passive-ftp -c -O %o %u
#CleanMethod = KeepInstalled
#UseDelta    = 0.7
Architecture = auto

# Pacman won't upgrade packages listed in IgnorePkg and members of IgnoreGroup
#IgnorePkg   =
#IgnoreGroup =

#NoUpgrade   =
#NoExtract   =

# Misc options
#UseSyslog
#Color
#TotalDownload
CheckSpace
#VerbosePkgLists

# By default, pacman accepts packages signed by keys that its local keyring
# trusts (see pacman-key and its man page), as well as unsigned packages.
SigLevel    = Optional TrustAll
LocalFileSigLevel = Optional
#RemoteFileSigLevel = Required

# NOTE: You must run `pacman-key --init` before first using pacman; the local
# keyring can then be populated with the keys of all official Arch Linux
# packagers with `pacman-key --populate archlinux`.

#
# REPOSITORIES
#   - can be defined here or included from another file
#   - pacman will search repositories in the order defined here
#   - local/custom mirrors can be added here or in separate files
#   - repositories listed first will take precedence when packages
#     have identical names, regardless of version number
#   - URLs will have $repo replaced by the name of the current repo
#   - URLs will have $arch replaced by the name of the architecture
#
# Repository entries are of the format:
#       [repo-name]
#       Server = ServerName
#       Include = IncludePath
#
# The header [repo-name] is crucial - it must be present and
# uncommented to enable the repo.
#
# The testing repositories are disabled by default. To enable, uncomment the
# repo name header and Include lines. You can add preferred servers immediately
# after the header, and they will be used before the default mirrors.

#[testing]
#Include = /etc/pacman.d/mirrorlist

[core]
Include = /etc/pacman.d/mirrorlist

[extra]
Include = /etc/pacman.d/mirrorlist

#[community-testing]
#Include = /etc/pacman.d/mirrorlist

[community]
Include = /etc/pacman.d/mirrorlist

# If you want to run 32 bit applications on your x86_64 system,
# enable the multilib repositories as required here.

#[multilib-testing]
#Include = /etc/pacman.d/mirrorlist
[multilib]
Include = /etc/pacman.d/mirrorlist

# An example of a custom package repository.  See the pacman manpage for
# tips on creating your own repositories.
#[custom]
#SigLevel = Optional TrustAll
#Server = file:///home/custompkgs

[archlinuxfr]
Server = http://repo.archlinux.fr/$arch

#[repo-ck]
#Server = http://repo-ck.com/$arch

I also tried disabling archlinuxfr and changing mirrors.

Help anyone? smile

Last edited by Xi0N (2013-09-21 10:24:57)

Offline

#2 2013-08-20 08:49:10

mcmillan
Member
Registered: 2006-04-06
Posts: 737

Re: [SOLVED] Problem with CRC checks in general + other

I have been searching and already tested many solutions

What solutions have you tested and what was the result?
Without that I'd just point to this sticky thread https://bbs.archlinux.org/viewtopic.php?id=130138

Offline

#3 2013-08-20 08:51:59

Xi0N
Member
From: Bilbao - Spain
Registered: 2007-11-29
Posts: 832
Website

Re: [SOLVED] Problem with CRC checks in general + other

I tried:
- pacman-key --init
- Clearing cache (of the single files that fail, not pacman -Sc(c) )
- Changing mirror

All of them seemed to have no effect whatsoever, pacman-key --init takes not even a second to complete, though.....

Offline

#4 2013-08-22 01:34:47

mcmillan
Member
Registered: 2006-04-06
Posts: 737

Re: [SOLVED] Problem with CRC checks in general + other

 pacman-key --init

My impression is if you already have the keyring initialized this won't do anything, though I'm not certain. I think you may be wanting

pacman-key --refresh-keys

Offline

#5 2013-08-22 01:37:18

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

Re: [SOLVED] Problem with CRC checks in general + other

Or delete the offending key first, then refresh the keyring.


Arch + dwm   •   Mercurial repos  •   Surfraw

Registered Linux User #482438

Offline

#6 2013-08-22 01:40:48

Xi0N
Member
From: Bilbao - Spain
Registered: 2007-11-29
Posts: 832
Website

Re: [SOLVED] Problem with CRC checks in general + other

May I ask how to manually delete the key?
I'm kind of stuck with this still.
Thanks!

Offline

#7 2013-08-22 01:43:16

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

Re: [SOLVED] Problem with CRC checks in general + other

man pacman-key

Arch + dwm   •   Mercurial repos  •   Surfraw

Registered Linux User #482438

Offline

#8 2013-08-22 07:41:45

Xi0N
Member
From: Bilbao - Spain
Registered: 2007-11-29
Posts: 832
Website

Re: [SOLVED] Problem with CRC checks in general + other

a

pacman-keys --refresh-keys

solved it, thanks for pointing me in the right direction.

Offline

#9 2013-08-31 20:52:30

Xi0N
Member
From: Bilbao - Spain
Registered: 2007-11-29
Posts: 832
Website

Re: [SOLVED] Problem with CRC checks in general + other

I still have problems with this...
I double checked the time, installed ntpd and configured the dispatcher to work with networkmanager: The time is right.... so that's not the problem.

I was trying to install linux-ck and I followed all the steps:

# pacman-key -r 5EE46C4C
# pacman-key --lsign-key 5EE46C4C

but I still have the same issues:

error: linux-ck-kx: signature from "graysky (used to sign repo-ck packages) <graysky@archlinux.us>" is invalid
:: File /var/cache/pacman/pkg/linux-ck-kx-3.10.10-1-x86_64.pkg.tar.xz is corrupted (invalid or corrupted package (PGP signature)).

Sometimes, I restart all the keys, delete the gnupg folder under /etc/pacman.d/ and it ends up working----
It also happens when I try to install packages from core and/or multilib.......

I need help with this, please....

Thanks.

Offline

#10 2013-09-08 11:19:05

Xi0N
Member
From: Bilbao - Spain
Registered: 2007-11-29
Posts: 832
Website

Re: [SOLVED] Problem with CRC checks in general + other

OK, thinking that the problem would involve some misconfiguration over the months or something similar (added up to some other issues i have been running through), I ended up re installing the whole system form scratch.
I almost died when I saw the same kind of errors again just after installing all the packages.... this is like a nightmare..... I still get signature verification errors.....
I really need some help with this.... no suggestions?

Offline

#11 2013-09-08 11:33:03

Mr.Elendig
#archlinux@freenode channel op
From: The intertubes
Registered: 2004-11-07
Posts: 4,092

Re: [SOLVED] Problem with CRC checks in general + other

It could be that the key is just fine, but that the package actually is corrupted.... Clear the cache, switch mirror and try again.  Oh, and make sure your clock is accurate.

Last edited by Mr.Elendig (2013-09-08 11:33:54)


Evil #archlinux@libera.chat channel op and general support dude.
. files on github, Screenshots, Random pics and the rest

Offline

#12 2013-09-08 11:57:53

Xi0N
Member
From: Bilbao - Spain
Registered: 2007-11-29
Posts: 832
Website

Re: [SOLVED] Problem with CRC checks in general + other

I commented the 2 first mirrors from /etc/pacman.d/mirrorlist and then:

[jonander@7thHeaven ~]$ sudo pacman -Sc
Packages to keep:
  All locally installed packages

Cache directory: /var/cache/pacman/pkg/
:: Do you want to remove all other packages from cache? [Y/n] 
removing old packages from cache...

Database directory: /var/lib/pacman/
:: Do you want to remove unused repositories? [Y/n] 
removing unused sync repositories...
[jonander@7thHeaven ~]$ sudo pacman -Sy java-runtime
:: Synchronizing package databases...
 core is up to date
 extra is up to date
 community                                                                         2026.1 KiB  3.47M/s 00:01 [################################################################] 100%
 multilib is up to date
 archlinuxfr is up to date
resolving dependencies...
looking for inter-conflicts...

Packages (3): ca-certificates-java-20130815-1  jre7-openjdk-headless-7.u40_2.4.1-3  jre7-openjdk-7.u40_2.4.1-3

Total Download Size:    41.82 MiB
Total Installed Size:   77.21 MiB

:: Proceed with installation? [Y/n] 
:: Retrieving packages ...
 ca-certificates-java-20130815-1-any                                                  6.4 KiB  0.00B/s 00:00 [################################################################] 100%
 jre7-openjdk-headless-7.u40_2.4.1-3-x86_64                                          41.6 MiB  9.57M/s 00:04 [################################################################] 100%
 jre7-openjdk-7.u40_2.4.1-3-x86_64                                                  179.2 KiB  12.5M/s 00:00 [################################################################] 100%
(3/3) checking keys in keyring                                                                               [################################################################] 100%
(3/3) checking package integrity                                                                             [################################################################] 100%
error: jre7-openjdk-headless: signature from "Andreas Radke <andyrtr@archlinux.org>" is invalid
:: File /var/cache/pacman/pkg/jre7-openjdk-headless-7.u40_2.4.1-3-x86_64.pkg.tar.xz is corrupted (invalid or corrupted package (PGP signature)).
Do you want to delete it? [Y/n] 

A nightmare.....

Offline

#13 2013-09-08 12:21:12

Xi0N
Member
From: Bilbao - Spain
Registered: 2007-11-29
Posts: 832
Website

Re: [SOLVED] Problem with CRC checks in general + other

[jonander@7thHeaven ~]$ sudo timedatectl status
      Local time: dom 2013-09-08 14:20:10 CEST
  Universal time: dom 2013-09-08 12:20:10 UTC
        RTC time: dom 2013-09-08 12:20:10
        Timezone: Europe/Madrid (CEST, +0200)
     NTP enabled: n/a
NTP synchronized: no
 RTC in local TZ: no
      DST active: yes
 Last DST change: DST began at
                  dom 2013-03-31 01:59:59 CET
                  dom 2013-03-31 03:00:00 CEST
 Next DST change: DST ends (the clock jumps one hour backwards) at
                  dom 2013-10-27 02:59:59 CEST
                  dom 2013-10-27 02:00:00 CET

I triple checked the time... it's correct: Exactly the same as my smartphone's


EDIT: I'm suspecting some hardware failure of my graphic card... i suffer from lockups while playback of hd video that forces me to hard reset and also some screen flickering.... I don't know what else to try,,,,,.... could this in any way be related?

Last edited by Xi0N (2013-09-08 14:40:46)

Offline

#14 2013-09-08 16:28:03

KairiTech
Member
From: Toronto, Canada
Registered: 2011-06-04
Posts: 275

Re: [SOLVED] Problem with CRC checks in general + other

:: File /var/cache/pacman/pkg/jre7-openjdk-headless-7.u40_2.4.1-3-x86_64.pkg.tar.xz is corrupted (invalid or corrupted package (PGP signature)).

Have you checked the size of the downloaded file? I get these kinds of issues when, for some reason, the file size is zero. Bad timing I guess. Must have attempted an update in the middle of the server being updated. I usually just have to delete the empty file and try again.

Last edited by KairiTech (2013-09-08 16:28:31)

Offline

#15 2013-09-08 16:59:18

Xi0N
Member
From: Bilbao - Spain
Registered: 2007-11-29
Posts: 832
Website

Re: [SOLVED] Problem with CRC checks in general + other

I try to install some packages:

[jonander@7thHeaven ~]$ sudo pacman -S virtualbox virtualbox-host-modules virtualbox-guest-iso
[sudo] password for jonander: 
resolving dependencies...
looking for inter-conflicts...

Packages (3): virtualbox-4.2.18-1  virtualbox-guest-iso-4.2.18-1  virtualbox-host-modules-4.2.18-1

Total Download Size:    39.56 MiB
Total Installed Size:   124.12 MiB

:: Proceed with installation? [Y/n] 
:: Retrieving packages ...
 virtualbox-guest-iso-4.2.18-1-any                                                   39.6 MiB  4.72M/s 00:08 [################################################################] 100%
(3/3) checking keys in keyring                                                                               [################################################################] 100%
(3/3) checking package integrity                                                                             [################################################################] 100%
error: virtualbox-guest-iso: signature from "Sébastien Luttringer <seblu@seblu.net>" is invalid
:: File /var/cache/pacman/pkg/virtualbox-guest-iso-4.2.18-1-any.pkg.tar.xz is corrupted (invalid or corrupted package (PGP signature)).
Do you want to delete it? [Y/n] 

Checking the file that's being reported as corrupred...

[jonander@7thHeaven ~]$ ls -hali /var/cache/pacman/pkg/virtualbox-guest-iso-4.2.18-1-any.pkg.tar.xz
7079349 -rw-r--r-- 1 root root 40M sep  6 23:19 /var/cache/pacman/pkg/virtualbox-guest-iso-4.2.18-1-any.pkg.tar.xz
[jonander@7thHeaven ~]$ 

It's 40 Mb, so that is not the problem...... The disk is SSD disk... can it have anything to do?

Offline

#16 2013-09-08 20:16:36

henk
Member
From: Weert, Netherlands
Registered: 2013-01-01
Posts: 334

Re: [SOLVED] Problem with CRC checks in general + other

The only thing that worked for me was installing the keys from scratch:

rm /etc/pacman.d/gnupg/*
pacman-key --init
pacman-key --populate archlinux

Offline

#17 2013-09-08 20:18:36

Xi0N
Member
From: Bilbao - Spain
Registered: 2007-11-29
Posts: 832
Website

Re: [SOLVED] Problem with CRC checks in general + other

Thanks for the suggestion.... I followed the wiki section for troubleshooting and did those steps an lot of times... Didn't work either...

Offline

#18 2013-09-08 20:31:04

henk
Member
From: Weert, Netherlands
Registered: 2013-01-01
Posts: 334

Re: [SOLVED] Problem with CRC checks in general + other

I f those steps won't work then, although you think you have the correct time, you might want to change it.
I did an install on another pc today, twice, because of the difference between our local time and UTC; ran into
the same problems you have, couldn't even start X in the first installation.

Offline

#19 2013-09-08 20:33:37

Xi0N
Member
From: Bilbao - Spain
Registered: 2007-11-29
Posts: 832
Website

Re: [SOLVED] Problem with CRC checks in general + other

But I followed the wiki and set the timezone to where I live.... I live in Spain, though the system's in en_US.... What do you suggest? Before re installing I even had ntpd to have the correct time....
Could this have anything to do with my lockups and sudden logouts from kde?

Offline

#20 2013-09-09 03:42:00

henk
Member
From: Weert, Netherlands
Registered: 2013-01-01
Posts: 334

Re: [SOLVED] Problem with CRC checks in general + other

Good morning, sorry for the delay in answering, even I have to sleep.
Yes, those problems can occur if your system time is wrong. What I did yesterday is:
-changed from localtime (which I always used) to UTC
-set the time
-refreshed the keys
Afterwards I could install lxdm without the Daniel Wallace key hickup. After login I noticed the time was 2 hours ahead; set the time again. 
Now my hardwareclock(BIOS) lags 2 hours but the systemclock is correct. And I tend to leave it that way.

Offline

#21 2013-09-09 03:53:33

rufus
Banned
From: san francisco
Registered: 2013-04-20
Posts: 153

Re: [SOLVED] Problem with CRC checks in general + other

try ntpd -q and then hwclock -w    dual booting with windblows causes time issues as said OS gets piggish with time and the hwclock....


end ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
     'the machine is not the end to the means., we are. In history, in board rooms and politic the greatest  decision and effort
        evolves from passion, lust for life, and a common sense of humanity. Never forget what you are and why'.         -me

Offline

#22 2013-09-09 14:34:38

athetius
Member
Registered: 2010-12-19
Posts: 5
Website

Re: [SOLVED] Problem with CRC checks in general + other

I was having the same issue, **_everyone's_** package were supposedly corrupt. Pacman wouldn't reinstall, not even archlinux-keyring. (Note, while not in the result, I _did_ try several mirrors) This is what I eventually used:

rm -R /etc/pacman.d/gnupg
rm /var/lib/pacman/sync/*
pacman-key --init
pacman-key --populate archlinux
pacman-key --refresh-keys
pacman -Syyu

Results

$ pacman -S archlinux-keyring
warning: archlinux-keyring-20130818-1 is up to date -- reinstalling
resolving dependencies...
looking for inter-conflicts...

Packages (1): archlinux-keyring-20130818-1

Total Installed Size:   0.53 MiB
Net Upgrade Size:       0.00 MiB

:: Proceed with installation? [Y/n] y
(1/1) checking keys in keyring                                      [-------------------------------------] 100%
downloading required keys...
:: Import PGP key 2048R/9741E8AC, "Pierre Schmitz <pierre@archlinux.de>", created: 2011-04-10? [Y/n] y
(1/1) checking package integrity                                    [-------------------------------------] 100%
error: archlinux-keyring: signature from "Pierre Schmitz <pierre@archlinux.de>" is unknown trust
:: File /var/cache/pacman/pkg/archlinux-keyring-20130818-1-any.pkg.tar.xz is corrupted (invalid or corrupted package (PGP signature)).
Do you want to delete it? [Y/n] n
error: failed to commit transaction (invalid or corrupted package (PGP signature))
Errors occurred, no packages were upgraded.
$ pacman -S pacman
warning: pacman-4.1.2-1 is up to date -- reinstalling
resolving dependencies...
looking for inter-conflicts...

Packages (1): pacman-4.1.2-1

Total Installed Size:   4.04 MiB
Net Upgrade Size:       0.00 MiB

:: Proceed with installation? [Y/n] y
(1/1) checking keys in keyring                                      [-------------------------------------] 100%
downloading required keys...
:: Import PGP key 2048R/EAE999BD, "Allan McRae <me@allanmcrae.com>", created: 2011-06-03? [Y/n] y
(1/1) checking package integrity                                    [-------------------------------------] 100%
error: pacman: signature from "Allan McRae <me@allanmcrae.com>" is unknown trust
:: File /var/cache/pacman/pkg/pacman-4.1.2-1-x86_64.pkg.tar.xz is corrupted (invalid or corrupted package (PGP signature)).
Do you want to delete it? [Y/n] n
error: failed to commit transaction (invalid or corrupted package (PGP signature))
Errors occurred, no packages were upgraded.
$ rm /var/cache/pacman/pkg/*
$ rm /var/lib/pacman/sync/*.db
$ rm -R /etc/pacman.d/gnupg/
$ pacman-key --init
gpg: /etc/pacman.d/gnupg/trustdb.gpg: trustdb created
gpg: no ultimately trusted keys found
gpg: Generating pacman keyring master key...
gpg: key 7492B432 marked as ultimately trusted
gpg: Done
==> Updating trust database...
gpg: 3 marginal(s) needed, 1 complete(s) needed, PGP trust model
gpg: depth: 0  valid:   1  signed:   0  trust: 0-, 0q, 0n, 0m, 0f, 1u
$ pacman-key --populate archlinux
==> Appending keys from archlinux.gpg...
gpg: 3 marginal(s) needed, 1 complete(s) needed, PGP trust model
gpg: depth: 0  valid:   1  signed:   0  trust: 0-, 0q, 0n, 0m, 0f, 1u
==> Locally signing trusted keys in keyring...
  -> Locally signing key 0E8B644079F599DFC1DDC3973348882F6AC6A4C2...
  -> Locally signing key 684148BB25B49E986A4944C55184252D824B18E8...
  -> Locally signing key 44D4A033AC140143927397D47EFD567D4C7EA887...
  -> Locally signing key 27FFC4769E19F096D41D9265A04F9397CDFD6BB0...
  -> Locally signing key AB19265E5D7D20687D303246BA1DFB64FFF979E7...
==> Importing owner trust values...
gpg: inserting ownertrust of 4
gpg: setting ownertrust to 4
gpg: setting ownertrust to 4
gpg: setting ownertrust to 4
gpg: setting ownertrust to 4
==> Disabling revoked keys in keyring...
  -> Disabling key BC1FBE4D2826A0B51E47ED62E2539214C6C11350...
==> Updating trust database...
gpg: 3 marginal(s) needed, 1 complete(s) needed, PGP trust model
gpg: depth: 0  valid:   1  signed:   5  trust: 0-, 0q, 0n, 0m, 0f, 1u
gpg: depth: 1  valid:   5  signed:  65  trust: 0-, 0q, 0n, 5m, 0f, 0u
gpg: depth: 2  valid:  65  signed:   3  trust: 65-, 0q, 0n, 0m, 0f, 0u
gpg: next trustdb check due at 2014-01-22
$ pacman-key --refresh-keys
gpg: refreshing 72 keys from hkp://pool.sks-keyservers.net
gpg: requesting key 7492B432 from hkp server pool.sks-keyservers.net
gpg: requesting key FFF979E7 from hkp server pool.sks-keyservers.net
gpg: requesting key CDFD6BB0 from hkp server pool.sks-keyservers.net
gpg: requesting key 4C7EA887 from hkp server pool.sks-keyservers.net
gpg: requesting key 6AC6A4C2 from hkp server pool.sks-keyservers.net
gpg: requesting key 824B18E8 from hkp server pool.sks-keyservers.net
gpg: requesting key 31496106 from hkp server pool.sks-keyservers.net
gpg: requesting key EAE999BD from hkp server pool.sks-keyservers.net
gpg: requesting key 98BC6FF5 from hkp server pool.sks-keyservers.net
gpg: requesting key D30DB0AD from hkp server pool.sks-keyservers.net
gpg: requesting key 0F2A092B from hkp server pool.sks-keyservers.net
gpg: requesting key EC133BAD from hkp server pool.sks-keyservers.net
gpg: requesting key 5CF9C8D4 from hkp server pool.sks-keyservers.net
gpg: requesting key 0901C163 from hkp server pool.sks-keyservers.net
gpg: requesting key 00F0D0F0 from hkp server pool.sks-keyservers.net
gpg: requesting key 4CE1C13E from hkp server pool.sks-keyservers.net
gpg: requesting key 487328A9 from hkp server pool.sks-keyservers.net
gpg: requesting key B47A0DAB from hkp server pool.sks-keyservers.net
gpg: requesting key 6521E06D from hkp server pool.sks-keyservers.net
gpg: requesting key F15447D5 from hkp server pool.sks-keyservers.net
gpg: requesting key 99AD6E84 from hkp server pool.sks-keyservers.net
gpg: requesting key F53A76ED from hkp server pool.sks-keyservers.net
gpg: requesting key B4440678 from hkp server pool.sks-keyservers.net
gpg: requesting key BA06C6A9 from hkp server pool.sks-keyservers.net
gpg: requesting key 1985A992 from hkp server pool.sks-keyservers.net
gpg: requesting key 5BD5C938 from hkp server pool.sks-keyservers.net
gpg: requesting key F56C0C53 from hkp server pool.sks-keyservers.net
gpg: requesting key 4F010D48 from hkp server pool.sks-keyservers.net
gpg: requesting key 9205AC90 from hkp server pool.sks-keyservers.net
gpg: requesting key 2FA915EC from hkp server pool.sks-keyservers.net
gpg: requesting key A9999C34 from hkp server pool.sks-keyservers.net
gpg: requesting key 30D7CB92 from hkp server pool.sks-keyservers.net
gpg: requesting key F04569AE from hkp server pool.sks-keyservers.net
gpg: requesting key 215B37AD from hkp server pool.sks-keyservers.net
gpg: requesting key 4FA415FA from hkp server pool.sks-keyservers.net
gpg: requesting key 615137BC from hkp server pool.sks-keyservers.net
gpg: requesting key 796CA067 from hkp server pool.sks-keyservers.net
gpg: requesting key 3CFD4BB6 from hkp server pool.sks-keyservers.net
gpg: requesting key 7C50773E from hkp server pool.sks-keyservers.net
gpg: requesting key 3B94FA10 from hkp server pool.sks-keyservers.net
gpg: requesting key 013C2580 from hkp server pool.sks-keyservers.net
gpg: requesting key F40D2072 from hkp server pool.sks-keyservers.net
gpg: requesting key 589874AB from hkp server pool.sks-keyservers.net
gpg: requesting key 983D4366 from hkp server pool.sks-keyservers.net
gpg: requesting key D21E1A55 from hkp server pool.sks-keyservers.net
gpg: requesting key BAB142C1 from hkp server pool.sks-keyservers.net
gpg: requesting key D1CEDDAC from hkp server pool.sks-keyservers.net
gpg: requesting key 9326B440 from hkp server pool.sks-keyservers.net
gpg: requesting key DA2EE423 from hkp server pool.sks-keyservers.net
gpg: requesting key 9741E8AC from hkp server pool.sks-keyservers.net
gpg: requesting key E19DAA50 from hkp server pool.sks-keyservers.net
gpg: requesting key 2D1493D2 from hkp server pool.sks-keyservers.net
gpg: requesting key 70E80477 from hkp server pool.sks-keyservers.net
gpg: requesting key 8406FFF3 from hkp server pool.sks-keyservers.net
gpg: requesting key C0711BF1 from hkp server pool.sks-keyservers.net
gpg: requesting key 91B842AE from hkp server pool.sks-keyservers.net
gpg: requesting key 2072D77A from hkp server pool.sks-keyservers.net
gpg: requesting key F27FB7DA from hkp server pool.sks-keyservers.net
gpg: requesting key EA433FC7 from hkp server pool.sks-keyservers.net
gpg: requesting key F1D357C1 from hkp server pool.sks-keyservers.net
gpg: requesting key AB441196 from hkp server pool.sks-keyservers.net
gpg: requesting key E62EB915 from hkp server pool.sks-keyservers.net
gpg: requesting key 0C84C0A5 from hkp server pool.sks-keyservers.net
gpg: requesting key 9AF5F22A from hkp server pool.sks-keyservers.net
gpg: requesting key 8E4B1A25 from hkp server pool.sks-keyservers.net
gpg: requesting key 06361833 from hkp server pool.sks-keyservers.net
gpg: requesting key 7EDF681F from hkp server pool.sks-keyservers.net
gpg: requesting key 3C4F88BC from hkp server pool.sks-keyservers.net
gpg: requesting key 295AFBF4 from hkp server pool.sks-keyservers.net
gpg: requesting key 437520BD from hkp server pool.sks-keyservers.net
gpg: requesting key C2E5C0D2 from hkp server pool.sks-keyservers.net
gpg: requesting key C6C11350 from hkp server pool.sks-keyservers.net
gpgkeys: key E7E2694916694416C10B60471AF3391D7492B432 not found on keyserver
gpg: key FFF979E7: "Allan McRae (Arch Linux Master Key) <allan@master-key.archlinux.org>" 5 new signatures
gpg: key CDFD6BB0: "Dan McGee (Arch Linux Master Key) <dan@master-key.archlinux.org>" 2 new signatures
gpg: key 4C7EA887: "Ionut Biru (Arch Linux Master Key) <ionut@master-key.archlinux.org>" 1 new signature
gpg: key 6AC6A4C2: "Pierre Schmitz (Arch Linux Master Key) <pierre@master-key.archlinux.org>" 1 new signature
gpg: key 824B18E8: "Thomas Bächler (Arch Linux Master Key) <thomas@master-key.archlinux.org>" 1 new signature
gpg: key 31496106: "Andrzej Giniewicz (giniu) <gginiu@gmail.com>" not changed
gpg: key EAE999BD: "Allan McRae <me@allanmcrae.com>" 3 new signatures
gpg: key 98BC6FF5: "Maxime Gauduin <alucryd@gmail.com>" not changed
gpg: key D30DB0AD: "Andrea Scarpino (Arch Linux) <andrea@archlinux.org>" 16 new signatures
gpg: key 0F2A092B: "Andreas Radke <andyrtr@archlinux.org>" not changed
gpg: key EC133BAD: "Angel Velásquez <angvp@archlinux.org>" not changed
gpg: key 5CF9C8D4: "Alexander Rødseth <rodseth@gmail.com>" not changed
gpg: key 0901C163: "Balló György <ballogyor@gmail.com>" not changed
gpg: key 00F0D0F0: "Gaetan Bisson <gaetan.bisson@normalesup.org>" 99 new signatures
gpg: key 4CE1C13E: "Florian Pritz <bluewind@xinu.at>" 38 new signatures
gpg: key 487328A9: "Bartlomiej Piotrowski <b@bpiotrowski.pl>" 6 new signatures
gpg: key B47A0DAB: "Connor Behan <connor.behan@gmail.com>" not changed
gpg: key 6521E06D: "Christopher Brannon <chris@the-brannons.com>" 1 new signature
gpg: key F15447D5: "Federico Cinelli <cinelli@aur.archlinux.org>" 3 new signatures
gpg: key 99AD6E84: "Gavin Marciniak-Bisesi <Daenyth@gmail.com>" 4 new signatures
gpg: key F53A76ED: "Dan McGee <dpmcgee@gmail.com>" 11 new signatures
gpg: key B4440678: "Daniel Isenmann <daniel@archlinux.org>" not changed
gpg: key BA06C6A9: "Dicebot <public@dicebot.lv>" not changed
gpg: key 1985A992: "Dieter Plaetinck <dieter@plaetinck.be>" not changed
gpg: key 5BD5C938: "Gerardo Exequiel Pozzi <vmlinuz386@yahoo.com.ar>" not changed
gpg: key F56C0C53: "Dave Reisner <d@falconindy.com>" not changed
gpg: key 4F010D48: "Daniel Wallace <danielwallace@gtmanfred.com>" 4 new signatures
gpg: key 9205AC90: "Eric Belanger <eric@archlinux.org>" not changed
gpg: key 2FA915EC: "Alexandre Filgueira <alexfilgueira@cinnarch.com>" not changed
gpg: key A9999C34: "Evangelos Foutras <evangelos@foutrelis.com>" 8 new signatures
gpg: key 30D7CB92: "Felix Yan <felixonmars@gmail.com>" 4 new signatures
gpg: key F04569AE: "Giovanni Scafora <giovanni@archlinux.org>" 10 new signatures
gpg: key 215B37AD: "Guillaume ALAUX <guillaume@archlinux.org>" 177 new signatures
gpg: key 4FA415FA: "Jan Alexander Steffens (heftig) <jan.steffens@gmail.com>" 9 new signatures
gpg: key 615137BC: "Ionut Biru <ibiru@archlinux.org>" 5 new signatures
gpg: key 796CA067: "Ike Devolder <ike.devolder@gmail.com>" not changed
gpg: key 3CFD4BB6: "Jonathan Conder <jonno.conder@gmail.com>" not changed
gpg: key 7C50773E: "Jelle van der Waa <jelle@vdwaa.nl>" not changed
gpg: key 3B94FA10: "Jan de Groot <jgc@archlinux.org>" not changed
gpg: key 013C2580: "Jaroslav Lichtblau (trusted user) <dragonlord@aur.archlinux.org>" not changed
gpg: key F40D2072: "Jonathan Steel <mail@jsteel.org>" not changed
gpg: key 589874AB: "Jürgen Hötzel <juergen@hoetzel.info>" 1 new signature
gpg: key 983D4366: "Justin Davis (juster) <jrcd83@gmail.com>" 1 new signature
gpg: key D21E1A55: "Kaiting Chen <kaitocracy@gmail.com>" not changed
gpg: key BAB142C1: "Kyle Keen <keenerd@gmail.com>" not changed
gpg: key D1CEDDAC: "Laurent Carlier <lordheavym@gmail.com>" not changed
gpg: key 9326B440: "Lukas Fleischer <info@cryptocrack.de>" not changed
gpg: key DA2EE423: "Massimiliano Torromeo (Personal non-work identity) <massimiliano.torromeo@gmail.com>" not changed
gpg: key 9741E8AC: "Pierre Schmitz <pierre@archlinux.de>" 6 new signatures
gpg: key E19DAA50: "Peter Richard Lewis <pete@muddygoat.org>" 133 new signatures
gpg: key 2D1493D2: "Rémy Oudompheng <remy@archlinux.org>" 10 new signatures
gpg: key 70E80477: "Роман Кирилич (Roman Kyrylych) <roman@archlinux.org>" not changed
gpg: key 8406FFF3: "Ronald van Haren <ronald@archlinux.org>" not changed
gpg: key C0711BF1: "Rashif Rahman (Ray) <schiv@archlinux.org>" not changed
gpg: key 91B842AE: "Jakob Gruber <jakob.gruber@gmail.com>" not changed
gpg: key 2072D77A: "Sébastien Luttringer <seblu@seblu.net>" 13 new signatures
gpg: key F27FB7DA: "speps <speps@aur.archlinux.org>" 2 new signatures
gpg: key EA433FC7: "Sergej Pupykin <arch@sergej.pp.ru>" not changed
gpg: key F1D357C1: "Lukas Jirkovsky <l.jirkovsky@gmail.com>" not changed
gpg: key AB441196: "Stéphane Gaudreault <stephane@archlinux.org>" not changed
gpg: key E62EB915: "Sven-Hendrik Haase <sh@lutzhaase.com>" not changed
gpg: key 0C84C0A5: "Thomas Dziedzic <gostrc@gmail.com>" not changed
gpg: key 9AF5F22A: "Daniel Micay <danielmicay@gmail.com>" not changed
gpg: key 8E4B1A25: "Thomas Bächler <thomas@archlinux.org>" 4 new signatures
gpg: key 06361833: "Tom Gundersen <teg@jklm.no>" 2 new signatures
gpg: key 7EDF681F: "Tobias Powalowski <tobias.powalowski@googlemail.com>" 5 new signatures
gpg: key 3C4F88BC: "Timothy Redaelli <tredaelli@archlinux.info>" not changed
gpg: key 295AFBF4: "Thorsten Töpper <atsutane@freethoughts.de>" 120 new signatures
gpg: key 437520BD: "Vesa Kaihlavirta <vegai@iki.fi>" not changed
gpg: key C2E5C0D2: "Xyne. <xyne@archlinux.ca>" not changed
gpg: key C6C11350: "Federico Cinelli <cinelli.federico@gmail.com>" 4 new signatures
gpg: Total number processed: 71
gpg:              unchanged: 38
gpg:         new signatures: 709
gpg: 3 marginal(s) needed, 1 complete(s) needed, PGP trust model
gpg: depth: 0  valid:   1  signed:   5  trust: 0-, 0q, 0n, 0m, 0f, 1u
gpg: depth: 1  valid:   5  signed:  65  trust: 0-, 0q, 0n, 5m, 0f, 0u
gpg: depth: 2  valid:  65  signed:   3  trust: 65-, 0q, 0n, 0m, 0f, 0u
gpg: next trustdb check due at 2014-01-22
$ pacman -Syyu
:: Synchronising package databases...
 core                                      104.4 KiB   797K/s 00:00 [-------------------------------------] 100%
 extra                                    1448.5 KiB  1186K/s 00:01 [-------------------------------------] 100%
 community                                2025.9 KiB  1315K/s 00:02 [-------------------------------------] 100%
 multilib                                  106.6 KiB   833K/s 00:00 [-------------------------------------] 100%
:: Starting full system upgrade...
:: Replace aircrack-ng-scripts with community/aircrack-ng? [Y/n] y
resolving dependencies...
looking for inter-conflicts...

Packages (11): aircrack-ng-1.1-10  aircrack-ng-scripts-1.1-9 [removal]  chromaprint-1.0-1  curl-7.32.0-2
               ibus-anthy-1.5.4-1  kdebase-runtime-4.11.0-2  mercurial-2.7.1-1  python-pymongo-2.6.2-1
               python2-pymongo-2.6.2-1  xpdf-3.03-4  youtube-dl-2013.09.07-1

Total Download Size:    13.34 MiB
Total Installed Size:   50.99 MiB
Net Upgrade Size:       7.55 MiB

:: Proceed with installation? [Y/n] y
:: Retrieving packages ...
 curl-7.32.0-2-x86_64                      523.8 KiB   833K/s 00:01 [-------------------------------------] 100%
 chromaprint-1.0-1-x86_64                   34.9 KiB  3.10M/s 00:00 [-------------------------------------] 100%
 kdebase-runtime-4.11.0-2-x86_64             8.6 MiB  1791K/s 00:05 [-------------------------------------] 100%
 mercurial-2.7.1-1-x86_64                    2.1 MiB  1530K/s 00:01 [-------------------------------------] 100%
 xpdf-3.03-4-x86_64                        464.4 KiB  2.67M/s 00:00 [-------------------------------------] 100%
 aircrack-ng-1.1-10-x86_64                 297.5 KiB  2.72M/s 00:00 [-------------------------------------] 100%
 ibus-anthy-1.5.4-1-x86_64                 757.8 KiB  1069K/s 00:01 [-------------------------------------] 100%
 python-pymongo-2.6.2-1-x86_64             191.9 KiB  2.11M/s 00:00 [-------------------------------------] 100%
 python2-pymongo-2.6.2-1-x86_64            188.0 KiB  2.16M/s 00:00 [-------------------------------------] 100%
 youtube-dl-2013.09.07-1-any               257.3 KiB  2.11M/s 00:00 [-------------------------------------] 100%
(10/10) checking keys in keyring                                    [-------------------------------------] 100%
(10/10) checking package integrity                                  [-------------------------------------] 100%
(10/10) loading package files                                       [-------------------------------------] 100%
(10/10) checking for file conflicts                                 [-------------------------------------] 100%
(11/11) checking available disk space                               [-------------------------------------] 100%
(1/1) removing aircrack-ng-scripts                                  [-------------------------------------] 100%
( 1/10) upgrading aircrack-ng                                       [-------------------------------------] 100%
( 2/10) upgrading chromaprint                                       [-------------------------------------] 100%
( 3/10) upgrading curl                                              [-------------------------------------] 100%
( 4/10) upgrading ibus-anthy                                        [-------------------------------------] 100%
( 5/10) upgrading kdebase-runtime                                   [-------------------------------------] 100%
( 6/10) upgrading mercurial                                         [-------------------------------------] 100%
( 7/10) upgrading python-pymongo                                    [-------------------------------------] 100%
( 8/10) upgrading python2-pymongo                                   [-------------------------------------] 100%
( 9/10) upgrading xpdf                                              [-------------------------------------] 100%
(10/10) upgrading youtube-dl                                        [-------------------------------------] 100%

Offline

#23 2013-09-10 05:06:26

Xi0N
Member
From: Bilbao - Spain
Registered: 2007-11-29
Posts: 832
Website

Re: [SOLVED] Problem with CRC checks in general + other

rufus wrote:

try ntpd -q and then hwclock -w    dual booting with windblows causes time issues as said OS gets piggish with time and the hwclock....


This seems to have worked...... how to prevent it from happenning ever again?

Btw... I don't dual boot

Thanks

Offline

#24 2013-09-10 05:42:03

WonderWoofy
Member
From: Los Gatos, CA
Registered: 2012-05-19
Posts: 8,414

Re: [SOLVED] Problem with CRC checks in general + other

Do you use some kind of network time daemon?  The two popular ones are nptd and chrony.  I find that I actually like ntp better, though that is entirely personal preference.  I guess at one time, ntpd did not handle changes in connectivity very well, and thus chrony was preferred for machines where the internet might be only sometimes available (and for slow connections like dial-up).  But these days nptd seems to do just fine.  If it searches tries to sync the time and the network is down, it simply reports an error message to the journal saying that the host cannot be reached.

I know others like to set up some alternative method of running ntpd -q from time to time.  But I find the supplied daemon/service works just fine.

For a nice overview of the time status on your machine, you can use timedatectl.

Offline

#25 2013-09-13 20:18:56

Xi0N
Member
From: Bilbao - Spain
Registered: 2007-11-29
Posts: 832
Website

Re: [SOLVED] Problem with CRC checks in general + other

I use ntpd, but enabling an disabling it does nothing.... stil the same issues.... I really don't know what else to try,,,, I love arch but lately this has been hell for me.

timedatectl reports the time perfectly, accurately .

I'll check error logs....
BTW, I have some strange issue with kde suddenly logging out and complaining about dbus communication failed. I hope it's al reated and when the issue is found, it fixes all.

Offline

Board footer

Powered by FluxBB