[UNSOLVABLE] pacman-mirrorlist issues

I am installing Arch on a different box, using the same disk that I used to install this one. When I got to pacman and the mirrorlist, I found that there was no mirrorlist, and pacman.conf was incomplete :? I have copied all of the pertinent information from the /etc/pacman.conf from my present box to the new one, and I have created an /etc/pacman.d/mirrorlist by copying all of the information in my present mirrorlist (on this box).
When I try to synchronize the databases,  I get
pacman -Syy
:: Sychronizing package dabases ...
error: failed retrieving file "core.db.tar.gz' from archlinux.umflint.edu : Not Found
error: failed to sychronize core: Not Found
I get the same exact messages for extra and community. I have tried this with gatech, ibiblio, and several other repos, and it's all the same.I get the exact same messages with "pacman -Syu"
error: failed to synchronize any databases
I have tried this:
rm /usr/lib/klibc/include/asm
from this thread, because I saw a reference to that on Hardcore Linux website when I googled this error, http://bbs.archlinux.org/viewtopic.php?id=56431 and it made no difference at all.
And this (from an Arch Bug Report)
pacman --root /mnt --config /tmp/pacman.conf -Sy # update the target system
pacman -Sy # update the live system
http://bugs.archlinux.org/task/13060 but bash doesn't recognize the option '--root/mnt'
I have searched the Arch wiki, and the Arch forums, and I have not found a similar problem of having to manually build a pacman.conf and a mirrorlist. I don't intend to just give up and re-install, there must be a better way . If some brainiac can figure out what else I haven't thought of, I'll try that next .
I'm still looking and googling, by the way, I figure if I can invest the past two days in this, I can invest a few more.
Last edited by jackrat (2009-02-15 09:12:11)

toofishes wrote:wget ftp://ftp.archlinux.org/core/os/i686/pa … pkg.tar.gz
Been there, done that, didn't help,  I copied and pasted that exact one ...... Thanks .... I'm reinstalling to see if my cd is bad, if it is, I'll have to burn a new one. Thanks for your reply

Similar Messages

  • Pachorizon - Sort your pacman mirrorlist by distance

    I'm behind a stupid firewall, and can't use ping, so can't use tools like rankmirrors.  So I wrote a python script for sorting mirrors with nearest countries.
    Usage:
    Usage: pachorizon.py <country> <mirrorlist>
    pachorizon.py list
    pachorizon.py help
    Example: pachorizon.py "Great Britain" /etc/pacman.d/mirrorlist
    Example output:
    $ ./pachorizon.py "Great Britain" /etc/pacman.d/mirrorlist
    ## Pacman mirrorlist generated for Great Britain
    ## Great Britain
    # Server = http://mirror.lividpenguin.com/pub/archlinux/$repo/os/$arch
    # Server = http://mirror.cinosure.com/archlinux/$repo/os/$arch
    # Server = http://archlinux.mirrors.uk2.net/$repo/os/$arch
    ## Ireland
    # Server = http://ftp.heanet.ie/mirrors/ftp.archlinux.org/$repo/os/$arch
    ## Netherlands
    # Server = http://mirror.nl.leaseweb.net/archlinux/$repo/os/$arch
    # Server = http://ftp.nluug.nl/pub/os/Linux/distr/archlinux/$repo/os/$arch
    ## Belgium
    # Server = http://archlinux.mirror.kangaroot.net/$repo/os/$arch
    ## Luxembourg
    # Server = http://archlinux.mirror.root.lu/$repo/os/$arch
    Script:
    #!/usr/bin/env python3
    import sys
    import math
    import functools
    import collections
    coords= {'Australia': (-27.0, 133.0),
    'Belarus': (53.0, 28.0),
    'Belgium': (50.5, 4.0),
    'Brazil': (-10.0, -55.0),
    'Canada': (60.0, -95.0),
    'Chile': (-30.0, -71.0),
    'China': (35.0, 105.0),
    'Colombia': (4.0, -72.0),
    'Czech Republic': (49.45, 15.3),
    'Denmark': (56.0, 10.0),
    'Estonia': (59.0, 26.0),
    'Finland': (64.0, 26.0),
    'France': (46.0, 2.0),
    'Germany': (51.0, 9.0),
    'Great Britain': (54.0, -2.0),
    'Greece': (39.0, 22.0),
    'Hungary': (47.0, 20.0),
    'India': (20.0, 77.0),
    'Indonesia': (-5.0, 120.0),
    'Ireland': (53.0, -8.0),
    'Israel': (31.3, 34.45),
    'Italy': (42.5, 12.5),
    'Japan': (36.0, 138.0),
    'Kazakhstan': (48.0, 68.0),
    'Korea': (40.0, 127.0),
    'Latvia': (57.0, 25.0),
    'Luxembourg': (49.45, 6.1),
    'Moldova': (47.0, 29.0),
    'Netherlands': (52.3, 5.45),
    'New Caledonia': (-21.3, 165.3),
    'Norway': (62.0, 10.0),
    'Poland': (52.0, 20.0),
    'Portugal': (39.3, -8.0),
    'Romania': (46.0, 25.0),
    'Russia': (60.0, 100.0),
    'Singapore': (1.22, 103.48),
    'South Korea': (40.0, 127.0),
    'Spain': (40.0, -4.0),
    'Sweden': (62.0, 15.0),
    'Switzerland': (47.0, 8.0),
    'Taiwan': (23.3, 121.0),
    'Turkey': (39.0, 35.0),
    'USA': (38.0, -97.0),
    'Ukraine': (49.0, 32.0),
    'United States': (38.0, -97.0),
    'Uzbekistan': (41.0, 64.0)}
    def distance_between_coords(coord1, coord2):
    """Recipe From:
    http://www.johndcook.com/python_longitude_latitude.html"""
    lat1, long1 = coord1
    lat2, long2 = coord2
    # Convert latitude and longitude to
    # spherical coordinates in radians.
    degrees_to_radians = math.pi/180.0
    # phi = 90 - latitude
    phi1 = (90.0 - lat1)*degrees_to_radians
    phi2 = (90.0 - lat2)*degrees_to_radians
    # theta = longitude
    theta1 = long1*degrees_to_radians
    theta2 = long2*degrees_to_radians
    # Compute spherical distance from spherical coordinates.
    # For two locations in spherical coordinates
    # (1, theta, phi) and (1, theta, phi)
    # cosine( arc length ) =
    # sin phi sin phi' cos(theta-theta') + cos phi cos phi'
    # distance = rho * arc length
    cos = (math.sin(phi1)*math.sin(phi2)*math.cos(theta1 - theta2) +
    math.cos(phi1)*math.cos(phi2))
    arc = math.acos( cos )
    return arc * 6373 #for kilometers
    def distance_between_countries(c1, c2):
    return distance_between_coords(coords[c1], coords[c2])
    my_location = sys.argv[1]
    if my_location == "help":
    print("Usage: pachorizon.py <country> <mirrorlist>")
    print(" pachorizon.py list")
    print(" pachorizon.py help")
    print("Example: pachorizon.py \"Great Britain\" /etc/pacman.d/mirrorlist")
    exit()
    elif my_location == "list":
    print("Possible countries:" )
    print(", ".join(c for c in coords.keys()))
    exit()
    mirrorlist = open(sys.argv[2]).readlines()
    urls = [("Any", [])]
    for line in mirrorlist:
    line = line.strip("# \n")
    if line in coords.keys():
    urls.append((line, []))
    elif line.startswith("Server ="):
    urls[-1][-1].append(line.split("Server =", 1)[1].strip())
    locationless, *urls = urls
    get_distance = functools.partial(distance_between_countries, my_location)
    sorted_urls = collections.OrderedDict(sorted(
    urls,
    key = lambda i: get_distance(i[0]),
    sorted_urls["Any"] = locationless[1]
    sorted_urls.move_to_end("Any", last=False)
    print("## Pacman mirrorlist generated for " + my_location + "\n")
    for country, servers in sorted_urls.items():
    if not servers:
    continue
    print("## " + country)
    for server in servers:
    print("# Server = " + server)
    print()
    I hope you like it .

    The wiki has https://wiki.archlinux.org/index.php/Mi … _Generator Maybe you can enhance that script?
    If you're not sure if the outcome is correct, post it on the wiki talk page first.

  • (SOLVED) Pacman mirrorlist & DB Sync issue.

    Hi, I messed with HDD through BSD and my HDD was wiped clean!(grr) anyways I reinstalled Arch with 2009.08 iso image. I've setup connections and enabled repos and updated mirrorlist. I can ping google and browse it through links. System behaves normally. But when I try to install/search ANY package, it says not found in SyncDB.
    I've double checked the package names and also tried pacman -Syy, but still no joy
    It says core,extra & community are up to date, but stilll wont find kde, apache, alsa-utils etc.. I have not modified pacman.conf in any way. Help!
    Last edited by kapz (2009-12-16 20:58:55)

    Most likely, your mirror is out of synch. Look into your mirrorlist and determine the first enabled mirror from top of the file, then check against
    https://users.archlinux.de/~gerbra/mirrorcheck.html
    Pacman will pick the first mirror out of your list as long as it is reachable and if the mirror is out of synch, you won't get any updates.

  • Pacman alpm issue, vercmd missing, after rescue from install CD

    Hi
    I wanted to remove all packages from my system and reinstall from scratch
    So i used the pacman tip from the wiki to reinstall all packages on the system
    but changed it to remove instead -R instead of -S, little did i think ...
    everything on the system was removed, except running processes.
    i had no ls etc, no pacman and so on.
    So i created a arch cd from another computer and booted on it on my arch install computer.
    then i was advised on the archlinux irc. todo a chroot mount and  use pacman to install base-devel (+ base)
    Hence i did that, ... after a long long while i succeed.
    i first got chroot /mnt  no /bin/bash mesage when trying to start the chroot.
    So i copied the files shown via: ldd /bin/bash & ldd /usr/bin/pacman
    then i mount:
    mount /dev/sda1 /mnt/
    mount /dev/sda5 /mnt/boot
    mount /dev/sda6 /mnt/usr/
    mount /dev/sda7 /mnt/var/
    (i didnt mount /home).
    then
    $ chroot /mnt
    From here i use pacman to install packages
    pacman -S base-devel  - runs fine.
    pacman -S base           - i miss one package file (dcrond - i think)
    Then instead i go the the very fine wiki again, and see how to install all local packages.
    and use that.
    However now i get messages under the pacman install of the type .
    /tmp/alpm_QWYZ/.INSTALL: line xyz: vercmp: command not found.
    ------------- || -------------------------: line xyz: [: : integer expression expected
    I can't find out where this message comes from, i can find no vercmp comand
    (maybe a shell function?)
    I get lots of other similar errors.
    ============================
    At last there are al those /etc files which got .pacsave endings, should i think about them?
    Here some more errors from a "pacman -S base" via the arch CD and chroot
    find: /sys/devices no such file or directory
    Which: no /pcmcia-socket-startup.staic in (/sbin)
    ERROR: '/sbin/pcmcia-socket-startup.static' is not a file
    + some related files /sbin/pcmcia-**
    ============================
    If i reboot and enter my system on its harddisk instead of via the CD.
    I get SH:   not able to change group (-1) : inappropiate ioctl for device.
    This error message is by memory, since i just borked something else.
    and couldnt load system on harddisk, somehow the kernel has misplaced itself...
    ============================
    Ok more information:
    I succeded in booting via hardisk, and it looked very promising.
    However ...
    Console messages:
    device-mapper: ioctl: 4:15.0-ioctl .....
    Waiting 10 seconds for device ...
    :: running hook [resume]
    Waiting 10 seconds for device ...
    Root device ´´ doesnt exist, attempting to create it
    ERROR: failed to parse block device ids for ´´
    ERROR: unable to detect or create root device
    .. some general info stuff
    You are being dropped to a recovery console
    regards mic
    Last edited by cognacc (2009-10-19 17:42:18)

    Thanks John, Bill and Graffiti for your interest!
    The original install, many years ago, was of an education version from a local college. As updates became available thorough the update manager, they were installed. As stated above, it updated though 6.0 to 6.6, and then on to 7, eventually to 7.1! I can only repeat what happened, but not explain it. I thought nothing of it at the time, as it was all being managed by the update manager. I agree that this last seems to be more an upgrade than an update, but... what can I say? What happened is what happened, and it happened as I described it.
    But not's get hung up on the history! Now that I seem to have solved the original issue of not getting past the message that 'a more functional version has been detected', how does one solve the 'invalid serial number' issue that occurs when attempting to reinstall 6.0? Delete the Acrobat registry keys from HKLM and HKCU, and possibly anywhere else? The former didn't work yet, so, where else? Maybe there is an 'update' folder hanging around somewhere with a registry reference that needs to be deactivated?  Something like {AC76BA86-0000-0000-7AC5-6028747ADE00}?
    Any further thoughts? And thanks for the input, it really is appreciated!

  • Pacman mirrorlist

    Hi,
    I've a problem with pacman, it failed retrieving file from any mirror... first I had ftp://archlinux.puzzle.ch but once it doesn't work anymore, so I tried other mirrors in the mirrorlist sorted with rankmirrors. But with any mirror I've tested I received "error:failed retrieving file ''from core..... error:failed retrieving any db" when I try pacman -Syu or any pacman -S ...
    What should I try to do?
    Thanks for your help,
    Sylvain
    p.s here are copy of my pacman.conf and pacman.d/mirrorlist files:
    # /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
    HoldPkg     = pacman glibc
    # If upgrades are available for these packages they will be asked for first
    SyncFirst   = pacman
    #XferCommand = /usr/bin/wget --passive-ftp -c -O %o %u
    #XferCommand = /usr/bin/curl %u > %o
    #CleanMethod = KeepInstalled
    # Pacman won't upgrade packages listed in IgnorePkg and members of IgnoreGroup
    #IgnorePkg   =
    #IgnoreGroup =
    #NoUpgrade   =
    #NoExtract   =
    # Misc options (all disabled by default)
    #UseSyslog
    #ShowSize
    #UseDelta
    #TotalDownload
    # 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
    # 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]
    ## Add your preferred servers here, they will be used first
    #Include = /etc/pacman.d/mirrorlist
    [core]
    # Add your preferred servers here, they will be used first
    #Server=ftp://mir1.archlinuxfr.org/archlinux
    Include = /etc/pacman.d/mirrorlist
    [extra]
    # Add your preferred servers here, they will be used first
    #Server=ftp://ftp.hosterope.de/mirror/ftp.archlinux.org/core/os/i686
    Include = /etc/pacman.d/mirrorlist
    #[community-testing]
    ## Add your preferred servers here, they will be used first
    #Include = /etc/pacman.d/mirrorlist
    [community]
    # Add your preferred servers here, they will be used first
    #Server=ftp://ftp.hosterope.de/mirror/ftp.archlinux.org/core/os/i686
    Include = /etc/pacman.d/mirrorlist
    # An example of a custom package repository.  See the pacman manpage for
    # tips on creating your own repositories.
    #[custom]
    #Server = file:///home/custompkgs
    # Server list generated by rankmirrors on 2009-10-27
    # Arch Linux repository mirrorlist
    # Generated on 2009-06-16
    # Australia
    #Server = ftp://mirror.aarnet.edu.au/pub/archlinu … os/@carch@
    #Server = http://mirror.aarnet.edu.au/pub/archlin … os/@carch@
    #Server = ftp://ftp.iinet.net.au/pub/archlinux/$repo/os/@carch@
    #Server = http://ftp.iinet.net.au/pub/archlinux/$repo/os/@carch@
    #Server = ftp://mirror.internode.on.net/pub/archl … os/@carch@
    #Server = http://mirror.internode.on.net/pub/arch … os/@carch@
    #Server = ftp://mirror.pacific.net.au/linux/archl … os/@carch@
    #Server = http://mirror.pacific.net.au/linux/arch … os/@carch@
    # Austria
    #Server = ftp://gd.tuwien.ac.at/opsys/linux/archl … os/@carch@
    #Server = http://gd.tuwien.ac.at/opsys/linux/arch … os/@carch@
    # Belgium
    #Server = ftp://ftp.belnet.be/packages/archlinux/$repo/os/@carch@
    #Server = http://ftp.belnet.be/mirror/archlinux.o … os/@carch@
    # Brazil
    #Server = ftp://archlinux.c3sl.ufpr.br/archlinux/$repo/os/@carch@
    #Server = http://archlinux.c3sl.ufpr.br/$repo/os/@carch@
    #Server = ftp://ftp.las.ic.unicamp.br/pub/archlin … os/@carch@
    #Server = http://www.las.ic.unicamp.br/pub/archli … os/@carch@
    #Server = http://pet.inf.ufsc.br/mirrors/archlinu … os/@carch@
    # Bulgaria
    #Server = http://archlinux.igor.onlinedirect.bg/$repo/os/@carch@
    # Canada
    #Server = ftp://mirror.csclub.uwaterloo.ca/archli … os/@carch@
    #Server = http://mirror.csclub.uwaterloo.ca/archl … os/@carch@
    #Server = ftp://mirrors.portafixe.com/archlinux/$repo/os/@carch@
    #Server = http://mirrors.portafixe.com/archlinux/$repo/os/@carch@
    # Chile
    #Server = ftp://mirror.archlinux.cl/$repo/os/@carch@
    # Czech Republic
    #Server = ftp://ftp.sh.cvut.cz/MIRRORS/arch/$repo/os/@carch@
    #Server = http://ftp.sh.cvut.cz/MIRRORS/arch/$repo/os/@carch@
    # Denmark
    #Server = ftp://ftp.klid.dk/archlinux/$repo/os/@carch@
    # Estonia
    #Server = ftp://ftp.estpak.ee/pub/archlinux/$repo/os/@carch@
    #Server = http://ftp.estpak.ee/pub/archlinux/$repo/os/@carch@
    # Finland
    #Server = ftp://mirror.archlinux.fi/$repo/os/@carch@
    #Server = http://mirror.archlinux.fi/$repo/os/@carch@
    # France
    # Germany
    # Great Britain
    #Server = ftp://mirror.lividpenguin.com/pub/archl … os/@carch@
    #Server = http://mirror.lividpenguin.com/pub/arch … os/@carch@
    #Server = http://www.mirrorservice.org/sites/ftp. … os/@carch@
    #Server = ftp://mirrors.uk2.net/pub/archlinux/$repo/os/@carch@
    #Server = http://archlinux.mirrors.uk2.net/$repo/os/@carch@
    # Greece
    #Server = ftp://ftp.ntua.gr/pub/linux/archlinux/$repo/os/@carch@
    #Server = http://ftp.ntua.gr/pub/linux/archlinux/$repo/os/@carch@
    #Server = ftp://ftp.otenet.gr/pub/linux/archlinux … os/@carch@
    #Server = http://ftp.otenet.gr/linux/archlinux/$repo/os/@carch@
    # Hungary
    #Server = ftp://ftp.mfa.kfki.hu/pub/mirrors/ftp.a … os/@carch@
    # Indonesia
    #Server = ftp://archlinux.cbn.net.id/pub/archlinu … os/@carch@
    #Server = http://archlinux.cbn.net.id/$repo/os/@carch@
    #Server = ftp://mirror.unej.ac.id/archlinux/$repo/os/@carch@
    #Server = http://mirror.unej.ac.id/archlinux/$repo/os/@carch@
    # Ireland
    #Server = ftp://ftp.heanet.ie/mirrors/ftp.archlin … os/@carch@
    #Server = http://ftp.heanet.ie/mirrors/ftp.archli … os/@carch@
    # Israel
    #Server = http://mirror.isoc.org.il/pub/archlinux … os/@carch@
    # Italy
    #Server = ftp://mi.mirror.garr.it/mirrors/archlin … os/@carch@
    #Server = http://mi.mirror.garr.it/mirrors/archli … os/@carch@
    # Japan
    #Server = ftp://ftp.yz.yamagata-u.ac.jp/pub/linux … os/@carch@
    #Server = http://ftp.yz.yamagata-u.ac.jp/pub/linu … os/@carch@
    # Latvia
    #Server = http://archlinux.goodsoft.lv/$repo/os/@carch@
    # Lithuania
    #Server = ftp://atviras.lt/archmirror/$repo/os/@carch@
    #Server = http://atviras.lt/archmirror/$repo/os/@carch@
    # Netherlands
    #Server = ftp://mirror.leaseweb.com/archlinux/$repo/os/@carch@
    #Server = http://mirror.leaseweb.com/archlinux/$repo/os/@carch@
    #Server = ftp://ftp.nluug.nl/pub/metalab/distribu … os/@carch@
    #Server = http://ftp.nluug.nl/pub/metalab/distrib … os/@carch@
    #Server = ftp://ftp.surfnet.nl/pub/os/Linux/distr … os/@carch@
    #Server = http://ftp.surfnet.nl/pub/os/Linux/dist … os/@carch@
    # New Caledonia
    #Server = ftp://archlinux.nautile.nc/archlinux/$repo/os/@carch@
    #Server = http://archlinux.nautile.nc/archlinux/$repo/os/@carch@
    # Norway
    #Server = ftp://mirror.archlinux.no/$repo/os/@carch@
    #Server = http://mirror.archlinux.no/$repo/os/@carch@
    # Poland
    #Server = ftp://mirror.icis.pcz.pl/archlinux/$repo/os/@carch@
    #Server = ftp://ftp.piotrkosoft.net/pub/mirrors/f … os/@carch@
    #Server = http://piotrkosoft.net/pub/mirrors/ftp. … os/@carch@
    #Server = ftp://ftp.pwsz.elblag.pl/pub/linux/dist … os/@carch@
    #Server = http://ftp.pwsz.elblag.pl/pub/linux/dis … os/@carch@
    #Server = http://unix.net.pl/archlinux.org/$repo/os/@carch@
    # Portugal
    #Server = ftp://cesium.di.uminho.pt/pub/archlinux … os/@carch@
    #Server = http://cesium.di.uminho.pt/pub/archlinu … os/@carch@
    #Server = http://darkstar.ist.utl.pt/archlinux/$repo/os/@carch@
    #Server = ftp://ftp.nux.ipb.pt/pub/dists/archlinu … os/@carch@
    #Server = http://ftp.nux.ipb.pt/pub/dists/archlin … os/@carch@
    # Romania
    #Server = ftp://ftp.iasi.roedu.net/mirrors/archli … os/@carch@
    #Server = http://ftp.iasi.roedu.net/mirrors/archl … os/@carch@
    # Russia
    #Server = http://archlinux.freeside.ru/$repo/os/@carch@
    #Server = ftp://mirror.svk.su/archlinux/$repo/os/@carch@
    #Server = http://mirror.svk.su/archlinux/$repo/os/@carch@
    #Server = ftp://mirror.yandex.ru/archlinux/$repo/os/@carch@
    #Server = http://mirror.yandex.ru/archlinux/$repo/os/@carch@
    # Sweden
    #Server = ftp://ftp.ds.hj.se/pub/os/linux/archlin … os/@carch@
    #Server = http://ftp.ds.hj.se/pub/os/linux/archli … os/@carch@
    #Server = ftp://ftp.gigabit.nu/$repo/os/@carch@
    #Server = http://ftp.gigabit.nu/$repo/os/@carch@
    # Switzerland
    # Turkey
    #Server = ftp://ftp.linux.org.tr/archlinux/$repo/os/@carch@
    # Ukraine
    #Server = ftp://archlinux.hell.org.ua/archlinux/$repo/os/@carch@
    #Server = http://archlinux.hell.org.ua/archlinux/$repo/os/@carch@
    #Server = ftp://ftp.linux.kiev.ua/pub/Linux/ArchL … os/@carch@
    #Server = http://ftp.linux.kiev.ua/pub/Linux/Arch … os/@carch@
    # United States
    #Server = http://mirror.archlinux.com.ve/$repo/os/@carch@
    #Server = http://archlinux.unixheads.org/$repo/os/@carch@
    #Server = ftp://mirror.cs.vt.edu/pub/ArchLinux/$repo/os/@carch@
    #Server = http://mirror.cs.vt.edu/pub/ArchLinux/$repo/os/@carch@
    #Server = ftp://mirrors.easynews.com/linux/archli … os/@carch@
    #Server = http://mirrors.easynews.com/linux/archl … os/@carch@
    #Server = ftp://ftp.archlinux.org/$repo/os/@carch@
    #Server = http://mirrors.gigenet.com/archlinux/$repo/os/@carch@
    #Server = ftp://ftp.gtlib.gatech.edu/pub/linux/di … os/@carch@
    #Server = http://www.gtlib.gatech.edu/pub/linux/d … os/@carch@
    #Server = ftp://mirrors.hosef.org/archlinux/$repo/os/@carch@
    #Server = http://mirrors.hosef.org/archlinux/$repo/os/@carch@
    #Server = ftp://ibiblio.org/pub/linux/distributio … os/@carch@
    #Server = http://distro.ibiblio.org/pub/linux/dis … os/@carch@
    #Server = ftp://locke.suu.edu/linux/dist/archlinu … os/@carch@
    #Server = ftp://mirror.rit.edu/archlinux/$repo/os/@carch@
    #Server = http://mirror.rit.edu/archlinux/$repo/os/@carch@
    #Server = http://schlunix.org/archlinux/$repo/os/@carch@
    #Server = http://mirror.sourceshare.org/archlinux … os/@carch@
    #Server = http://archlinux.umflint.edu/$repo/os/@carch@
    #Server = http://mirror.umoss.org/archlinux/$repo/os/@carch@
    # Venezuela
    #Server = http://mirror2.archlinux.com.ve/$repo/os/@carch@
    # Vietnam
    #Server = ftp://202.78.230.5/archlinux/$repo/os/@carch@
    #Server = ftp://ftp.indochinalinux.com/archlinux/$repo/os/@carch@
    #Server = ftp://mirror-fpt-telecom.fpt.net/archli … os/@carch@
    #Server = http://mirror-fpt-telecom.fpt.net/archl … os/@carch@
    Server = ftp://ftp-stud.hs-esslingen.de/pub/Mirr … os/@carch@
    Server = ftp://ftp5.gwdg.de/pub/linux/archlinux/$repo/os/@carch@
    Server = http://mir1.archlinuxfr.org/archlinux/$repo/os/@carch@
    Server = ftp://ftp.tu-chemnitz.de/pub/linux/arch … os/@carch@
    Server = ftp://mir1.archlinuxfr.org/archlinux/$repo/os/@carch@
    Last edited by alphamunin (2009-10-27 16:33:24)

    Did you do
    pacman -Syy
    after you changed mirrors? As explained in the Beginner's Guide, this is necessary after changing mirrors in order for pacman to synch all databases.
    Additionally, your mirrorlist looks strange. My mirrors look as follows:
    Server = ftp://ftp.wh-stuttgart.net/archlinux/$repo/os/i686
    Server = ftp://mirror.leaseweb.com/archlinux/$repo/os/i686
    Server = ftp://ftp-stud.hs-esslingen.de/pub/Mirr … po/os/i686
    Server = ftp://ftp.surfnet.nl/pub/os/Linux/distr … po/os/i686
    Server = ftp://ftp.nluug.nl/pub/metalab/distribu … po/os/i686
    Server = ftp://ftp5.gwdg.de/pub/linux/archlinux/$repo/os/i686
    Server = ftp://ftp.belnet.be/packages/archlinux/$repo/os/i686
    Server = ftp://ibiblio.org/pub/linux/distributio … po/os/i686
    Server = ftp://ftp.archlinux.org/$repo/os/i686
    The difference is, that you don't have the architecture in your paths (i686).

  • [solved] pacman mirrorlist "directive 'x' not recognized"

    I'm bungling through an install and tried using reflector to get speedier mirrors. Somehow I hosed myself, as when I checked mirrorlist it was blank(!), so I recopied the back-up to /etc/pacman.d/mirrorlist. Now when I run pacman -Syy I get:
    error: config file /etc/pacman.d/mirrolist, line 1: directive 'x' in repository section 'core' not recognized.
    The a line saying the same holds true for extra and community. Then it tries to sync servers and says: failed to update core (no servers configured for repository), and again for extra and community.  I tried to get openssh so I could go in remotely and copy the screen, but "no servers configured for repository." 
    Can anyone get me out of this can of worms?
    Last edited by pottzie (2011-06-17 23:58:40)

    x#Mirror used during installation
    Server = http:/mirror.cs.vt.edu/pub/ArchLinux/$repo/os/i686
    (Which now that i look at I recognize as the server i chose for the installation!)
    Then, just the rest of the standard mirror list, and i uncommented the U.S. mirrors.

  • [SOLVED] Pacman Performance Issue

    Hey everybody:
    I have a weird performance problem with pacman.  When I tell it to download something, it works fine when it is finding the package, figuring out dependencies, and processing the command.
    Then, when it gets to downloading, it'll take a few to several minutes to start downloading a package, download it at a normal/acceptable speed, then take a few to several minutes to start downloading the next package.
    I'm not sure what's causing this problem but I could see this beeing a nuissance for upgrades and things like that.  Or right now, because it's a fresh install and I'm trying to install Gnome, lol.  This behavior is also experienced when I'm updating the mirrors (pacman -Syy).
    I'm going to let it run overnight where it'll probably be done by the time I get back to work in the morning, but this seems like there's something wrong because I just tried on my laptop (on the same LAN) and it works as fast as I'd ever seen it.  In the past, I've never done any optimization or mirror ranking and I haven't experienced this issue before.
    Thanks!
    Last edited by mrmylanman (2011-06-03 12:41:45)

    Well, the install on the desktop was brand new, but they were both working from the same (default) mirror list.  I commented out the first few entries, as well as archlinux.org and a few others that seemed far away from their names, and tried it again.  Same issue.
    I thought it might be an issue with the DNS servers, so I tried pinging google, yahoo, and like xmission and a few others that it may not have cached and they all got resolved pretty quick.
    Seems very strange.  I remember yum being extremely slow, now that I think about it, but I used Fedora last about 3 years ago now (this was a different building and different internet plan at the time).  Apt seemed quick enough (since Fedora I have been dual-booting Windows and Debian).
    We have a fiber optic connection at work, not particularly fast at download but has good upload (more important for us), and we have a local DNS caching server.  It has caused some problems before, but it seems to have been behaving today (and for several months now).
    Thanks again, love the forums and I'm glad to be getting Debian off my work PC (strange as it is, I'm more comfortable with Arch now than I am with Debian).
    Last edited by mrmylanman (2011-06-02 22:37:02)

  • [SOLVED] Pacman Upgrade Issue

    Hello,
    I upgraded Pacman to the latest version and I may have messed up the .pacnew files, not sure.  Anyhow here's the issue I'm currently facing:
    [richard@rh-laptop ~]$ su root
    Password:
    [root@rh-laptop richard]# pacman -Syu
    :: Synchronizing package databases...
    core is up to date
    extra is up to date
    community is up to date
    :: Starting full system upgrade...
    warning: cpufrequtils: forcing upgrade to version 004-1
    warning: iproute: forcing upgrade to version 2.6.25-1
    warning: vlc: forcing upgrade to version 0.8.6i-3
    warning: xf86-video-vesa: forcing upgrade to version 1.3.0-6
    resolving dependencies...
    warning: provider package was selected (giflib provides libungif)
    looking for inter-conflicts...
    Targets (155): a52dec-0.7.4-4  gpm-1.20.5-1  aalib-1.4rc5-5  apr-1.3.2-2 
                   gcc-libs-4.3.1-3  pcre-7.7-2  glib2-2.16.5-1  avahi-0.6.23-1 
                   bash-3.2.039-2  bzip2-1.0.5-3  cdparanoia-10.1-1 
                   zlib-1.2.3.3-2  file-4.25-1  cdrkit-1.1.8-1  cpufrequtils-004-1 
                   desktop-file-utils-0.15-1  gnome-desktop-2.22.3-1  eog-2.22.3-1 
                   esd-0.2.39-1  gnome-keyring-2.22.3-1  gnutls-2.4.1-1 
                   heimdal-1.2-1  libpng-1.2.29-1  libcups-1.3.8-2 
                   randrproto-1.2.2-1  libxrandr-1.2.3-1  freetype2-2.3.7-1 
                   fontconfig-2.6.0-2  libxft-2.1.13-1  pango-1.20.5-1 
                   gtk2-2.12.11-3  poppler-0.8.4-1  poppler-glib-0.8.4-1 
                   evince-2.22.2-3  libsoup-2.4.1-2 
                   evolution-data-server-2.22.3-2  faad2-2.6.1-1 
                   filesystem-2008.07-1  fakeroot-1.9.5-1  lame-3.98-1 
                   x264-20080625-1  ffmpeg-20080715-3  file-roller-2.22.4-1 
                   wxgtk-2.8.8-1  filezilla-3.1.1.1-1  hunspell-1.2.6-1 
                   xulrunner-1.9.0.1-2  mime-types-1.0-1  firefox-3.0.1-2 
                   flex-2.5.35-1  gail-1.22.3-1  gcalctool-5.22.3-1  gcc-4.3.1-3 
                   ghostscript-8.63-3  libgtop-2.22.3-1  libgksu-2.0.7-1 
                   gksu-2.0.0-3  glibmm-2.16.4-2  gnash-common-0.8.3-3 
                   gucharmap-2.22.3-1  xorg-xkb-utils-7.3-1 
                   xkeyboard-config-1.3-1  libxklavier-3.6-1  libgnomekbd-2.22.0-2 
                   gnome-applets-2.22.3-1  gstreamer0.10-good-plugins-0.10.8-3 
                   gnome-media-2.22.0-2  gnome-session-2.22.3-1 
                   smbclient-3.0.30-2  gnome-vfs-2.22.0-4  libwnck-2.22.3-1 
                   gnome-system-monitor-2.22.3-1  gnome-terminal-2.22.3-1 
                   gtk-engines-2.14.3-1  gtksourceview2-2.2.2-1 
                   libgphoto2-2.4.2-1  gvfs-0.2.5-2  hdparm-8.9-1 
                   icon-naming-utils-0.8.7-1  imagemagick-6.4.2.7-1 
                   initscripts-2008.08-1  iproute-2.6.25-1  jre-6u7-1 
                   kernel-headers-2.6.25.8-1  module-init-tools-3.4-1 
                   kernel26-2.6.26.2-1  klibc-1.5-6  klibc-extras-2.4-2 
                   klibc-kbd-1.15.20080312-6  klibc-module-init-tools-3.4-1 
                   klibc-udev-116-4  lib32-zlib-1.2.3.3-2  lib32-freetype2-2.3.7-1 
                   lib32-fontconfig-2.6.0-2  lib32-gcc-libs-4.3.1-3 
                   lib32-glib2-2.16.4-1  lib32-libpng-1.2.29-1 
                   lib32-libcups-1.3.8-1  lib32-libxrandr-1.2.3-1 
                   lib32-libxft-2.1.13-1  lib32-pango-1.20.5-1 
                   lib32-gtk2-2.12.11-2  lib32-libgcrypt-1.4.1-1 
                   lib32-e2fsprogs-1.40.8-1.1  lib32-libsm-1.1.0-1.1 
                   lib32-libtasn1-1.4-1  lib32-pcre-7.7-2  libgnomecups-0.2.3-3 
                   libgnomeprint-2.18.3-3  libgweather-2.22.3-1  libmpeg2-0.5.1-1 
                   libsasl-2.1.22-7  libsm-1.1.0-1  libxfont-1.3.3-1 
                   libxp-1.0.0-2  libxtrap-1.0.0-2  libxxf86vm-1.0.2-1 
                   lirc-utils-0.8.3-1  madwifi-utils-0.9.4.3844-1 
                   madwifi-0.9.4.3844-1  man-pages-3.06-1  ttf-dejavu-2.26-1 
                   giflib-4.1.6-3  mplayer-1.0rc2-5  nautilus-2.22.5.1-1 
                   neon-0.28.2-2  db4.5-4.5.20-1  python-2.5.2-5 
                   openoffice-base-2.4.1-2  pam-1.0.1-2  openssh-5.0p1-2 
                   pciutils-3.0.0-2  perl-5.10.0-4  pm-utils-1.1.2.4-1 
                   preload-0.6.3-2  qt3-3.3.8-8  rarian-0.8.0-2  rsync-3.0.3-1 
                   scrnsaverproto-1.1.0-2  speex-1.2rc1-1  sqlite3-3.6.1-1 
                   swfdec-0.6.8-1  transcode-1.0.6rc1-2  tzdata-2008e-1 
                   vi-7.1.315-1  vlc-0.8.6i-3  wget-1.11.4-1 
                   xf86-input-mouse-1.3.0-1  xf86-video-vesa-1.3.0-6 
                   xfsprogs-2.9.8-1  xorg-twm-1.0.4-1  xorg-xauth-1.0.3-1 
                   xscreensaver-5.07-1  xtrans-1.2.1-1  yelp-2.23.1-2 
    Total Download Size:    0.00 MB
    Total Installed Size:   1322.50 MB
    Proceed with installation? [Y/n] y
    checking package integrity...
    (155/155) checking for file conflicts               [#####################] 100%
    error: could not prepare transaction
    error: failed to commit transaction (conflicting files)
    xulrunner: /usr/include/xulrunner-1.9 exists in filesystem
    xulrunner: /usr/lib/xulrunner-1.9 exists in filesystem
    xulrunner: /usr/lib/xulrunner-devel-1.9 exists in filesystem
    xulrunner: /usr/share/idl/xulrunner-1.9 exists in filesystem
    Errors occurred, no packages were upgraded.
    Any ideas?
    Thanks.
    Last edited by RAH (2008-08-15 18:28:42)

    pacman -Rd xulrunner and delete these files /usr/include/xulrunner-1.9  /usr/lib/xulrunner-1.9 /usr/lib/xulrunner-devel-1.9 /usr/share/idl/xulrunner-1.9. Re-install xulrunner and your good to go. Alternatively force the upgrade with pacman -Syuf.

  • [solved]pacman -r issue

    Hi , I would try to install arch on a usb stick from my current desktop and I thought
    that a
    pacman -S base -r newarch --ignore kernel26
    could go , where newarch is my mounted usb stick, but this simply don't work.
    pacman returns 'base not found'.
    pacman -S base
    instead works as it should... what I'm doing wrong?
    Last edited by mangus (2009-03-03 21:21:08)

    You want to do:
    mkdir -p newarch/var/lib/pacman
    pacman -Sy base -r newarch
    Note that the "--ignore kernel26" part does not work as you are using "base" which is a group (known issue) But you can always remove it later.

  • Pacman upgrade issue

    I am looking to upgrade my home PC, even moving from 32 bit to 64.
    All is fine so far, I have a complete machine, I even know how to transfer users so that they don't know the harware has changed.
    Where I do have a bit of an issue is with installing all the same packages.
    I can generate a line seperated file of all the packages installes by using the following command:
    pacman -Q | cut -d ' ' -f 1 > packages.txt
    Now all I need to do if get the file accross to the new hardware and then get pacman to install all the packages in the file. The only problem is that pacman does not appear to want  to read a list from a file, which is a shame as that would really help here and also in automated installs.
    Any suggestions?

    ibendiben wrote:I would use pacman -Qe here, to exclude dependencies.
    Else all packages, including dependencies are going to be installed explicit.
    Pacman resolves the dependencies automatically.
    Are you sure? I believe the install reason (explicit vs dependency) is preserved on upgrade/reinstall.

  • Circumvent this pacman dependency issue

    I have recently updated my catalyst driver and everything works fine but pacman doesn't let me upgrade - see the last line below.
    I want to keep everthing as of now the way it is but I would still like to update without this dependency error.
    How do I circumvent this issue?
    Thanks.
    OZooHA
    [ozooha@ozoohaPC ~]$ sudo pacman -Syu update
    :: Synchronizing package databases...
    core is up to date
    extra is up to date
    community is up to date
    archlinuxfr is up to date
    :: Starting full system upgrade...
    resolving dependencies...
    looking for inter-conflicts...
    error: failed to prepare transaction (could not satisfy dependencies)
    :: catalyst-utils: requires xorg-server<1.7.0
    [ozooha@ozoohaPC ~]$

    I'm not sure IgnorePkg works here. I have the following:
    IgnorePkg = xorg-server xorg-server-utils xorg-utils xorg-xfs
    IgnorePkg = xf86-video-intel xf86-video-vesa xf86-input-evdev xf86-input-keyboard xf86-input-mouse
    IgnorePkg = mesa libgl intel-dri dri2proto libxkbui
    But when I do pacman -Syu I get
    Targets (34): xextproto-7.1.1-1 fixesproto-4.1.1-1 inputproto-2.0-1
    libx11-1.3.2-1 libxext-1.1.1-1 libdmx-1.1.0-1 libdrm-2.4.15-1
    libxt-1.0.7-1 libxmu-1.0.5-1 libxpm-3.5.8-1 libxaw-1.0.7-1
    libxfixes-4.0.4-1 libxcomposite-0.4.1-1 libxdamage-1.1.2-1
    libxdmcp-1.0.3-1 libxfont-1.4.1-1 libxfontcache-1.0.5-1
    renderproto-0.11-1 libxrender-0.9.5-1 libxft-2.1.14-1 libxi-1.3-2
    libxinerama-1.1-1 libxkbfile-1.0.6-1 libxtst-1.1.0-1
    libxv-1.0.5-1 libxvmc-1.0.5-1 libxxf86dga-1.1.1-1
    libxxf86misc-1.0.2-1 libxxf86vm-1.1.0-1 shared-mime-info-0.70-2
    xorg-apps-7.5-2 xorg-font-utils-7.5-2 xorg-xkb-utils-7.5-1
    xterm-250-1
    Total Download Size: 0.00 MB
    Total Installed Size: 21.04 MB
    Proceed with installation? [Y/n] n
    Wouldn't this break my system. All these packages arrived in the [extra] together with xorg-server 1.7.1, so I don't think they'll work with 1.6.*.
    Or would they?

  • Pacman-mirrorlist-20100131-1-i686.pkg.tar.gz corrupted

    what the title says so I can't upgrade. Is anyone else having this problem as none of my other packages are producing this message.

    toxygen wrote:
    is it me or has the mirrorlist gone to hell the last few days.  the only mirrors that seem both 1. up to date and 2. working without unexpected ftp errors and "cannot find package.tar.gz" (or cannot find server in a few cases) are the 3 french ones:
    Server = http://mir.archlinux.fr/$repo/os/x86_64
    Server = ftp://mir1.archlinux.fr/archlinux/$repo/os/x86_64
    Server = http://mir1.archlinux.fr/archlinux/$repo/os/x86_64
    even mir2 is not working for me atm (it was earlier).  my paranoid self tells me something is going wrong with the internets, because i was having other issues loading pages at work and here at home.  my less paranoid self says this is a freak occurence and most if not all mirrors will be caught up in a week or so.
    i just fear losing those 3 mirrors, since even ftp.archlinux.org seems to be lagging behind with those 3.
    see http://www.archlinux.org/news/482/

  • [SOLVED] pacman -Syu issues for a newbie

    Hi all,
    After my very first installation of arch in my laptop, following the Beginners Guide, I tried to upgrade my system in order to continue installing wifi, gnome, etc...
    after a Pacman -syy, followed by pacman -Syu, I got the following output:
    :: Syncronizing package databases...
    core is up to date
    extra is up to date
    community is up to date
    :: Starting full system upgrade...
    resolving dependencies...
    warning: dependency cycle detected:
    warning: bash will be installed before its glibc dependency
    warning: dependency cycle detected:
    warning: readline will be installed before its glibc dependency
    warning: dependency cycle detected:
    warning: ncurses will be installed before its glibc dependency
    looking for inter-conflicts...
    error: failed to prepare transaction (could not satisfy dependencies)
    :: ipw3945: requires kernel26<2.6.26
    after looking for something on the web, i found something like this in the URL  http://bbs.archlinux.org/viewtopic.php?id=56431 , but after deleting the /usr/lib/klibc/include/asm, I've got the same errors
    How can I continue installing arch?
    Thanks a lot,
    Josep
    Last edited by [email protected] (2008-12-22 10:22:47)

    http://bbs.archlinux.org/viewtopic.php?id=58297

  • Pacman -Syu issues... tunepimp

    root@vistakiller:~ # pacman -Syu
    :: Synchronizing package databases...
    current [#################################################] 100% 72K 63.1K/s 00:00:01
    extra [#################################################] 100% 280K 98.9K/s 00:00:02
    unstable [#################################################] 100% 14K 14.2K/s 00:00:01
    :: community is up to date
    Targets: db-4.5.20-1 apache-2.2.4-2 apr-util-1.2.8-2 beryl-settings-bindings-svn-3550-2 python-2.5-3
    blender-2.43-3 cracklib-2.8.10-3 cvs-1.11.22-4 cyrus-sasl-2.1.22-3 postgresql-libs-8.2.3-1
    cyrus-sasl-plugins-2.1.22-4 dnsutils-9.4.0-1 flac-1.1.4-1 gnome-common-2.12.0-7 heimdal-0.7.2-5
    jack-audio-connection-kit-0.102.20-2 k3b-1.0-1 kdeaddons-3.5.6-3 kdebase-3.5.6-4 kdebindings-3.5.6-2
    kdelibs-3.5.6-6 fftw-3.1.2-1 libofa-0.9.3-1 tunepimp-0.5.3-1 kdemultimedia-3.5.6-2 kdeutils-3.5.6-2
    kdevelop-3.4.0-2 klibc-1.5-1 klibc-extras-2.2-2 libgsf-1.14.3-2 libieee1284-0.2.10-3 libldap-2.3.33-3
    libsamplerate-0.1.2-3 libsasl-2.1.22-3 libsndfile-1.0.17-1 libxml2-2.6.27-2 libxslt-1.1.20-2
    neon-0.25.5-5 nspr-4.6.6-1 nss-3.11.5-1 openldap-2.3.33-2 openssh-4.6p1-1 pam-0.81-3 perl-5.8.8-5
    pil-1.1.6-2 postfix-2.3.6-3 python-numeric-24.2-2 pycairo-1.2.2-2 pygobject-2.12.3-2 pygtk-2.10.4-1
    python-gtkglext-1.1.0-2 python-opengl-2.0.2.01-2 qt-3.3.8-2 rdesktop-1.5.0-1 ruby-1.8.5_p12-2
    smbclient-3.0.24-2 startup-notification-0.9-1 subversion-1.4.3-2 thunderbird-1.5.0.10-1 vim-7.0.216-1
    wxgtk-2.8.0.1-2 xine-lib-1.1.4-2
    Total Package Size: 223.3 MB
    Proceed with upgrade? [Y/n] y
    checking package integrity... done.
    loading package data... done.
    checking for file conflicts...
    error: the following file conflicts were found:
    tunepimp: /usr/include/tunepimp: exists in filesystem
    errors occurred, no packages were upgraded.
    root@vistakiller:~ #

    Thanks Snowman,
    Well........ for better or worse..... I did "rm -Rf /usr/include/tunepimp" ..... then redid pacman -Syu and it appears to be working fine now.  I suppose I could have just moved the /tunepimp dir to something like /tunepimp-backup.... to be safer....but it did appear to work anyway.
    root@vistakiller:~ # rm -Rf /usr/include/tunepimp
    root@vistakiller:~ # pacman -Syu
    :: Synchronizing package databases...
    current [#################################################] 100% 72K 16.7K/s 00:00:04
    extra [#################################################] 100% 280K 40.6K/s 00:00:06
    unstable [#################################################] 100% 14K 15.6K/s 00:00:00
    :: community is up to date
    Targets: db-4.5.20-1 apache-2.2.4-2 apr-util-1.2.8-2 beryl-settings-bindings-svn-3550-2 python-2.5-3
    blender-2.43-3 cracklib-2.8.10-3 cvs-1.11.22-4 cyrus-sasl-2.1.22-3 postgresql-libs-8.2.3-1
    cyrus-sasl-plugins-2.1.22-4 dnsutils-9.4.0-1 flac-1.1.4-1 gnome-common-2.12.0-7 heimdal-0.7.2-5
    jack-audio-connection-kit-0.102.20-2 k3b-1.0-1 kdeaddons-3.5.6-3 kdebase-3.5.6-4 kdebindings-3.5.6-2
    kdelibs-3.5.6-6 fftw-3.1.2-1 libofa-0.9.3-1 tunepimp-0.5.3-1 kdemultimedia-3.5.6-2 kdeutils-3.5.6-2
    kdevelop-3.4.0-2 klibc-1.5-1 klibc-extras-2.2-2 libgsf-1.14.3-2 libieee1284-0.2.10-3 libldap-2.3.33-3
    libsamplerate-0.1.2-3 libsasl-2.1.22-3 libsndfile-1.0.17-1 libxml2-2.6.27-2 libxslt-1.1.20-2
    neon-0.25.5-5 nspr-4.6.6-1 nss-3.11.5-1 openldap-2.3.33-2 openssh-4.6p1-1 pam-0.81-3 perl-5.8.8-5
    pil-1.1.6-2 postfix-2.3.6-3 python-numeric-24.2-2 pycairo-1.2.2-2 pygobject-2.12.3-2 pygtk-2.10.4-1
    python-gtkglext-1.1.0-2 python-opengl-2.0.2.01-2 qt-3.3.8-2 rdesktop-1.5.0-1 ruby-1.8.5_p12-2
    smbclient-3.0.24-2 startup-notification-0.9-1 subversion-1.4.3-2 thunderbird-1.5.0.10-1 vim-7.0.216-1
    wxgtk-2.8.0.1-2 xine-lib-1.1.4-2
    Total Package Size: 223.3 MB
    Proceed with upgrade? [Y/n] y
    checking package integrity... done.
    loading package data... done.
    checking for file conflicts... done.
    upgrading db... done.
    ATTENTION DB PACKAGE:
    Please consider to run db_upgrade on Berkeley DB databases with a major db version number update.
    upgrading apache... done.
    upgrading apr-util... done.
    upgrading beryl-settings-bindings-svn... done.
    upgrading python... done.
    upgrading blender... done.
    NOTE
    blender is using the NAN makefiles to build, so we can access some better
    features:
    - i18n support
    - anti-aliased interface fonts
    - gameplayer
    We also ship the plugins, but most of these features can be accessed only
    from the users home directory. Therefore, you wanna copy everything from
    /usr/share/blender to ~/.blender (some are hidden files!). The browser-
    plugin builds but is using an old mozilla API, this is why it doesn't work
    and we don't ship it.
    Happy blending!
    update desktop mime database...
    upgrading cracklib... done.
    upgrading cvs... done.
    upgrading cyrus-sasl... done.
    upgrading postgresql-libs... done.
    upgrading cyrus-sasl-plugins... done.
    upgrading dnsutils... done.
    upgrading flac... done.
    upgrading gnome-common... done.
    upgrading heimdal... done.
    upgrading jack-audio-connection-kit... done.
    --> The audio server comes with a daemon script that runs it as root.
    --> Configuration happens in /etc/conf.d/jack-audio-connection-kit and is
    --> documented there. If you like to run it as normal user you can
    --> download qjackctl and control the server with a gui.
    --> NOTE: Running jack as root to enable realtime capabilities isn't
    --> needed any longer. As of kernel-2.6.12 and pam > 0.80-2 you can
    --> achieve the rights to run real-time on a per group basis, which is
    --> controlled by /etc/security/limits.conf
    upgrading k3b... done.
    upgrading kdeaddons... done.
    upgrading kdebase... done.
    upgrading kdebindings... done.
    upgrading kdelibs... done.
    installing fftw... done.
    installing libofa... done.
    upgrading tunepimp... done.
    upgrading kdemultimedia... done.
    upgrading kdeutils... done.
    upgrading kdevelop... done.
    upgrading klibc... done.
    upgrading klibc-extras... done.
    upgrading libgsf... done.
    upgrading libieee1284... done.
    upgrading libldap... done.
    upgrading libsamplerate... done.
    upgrading libsasl... done.
    upgrading libsndfile... done.
    upgrading libxml2... done.
    upgrading libxslt... done.
    upgrading neon... done.
    upgrading nspr... done.
    upgrading nss... done.
    upgrading openldap... done.
    upgrading openssh... done.
    upgrading pam... done.
    upgrading perl... done.
    upgrading pil... done.
    upgrading postfix... done.
    upgrading python-numeric... done.
    upgrading pycairo... done.
    upgrading pygobject... done.
    upgrading pygtk... done.
    upgrading python-gtkglext... done.
    upgrading python-opengl... done.
    upgrading qt... done.
    upgrading rdesktop... done.
    upgrading ruby... done.
    upgrading smbclient... done.
    upgrading startup-notification... done.
    upgrading subversion... done.
    upgrading thunderbird... done.
    upgrading vim... done.
    Updating vim help tags...done.
    upgrading wxgtk... done.
    upgrading xine-lib... done.
    root@vistakiller:~ #
    Last edited by crouse (2007-03-19 17:55:48)

  • Pacman dependency issue: cannot find dependency files

    Hello!
    Some weeks ago I upgraded my system using pacman -Suy running in terminal inside screen. For some reason the terminal and screen died and pacman got interrupted in the middle of a big upgrade. After that my box behaves very strangely. For instance I cannot longer start screen:
    $ screen
    reopen fifo /tmp/screens/S-dan/5120.pts-1.laptop: No such file or directory
    I no longer have perl installed, and I seem to miss all the standard c-libraries
    $ gcc test.c
    test.c:1:19: error: stdio.h No such file or directory
    I do not know if this above is of relevance, but when I try using pacman now I get  a error on not being able to find the »depends» files of glibc and perl. The directory they are being looked for at has a double slash // very odd. This is an output:
    # pacman -Suy
    :: Synchronizing package databases...
    core is up to date
    extra is up to date
    community is up to date
    :: Starting full system upgrade...
    resolving dependencies...
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//perl-5.10.0-3/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//perl-5.10.0-3/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//perl-5.10.0-3/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//perl-5.10.0-3/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//perl-5.10.0-3/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//perl-5.10.0-3/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//perl-5.10.0-3/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//perl-5.10.0-3/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//perl-5.10.0-3/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//perl-5.10.0-3/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//perl-5.10.0-3/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//perl-5.10.0-3/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//perl-5.10.0-3/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//perl-5.10.0-3/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//perl-5.10.0-3/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//perl-5.10.0-3/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//perl-5.10.0-3/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//perl-5.10.0-3/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//perl-5.10.0-3/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//perl-5.10.0-3/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//perl-5.10.0-3/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//perl-5.10.0-3/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//perl-5.10.0-3/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//perl-5.10.0-3/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//perl-5.10.0-3/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//perl-5.10.0-3/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//perl-5.10.0-3/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//perl-5.10.0-3/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//perl-5.10.0-3/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//perl-5.10.0-3/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//perl-5.10.0-3/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//perl-5.10.0-3/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//perl-5.10.0-3/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//perl-5.10.0-3/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//perl-5.10.0-3/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//perl-5.10.0-3/depends: No such file or directory
    looking for inter-conflicts...
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//perl-5.10.0-3/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//perl-5.10.0-3/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//perl-5.10.0-3/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//perl-5.10.0-3/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//perl-5.10.0-3/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//perl-5.10.0-3/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//perl-5.10.0-3/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//perl-5.10.0-3/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//perl-5.10.0-3/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//perl-5.10.0-3/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//perl-5.10.0-3/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//perl-5.10.0-3/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//perl-5.10.0-3/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//perl-5.10.0-3/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//perl-5.10.0-3/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//perl-5.10.0-3/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//perl-5.10.0-3/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//perl-5.10.0-3/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//perl-5.10.0-3/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//perl-5.10.0-3/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//perl-5.10.0-3/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//perl-5.10.0-3/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//perl-5.10.0-3/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//perl-5.10.0-3/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//perl-5.10.0-3/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//perl-5.10.0-3/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//perl-5.10.0-3/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//perl-5.10.0-3/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//perl-5.10.0-3/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//perl-5.10.0-3/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//perl-5.10.0-3/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//perl-5.10.0-3/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//perl-5.10.0-3/depends: No such file or directory
    Targets: m4-1.4.11-1 autoconf-2.62-1 cairo-perl-1.060-1 pam-1.0.1-1
    coreutils-6.11-1 curl-7.18.1-2 dialog-1.1_20080316-3
    hunspell-1.2.2-2 enchant-1.4.1-2 file-4.24-1 libpng-1.2.28-1
    fltk-1.1.9-1 gail-1.22.1-1 glib-perl-1.182-1 gtk2-perl-1.182-1
    gnome-vfs-perl-1.081-1 gpm-1.20.3-1 gstreamer0.10-bad-0.10.7-1
    gstreamer0.10-good-0.10.8-1 gtk-engines-2.14.1-1 gtkhtml-3.18.1-1
    imagemagick-6.4.1.0-1 libxml2-2.6.32-1 libxslt-1.1.23-1
    kdelibs-3.5.9-3.1 laptop-mode-tools-1.41-1 libdvdnav-0.1.10-3
    libnotify-0.4.4-2 libsamplerate-0.1.3-1 neon-0.28.2-1
    pstoedit-3.45-2 openoffice-base-2.4.0-2 patch-2.5.9-1
    pkgconfig-0.23-1 pycairo-1.4.12-1 python-pytz-2008b-1
    scons-0.98.3-1 python-mpd-0.2.0-1 sonata-1.5-2 tagpy-0.94.5-1
    tar-1.20-2 texinfo-4.12-2 wget-1.11.2-1 wine-0.9.61-1
    xine-lib-1.1.12-1
    Total Download Size: 173.95 MB
    Total Installed Size: 176.15 MB
    Proceed with installation? [Y/n] n
    Any ideas if this is fixable? I havent found anything here on the forums or on the interwebs. I could do a fresh reinstall, but maybe I could save some time by just fixing this.
    Thanks in advance for any help,
    Dan

    Got some complaints on a lot of files already existing in the filesystem:
    $pacman -S perl glibc
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/files: No such file or directory
    error: could not prepare transaction
    glibc: /etc/locale.gen exists in filesystem
    glibc: /etc/nscd.conf exists in filesystem
    glibc: /etc/rc.d/nscd exists in filesystem
    glibc: /etc/rpc exists in filesystem
    glibc: /lib/ld-2.7.so exists in filesystem
    glibc: /lib/ld-linux.so.2 exists in filesystem
    glibc: /lib/libBrokenLocale-2.7.so exists in filesystem
    glibc: /lib/libBrokenLocale.so.1 exists in filesystem
    glibc: /lib/libSegFault.so exists in filesystem
    glibc: /lib/libanl-2.7.so exists in filesystem
    glibc: /lib/libanl.so.1 exists in filesystem
    glibc: /lib/libc-2.7.so exists in filesystem
    glibc: /lib/libc.so.6 exists in filesystem
    glibc: /lib/libcidn-2.7.so exists in filesystem
    glibc: /lib/libcidn.so.1 exists in filesystem
    glibc: /lib/libcrypt-2.7.so exists in filesystem
    glibc: /lib/libcrypt.so.1 exists in filesystem
    glibc: /lib/libdl-2.7.so exists in filesystem
    glibc: /lib/libdl.so.2 exists in filesystem
    glibc: /lib/libm-2.7.so exists in filesystem
    glibc: /lib/libm.so.6 exists in filesystem
    glibc: /lib/libmemusage.so exists in filesystem
    glibc: /lib/libnsl-2.7.so exists in filesystem
    glibc: /lib/libnsl.so.1 exists in filesystem
    glibc: /lib/libnss_compat-2.7.so exists in filesystem
    glibc: /lib/libnss_compat.so.2 exists in filesystem
    glibc: /lib/libnss_dns-2.7.so exists in filesystem
    glibc: /lib/libnss_dns.so.2 exists in filesystem
    glibc: /lib/libnss_files-2.7.so exists in filesystem
    glibc: /lib/libnss_files.so.2 exists in filesystem
    glibc: /lib/libnss_hesiod-2.7.so exists in filesystem
    glibc: /lib/libnss_hesiod.so.2 exists in filesystem
    glibc: /lib/libnss_nis-2.7.so exists in filesystem
    glibc: /lib/libnss_nis.so.2 exists in filesystem
    glibc: /lib/libnss_nisplus-2.7.so exists in filesystem
    glibc: /lib/libnss_nisplus.so.2 exists in filesystem
    glibc: /lib/libpcprofile.so exists in filesystem
    glibc: /lib/libpthread-2.7.so exists in filesystem
    glibc: /lib/libpthread.so.0 exists in filesystem
    glibc: /lib/libresolv-2.7.so exists in filesystem
    glibc: /lib/libresolv.so.2 exists in filesystem
    glibc: /lib/librt-2.7.so exists in filesystem
    glibc: /lib/librt.so.1 exists in filesystem
    glibc: /lib/libthread_db-1.0.so exists in filesystem
    glibc: /lib/libthread_db.so.1 exists in filesystem
    glibc: /lib/libutil-2.7.so exists in filesystem
    glibc: /lib/libutil.so.1 exists in filesystem
    glibc: /sbin/ldconfig exists in filesystem
    glibc: /sbin/sln exists in filesystem
    glibc: /usr/include/scsi/scsi.h exists in filesystem
    glibc: /usr/include/scsi/scsi_ioctl.h exists in filesystem
    glibc: /usr/include/scsi/sg.h exists in filesystem
    glibc: /usr/share/i18n/charmaps/ANSI_X3.110-1983.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/ANSI_X3.4-1968.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/ARMSCII-8.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/ASMO_449.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/BIG5-HKSCS.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/BIG5.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/BRF.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/BS_4730.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/BS_VIEWDATA.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/CP10007.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/CP1125.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/CP1250.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/CP1251.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/CP1252.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/CP1253.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/CP1254.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/CP1255.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/CP1256.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/CP1257.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/CP1258.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/CP737.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/CP775.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/CP949.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/CSA_Z243.4-1985-1.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/CSA_Z243.4-1985-2.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/CSA_Z243.4-1985-GR.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/CSN_369103.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/CWI.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/DEC-MCS.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/DIN_66003.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/DS_2089.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/EBCDIC-AT-DE-A.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/EBCDIC-AT-DE.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/EBCDIC-CA-FR.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/EBCDIC-DK-NO-A.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/EBCDIC-DK-NO.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/EBCDIC-ES-A.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/EBCDIC-ES-S.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/EBCDIC-ES.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/EBCDIC-FI-SE-A.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/EBCDIC-FI-SE.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/EBCDIC-FR.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/EBCDIC-IS-FRISS.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/EBCDIC-IT.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/EBCDIC-PT.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/EBCDIC-UK.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/EBCDIC-US.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/ECMA-CYRILLIC.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/ES.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/ES2.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/EUC-JISX0213.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/EUC-JP-MS.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/EUC-JP.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/EUC-KR.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/EUC-TW.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/GB18030.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/GB2312.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/GBK.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/GB_1988-80.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/GEORGIAN-ACADEMY.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/GEORGIAN-PS.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/GOST_19768-74.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/GREEK-CCITT.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/GREEK7-OLD.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/GREEK7.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/HP-ROMAN8.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/IBM037.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/IBM038.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/IBM1004.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/IBM1026.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/IBM1047.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/IBM1124.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/IBM1129.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/IBM1132.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/IBM1133.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/IBM1160.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/IBM1161.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/IBM1162.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/IBM1163.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/IBM1164.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/IBM256.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/IBM273.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/IBM274.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/IBM275.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/IBM277.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/IBM278.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/IBM280.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/IBM281.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/IBM284.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/IBM285.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/IBM290.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/IBM297.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/IBM420.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/IBM423.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/IBM424.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/IBM437.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/IBM500.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/IBM850.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/IBM851.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/IBM852.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/IBM855.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/IBM856.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/IBM857.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/IBM860.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/IBM861.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/IBM862.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/IBM863.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/IBM864.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/IBM865.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/IBM866.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/IBM866NAV.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/IBM868.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/IBM869.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/IBM870.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/IBM871.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/IBM874.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/IBM875.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/IBM880.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/IBM891.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/IBM903.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/IBM904.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/IBM905.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/IBM918.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/IBM922.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/IEC_P27-1.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/INIS-8.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/INIS-CYRILLIC.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/INIS.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/INVARIANT.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/ISIRI-3342.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/ISO-8859-1.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/ISO-8859-10.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/ISO-8859-11.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/ISO-8859-13.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/ISO-8859-14.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/ISO-8859-15.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/ISO-8859-16.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/ISO-8859-2.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/ISO-8859-3.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/ISO-8859-4.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/ISO-8859-5.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/ISO-8859-6.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/ISO-8859-7.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/ISO-8859-8.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/ISO-8859-9.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/ISO-8859-9E.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/ISO-IR-197.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/ISO-IR-209.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/ISO-IR-90.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/ISO_10367-BOX.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/ISO_10646.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/ISO_11548-1.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/ISO_2033-1983.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/ISO_5427-EXT.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/ISO_5427.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/ISO_5428.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/ISO_646.BASIC.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/ISO_646.IRV.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/ISO_6937-2-25.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/ISO_6937-2-ADD.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/ISO_6937.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/ISO_8859-1,GL.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/ISO_8859-SUPP.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/IT.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/JIS_C6220-1969-JP.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/JIS_C6220-1969-RO.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/JIS_C6229-1984-A.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/JIS_C6229-1984-B-ADD.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/JIS_C6229-1984-B.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/JIS_C6229-1984-HAND-ADD.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/JIS_C6229-1984-HAND.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/JIS_C6229-1984-KANA.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/JIS_X0201.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/JOHAB.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/JUS_I.B1.002.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/JUS_I.B1.003-MAC.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/JUS_I.B1.003-SERB.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/KOI-8.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/KOI8-R.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/KOI8-RU.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/KOI8-T.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/KOI8-U.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/KSC5636.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/LATIN-GREEK-1.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/LATIN-GREEK.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/MAC-CENTRALEUROPE.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/MAC-CYRILLIC.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/MAC-IS.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/MAC-SAMI.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/MAC-UK.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/MACINTOSH.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/MIK.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/MSZ_7795.3.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/NATS-DANO-ADD.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/NATS-DANO.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/NATS-SEFI-ADD.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/NATS-SEFI.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/NC_NC00-10.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/NEXTSTEP.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/NF_Z_62-010.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/NF_Z_62-010_1973.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/NS_4551-1.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/NS_4551-2.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/PT.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/PT154.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/PT2.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/RK1048.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/SAMI-WS2.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/SAMI.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/SEN_850200_B.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/SEN_850200_C.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/SHIFT_JIS.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/SHIFT_JISX0213.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/T.101-G2.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/T.61-7BIT.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/T.61-8BIT.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/TCVN5712-1.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/TIS-620.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/TSCII.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/UTF-8.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/VIDEOTEX-SUPPL.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/VISCII.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/WINDOWS-31J.gz exists in filesystem
    glibc: /usr/share/i18n/locales/POSIX exists in filesystem
    glibc: /usr/share/i18n/locales/aa_DJ exists in filesystem
    glibc: /usr/share/i18n/locales/aa_ER exists in filesystem
    glibc: /usr/share/i18n/locales/aa_ER@saaho exists in filesystem
    glibc: /usr/share/i18n/locales/aa_ET exists in filesystem
    glibc: /usr/share/i18n/locales/af_ZA exists in filesystem
    glibc: /usr/share/i18n/locales/am_ET exists in filesystem
    glibc: /usr/share/i18n/locales/an_ES exists in filesystem
    glibc: /usr/share/i18n/locales/ar_AE exists in filesystem
    glibc: /usr/share/i18n/locales/ar_BH exists in filesystem
    glibc: /usr/share/i18n/locales/ar_DZ exists in filesystem
    glibc: /usr/share/i18n/locales/ar_EG exists in filesystem
    glibc: /usr/share/i18n/locales/ar_IN exists in filesystem
    glibc: /usr/share/i18n/locales/ar_IQ exists in filesystem
    glibc: /usr/share/i18n/locales/ar_JO exists in filesystem
    glibc: /usr/share/i18n/locales/ar_KW exists in filesystem
    glibc: /usr/share/i18n/locales/ar_LB exists in filesystem
    glibc: /usr/share/i18n/locales/ar_LY exists in filesystem
    glibc: /usr/share/i18n/locales/ar_MA exists in filesystem
    glibc: /usr/share/i18n/locales/ar_OM exists in filesystem
    glibc: /usr/share/i18n/locales/ar_QA exists in filesystem
    glibc: /usr/share/i18n/locales/ar_SA exists in filesystem
    glibc: /usr/share/i18n/locales/ar_SD exists in filesystem
    glibc: /usr/share/i18n/locales/ar_SY exists in filesystem
    glibc: /usr/share/i18n/locales/ar_TN exists in filesystem
    glibc: /usr/share/i18n/locales/ar_YE exists in filesystem
    glibc: /usr/share/i18n/locales/as_IN exists in filesystem
    glibc: /usr/share/i18n/locales/ast_ES exists in filesystem
    glibc: /usr/share/i18n/locales/az_AZ exists in filesystem
    glibc: /usr/share/i18n/locales/be_BY exists in filesystem
    glibc: /usr/share/i18n/locales/be_BY@latin exists in filesystem
    glibc: /usr/share/i18n/locales/ber_DZ exists in filesystem
    glibc: /usr/share/i18n/locales/ber_MA exists in filesystem
    glibc: /usr/share/i18n/locales/bg_BG exists in filesystem
    glibc: /usr/share/i18n/locales/bn_BD exists in filesystem
    glibc: /usr/share/i18n/locales/bn_IN exists in filesystem
    glibc: /usr/share/i18n/locales/br_FR exists in filesystem
    glibc: /usr/share/i18n/locales/br_FR@euro exists in filesystem
    glibc: /usr/share/i18n/locales/bs_BA exists in filesystem
    glibc: /usr/share/i18n/locales/byn_ER exists in filesystem
    glibc: /usr/share/i18n/locales/ca_AD exists in filesystem
    glibc: /usr/share/i18n/locales/ca_ES exists in filesystem
    glibc: /usr/share/i18n/locales/ca_ES@euro exists in filesystem
    glibc: /usr/share/i18n/locales/ca_ES@valencia exists in filesystem
    glibc: /usr/share/i18n/locales/ca_FR exists in filesystem
    glibc: /usr/share/i18n/locales/ca_IT exists in filesystem
    glibc: /usr/share/i18n/locales/crh_UA exists in filesystem
    glibc: /usr/share/i18n/locales/cs_CZ exists in filesystem
    glibc: /usr/share/i18n/locales/csb_PL exists in filesystem
    glibc: /usr/share/i18n/locales/cy_GB exists in filesystem
    glibc: /usr/share/i18n/locales/da_DK exists in filesystem
    glibc: /usr/share/i18n/locales/de_AT exists in filesystem
    glibc: /usr/share/i18n/locales/de_AT@euro exists in filesystem
    glibc: /usr/share/i18n/locales/de_BE exists in filesystem
    glibc: /usr/share/i18n/locales/de_BE@euro exists in filesystem
    glibc: /usr/share/i18n/locales/de_CH exists in filesystem
    glibc: /usr/share/i18n/locales/de_DE exists in filesystem
    glibc: /usr/share/i18n/locales/de_DE@euro exists in filesystem
    glibc: /usr/share/i18n/locales/de_LU exists in filesystem
    glibc: /usr/share/i18n/locales/de_LU@euro exists in filesystem
    glibc: /usr/share/i18n/locales/dz_BT exists in filesystem
    glibc: /usr/share/i18n/locales/el_CY exists in filesystem
    glibc: /usr/share/i18n/locales/el_GR exists in filesystem
    glibc: /usr/share/i18n/locales/el_GR@euro exists in filesystem
    glibc: /usr/share/i18n/locales/en_AU exists in filesystem
    glibc: /usr/share/i18n/locales/en_BW exists in filesystem
    glibc: /usr/share/i18n/locales/en_CA exists in filesystem
    glibc: /usr/share/i18n/locales/en_DK exists in filesystem
    glibc: /usr/share/i18n/locales/en_GB exists in filesystem
    glibc: /usr/share/i18n/locales/en_HK exists in filesystem
    glibc: /usr/share/i18n/locales/en_IE exists in filesystem
    glibc: /usr/share/i18n/locales/en_IE@euro exists in filesystem
    glibc: /usr/share/i18n/locales/en_IN exists in filesystem
    glibc: /usr/share/i18n/locales/en_NG exists in filesystem
    glibc: /usr/share/i18n/locales/en_NZ exists in filesystem
    glibc: /usr/share/i18n/locales/en_PH exists in filesystem
    glibc: /usr/share/i18n/locales/en_SG exists in filesystem
    glibc: /usr/share/i18n/locales/en_US exists in filesystem
    glibc: /usr/share/i18n/locales/en_ZA exists in filesystem
    glibc: /usr/share/i18n/locales/en_ZW exists in filesystem
    glibc: /usr/share/i18n/locales/eo exists in filesystem
    glibc: /usr/share/i18n/locales/es_AR exists in filesystem
    glibc: /usr/share/i18n/locales/es_BO exists in filesystem
    glibc: /usr/share/i18n/locales/es_CL exists in filesystem
    glibc: /usr/share/i18n/locales/es_CO exists in filesystem
    glibc: /usr/share/i18n/locales/es_CR exists in filesystem
    glibc: /usr/share/i18n/locales/es_DO exists in filesystem
    glibc: /usr/share/i18n/locales/es_EC exists in filesystem
    glibc: /usr/share/i18n/locales/es_ES exists in filesystem
    glibc: /usr/share/i18n/locales/es_ES@euro exists in filesystem
    glibc: /usr/share/i18n/locales/es_GT exists in filesystem
    glibc: /usr/share/i18n/locales/es_HN exists in filesystem
    glibc: /usr/share/i18n/locales/es_MX exists in filesystem
    glibc: /usr/share/i18n/locales/es_NI exists in filesystem
    glibc: /usr/share/i18n/locales/es_PA exists in filesystem
    glibc: /usr/share/i18n/locales/es_PE exists in filesystem
    glibc: /usr/share/i18n/locales/es_PR exists in filesystem
    glibc: /usr/share/i18n/locales/es_PY exists in filesystem
    glibc: /usr/share/i18n/locales/es_SV exists in filesystem
    glibc: /usr/share/i18n/locales/es_US exists in filesystem
    glibc: /usr/share/i18n/locales/es_UY exists in filesystem
    glibc: /usr/share/i18n/locales/es_VE exists in filesystem
    glibc: /usr/share/i18n/locales/et_EE exists in filesystem
    glibc: /usr/share/i18n/locales/eu_ES exists in filesystem
    glibc: /usr/share/i18n/locales/eu_ES@euro exists in filesystem
    glibc: /usr/share/i18n/locales/eu_FR exists in filesystem
    glibc: /usr/share/i18n/locales/eu_FR@euro exists in filesystem
    glibc: /usr/share/i18n/locales/fa_IR exists in filesystem
    glibc: /usr/share/i18n/locales/fi_FI exists in filesystem
    glibc: /usr/share/i18n/locales/fi_FI@euro exists in filesystem
    glibc: /usr/share/i18n/locales/fil_PH exists in filesystem
    glibc: /usr/share/i18n/locales/fo_FO exists in filesystem
    glibc: /usr/share/i18n/locales/fr_BE exists in filesystem
    glibc: /usr/share/i18n/locales/fr_BE@euro exists in filesystem
    glibc: /usr/share/i18n/locales/fr_CA exists in filesystem
    glibc: /usr/share/i18n/locales/fr_CH exists in filesystem
    glibc: /usr/share/i18n/locales/fr_FR exists in filesystem
    glibc: /usr/share/i18n/locales/fr_FR@euro exists in filesystem
    glibc: /usr/share/i18n/locales/fr_LU exists in filesystem
    glibc: /usr/share/i18n/locales/fr_LU@euro exists in filesystem
    glibc: /usr/share/i18n/locales/fur_IT exists in filesystem
    glibc: /usr/share/i18n/locales/fy_DE exists in filesystem
    glibc: /usr/share/i18n/locales/fy_NL exists in filesystem
    glibc: /usr/share/i18n/locales/ga_IE exists in filesystem
    glibc: /usr/share/i18n/locales/ga_IE@euro exists in filesystem
    glibc: /usr/share/i18n/locales/gd_GB exists in filesystem
    glibc: /usr/share/i18n/locales/gez_ER exists in filesystem
    glibc: /usr/share/i18n/locales/gez_ER@abegede exists in filesystem
    glibc: /usr/share/i18n/locales/gez_ET exists in filesystem
    glibc: /usr/share/i18n/locales/gez_ET@abegede exists in filesystem
    glibc: /usr/share/i18n/locales/gl_ES exists in filesystem
    glibc: /usr/share/i18n/locales/gl_ES@euro exists in filesystem
    glibc: /usr/share/i18n/locales/gu_IN exists in filesystem
    glibc: /usr/share/i18n/locales/gv_GB exists in filesystem
    glibc: /usr/share/i18n/locales/ha_NG exists in filesystem
    glibc: /usr/share/i18n/locales/he_IL exists in filesystem
    glibc: /usr/share/i18n/locales/hi_IN exists in filesystem
    glibc: /usr/share/i18n/locales/hr_HR exists in filesystem
    glibc: /usr/share/i18n/locales/hsb_DE exists in filesystem
    glibc: /usr/share/i18n/locales/hu_HU exists in filesystem
    glibc: /usr/share/i18n/locales/hy_AM exists in filesystem
    glibc: /usr/share/i18n/locales/i18n exists in filesystem
    glibc: /usr/share/i18n/locales/ia exists in filesystem
    glibc: /usr/share/i18n/locales/id_ID exists in filesystem
    glibc: /usr/share/i18n/locales/ig_NG exists in filesystem
    glibc: /usr/share/i18n/locales/ik_CA exists in filesystem
    glibc: /usr/share/i18n/locales/is_IS exists in filesystem
    glibc: /usr/share/i18n/locales/iso14651_t1 exists in filesystem
    glibc: /usr/share/i18n/locales/iso14651_t1_common exists in filesystem
    glibc: /usr/share/i18n/locales/iso14651_t1_pinyin exists in filesystem
    glibc: /usr/share/i18n/locales/it_CH exists in filesystem
    glibc: /usr/share/i18n/locales/it_IT exists in filesystem
    glibc: /usr/share/i18n/locales/it_IT@euro exists in filesystem
    glibc: /usr/share/i18n/locales/iu_CA exists in filesystem
    glibc: /usr/share/i18n/locales/iw_IL exists in filesystem
    glibc: /usr/share/i18n/locales/ja_JP exists in filesystem
    glibc: /usr/share/i18n/locales/ka_GE exists in filesystem
    glibc: /usr/share/i18n/locales/kk_KZ exists in filesystem
    glibc: /usr/share/i18n/locales/kl_GL exists in filesystem
    glibc: /usr/share/i18n/locales/km_KH exists in filesystem
    glibc: /usr/share/i18n/locales/kn_IN exists in filesystem
    glibc: /usr/share/i18n/locales/ko_KR exists in filesystem
    glibc: /usr/share/i18n/locales/ku_TR exists in filesystem
    glibc: /usr/share/i18n/locales/kw_GB exists in filesystem
    glibc: /usr/share/i18n/locales/ky_KG exists in filesystem
    glibc: /usr/share/i18n/locales/lg_UG exists in filesystem
    glibc: /usr/share/i18n/locales/li_BE exists in filesystem
    glibc: /usr/share/i18n/locales/li_NL exists in filesystem
    glibc: /usr/share/i18n/locales/lo_LA exists in filesystem
    glibc: /usr/share/i18n/locales/lt_LT exists in filesystem
    glibc: /usr/share/i18n/locales/lv_LV exists in filesystem
    glibc: /usr/share/i18n/locales/mai_IN exists in filesystem
    glibc: /usr/share/i18n/locales/mg_MG exists in filesystem
    glibc: /usr/share/i18n/locales/mi_NZ exists in filesystem
    glibc: /usr/share/i18n/locales/mk_MK exists in filesystem
    glibc: /usr/share/i18n/locales/ml_IN exists in filesystem
    glibc: /usr/share/i18n/locales/mn_MN exists in filesystem
    glibc: /usr/share/i18n/locales/mr_IN exists in filesystem
    glibc: /usr/share/i18n/locales/ms_MY exists in filesystem
    glibc: /usr/share/i18n/locales/mt_MT exists in filesystem
    glibc: /usr/share/i18n/locales/nb_NO exists in filesystem
    glibc: /usr/share/i18n/locales/nds_DE exists in filesystem
    glibc: /usr/share/i18n/locales/nds_NL exists in filesystem
    glibc: /usr/share/i18n/locales/ne_NP exists in filesystem
    glibc: /usr/share/i18n/locales/nl_BE exists in filesystem
    glibc: /usr/share/i18n/locales/nl_BE@euro exists in filesystem
    glibc: /usr/share/i18n/locales/nl_NL exists in filesystem
    glibc: /usr/share/i18n/locales/nl_NL@euro exists in filesystem
    glibc: /usr/share/i18n/locales/nn_NO exists in filesystem
    glibc: /usr/share/i18n/locales/nr_ZA exists in filesystem
    glibc: /usr/share/i18n/locales/nso_ZA exists in filesystem
    glibc: /usr/share/i18n/locales/oc_FR exists in filesystem
    glibc: /usr/share/i18n/locales/om_ET exists in filesystem
    glibc: /usr/share/i18n/locales/om_KE exists in filesystem
    glibc: /usr/share/i18n/locales/or_IN exists in filesystem
    glibc: /usr/share/i18n/locales/pa_IN exists in filesystem
    glibc: /usr/share/i18n/locales/pa_PK exists in filesystem
    glibc: /usr/share/i18n/locales/pap_AN exists in filesystem
    glibc: /usr/share/i18n/locales/pl_PL exists in filesystem
    glibc: /usr/share/i18n/locales/pt_BR exists in filesystem
    glibc: /usr/share/i18n/locales/pt_PT exists in filesystem
    glibc: /usr/share/i18n/locales/pt_PT@euro exists in filesystem
    glibc: /usr/share/i18n/locales/ro_RO exists in filesystem
    glibc: /usr/share/i18n/locales/ru_RU exists in filesystem
    glibc: /usr/share/i18n/locales/ru_UA exists in filesystem
    glibc: /usr/share/i18n/locales/rw_RW exists in filesystem
    glibc: /usr/share/i18n/locales/sa_IN exists in filesystem
    glibc: /usr/share/i18n/locales/sc_IT exists in filesystem
    glibc: /usr/share/i18n/locales/se_NO exists in filesystem
    glibc: /usr/share/i18n/locales/si_LK exists in filesystem
    glibc: /usr/share/i18n/locales/sid_ET exists in filesystem
    glibc: /usr/share/i18n/locales/sk_SK exists in filesystem
    glibc: /usr/share/i18n/locales/sl_SI exists in filesystem
    glibc: /usr/share/i18n/locales/so_DJ exists in filesystem
    glibc: /usr/share/i18n/locales/so_ET exists in filesystem
    glibc: /usr/share/i18n/locales/so_KE exists in filesystem
    glibc: /usr/share/i18n/locales/so_SO exists in filesystem
    glibc: /usr/share/i18n/locales/sq_AL exists in filesystem
    glibc: /usr/share/i18n/locales/sr_ME exists in filesystem
    glibc: /usr/share/i18n/locales/sr_RS exists in filesystem
    glibc: /usr/share/i18n/locales/sr_RS@latin exists in filesystem
    glibc: /usr/share/i18n/locales/ss_ZA exists in filesystem
    glibc: /usr/share/i18n/locales/st_ZA exists in filesystem
    glibc: /usr/share/i18n/locales/sv_FI exists in filesystem
    glibc: /usr/share/i18n/locales/sv_FI@euro exists in filesystem
    glibc: /usr/share/i18n/locales/sv_SE exists in filesystem
    glibc: /usr/share/i18n/locales/ta_IN exists in filesystem
    glibc: /usr/share/i18n/locales/te_IN exists in filesystem
    glibc: /usr/share/i18n/locales/tg_TJ exists in filesystem
    glibc: /usr/share/i18n/locales/th_TH exists in filesystem
    glibc: /usr/share/i18n/locales/ti_ER exists in filesystem
    glibc: /usr/share/i18n/locales/ti_ET exists in filesystem
    glibc: /usr/share/i18n/locales/tig_ER exists in filesystem
    glibc: /usr/share/i18n/locales/tk_TM exists in filesystem
    glibc: /usr/share/i18n/locales/tl_PH exists in filesystem
    glibc: /usr/share/i18n/locales/tn_ZA exists in filesystem
    glibc: /usr/share/i18n/locales/tr_CY exists in filesystem
    glibc: /usr/share/i18n/locales/tr_TR exists in filesystem
    glibc: /usr/share/i18n/locales/translit_circle exists in filesystem
    glibc: /usr/share/i18n/locales/translit_cjk_compat exists in filesystem
    glibc: /usr/share/i18n/locales/translit_cjk_variants exists in filesystem
    glibc: /usr/share/i18n/locales/translit_combining exists in filesystem
    glibc: /usr/share/i18n/locales/translit_compat exists in filesystem
    glibc: /usr/share/i18n/locales/translit_font exists in filesystem
    glibc: /usr/share/i18n/locales/translit_fraction exists in filesystem
    glibc: /usr/share/i18n/locales/translit_hangul exists in filesystem
    glibc: /usr/share/i18n/locales/translit_narrow exists in filesystem
    glibc: /usr/share/i18n/locales/translit_neutral exists in filesystem
    glibc: /usr/share/i18n/locales/translit_small exists in filesystem
    glibc: /usr/share/i18n/locales/translit_wide exists in filesystem
    glibc: /usr/share/i18n/locales/ts_ZA exists in filesystem
    glibc: /usr/share/i18n/locales/tt_RU exists in filesystem
    glibc: /usr/share/i18n/locales/tt_RU@iqtelif exists in filesystem
    glibc: /usr/share/i18n/locales/ug_CN exists in filesystem
    glibc: /usr/share/i18n/locales/uk_UA exists in filesystem
    glibc: /usr/share/i18n/locales/ur_PK exists in filesystem
    glibc: /usr/share/i18n/locales/uz_UZ exists in filesystem
    glibc: /usr/share/i18n/locales/uz_UZ@cyrillic exists in filesystem
    glibc: /usr/share/i18n/locales/ve_ZA exists in filesystem
    glibc: /usr/share/i18n/locales/vi_VN exists in filesystem
    glibc: /usr/share/i18n/locales/wa_BE exists in filesystem
    glibc: /usr/share/i18n/locales/wa_BE@euro exists in filesystem
    glibc: /usr/share/i18n/locales/wal_ET exists in filesystem
    glibc: /usr/share/i18n/locales/wo_SN exists in filesystem
    glibc: /usr/share/i18n/locales/xh_ZA exists in filesystem
    glibc: /usr/share/i18n/locales/yi_US exists in filesystem
    glibc: /usr/share/i18n/locales/yo_NG exists in filesystem
    glibc: /usr/share/i18n/locales/zh_CN exists in filesystem
    glibc: /usr/share/i18n/locales/zh_HK exists in filesystem
    glibc: /usr/share/i18n/locales/zh_SG exists in filesystem
    glibc: /usr/share/i18n/locales/zh_TW exists in filesystem
    glibc: /usr/share/i18n/locales/zu_ZA exists in filesystem
    glibc: /usr/share/locale/locale.alias exists in filesystem
    glibc: /usr/share/locale/zh_CN/LC_MESSAGES/libc.mo exists in filesystem
    perl: /etc/profile.d/perlbin.sh exists in filesystem
    perl: /usr/lib/perl5/core_perl/.packlist exists in filesystem
    perl: /usr/lib/perl5/core_perl/B.pm exists in filesystem
    perl: /usr/lib/perl5/core_perl/CORE/EXTERN.h exists in filesystem
    perl: /usr/lib/perl5/core_perl/CORE/INTERN.h exists in filesystem
    perl: /usr/lib/perl5/core_perl/CORE/XSUB.h exists in filesystem
    perl: /usr/lib/perl5/core_perl/CORE/av.h exists in filesystem
    perl: /usr/lib/perl5/core_perl/CORE/cc_runtime.h exists in filesystem
    perl: /usr/lib/perl5/core_perl/CORE/config.h exists in filesystem
    perl: /usr/lib/perl5/core_perl/CORE/cop.h exists in filesystem
    perl: /usr/lib/perl5/core_perl/CORE/cv.h exists in filesystem
    perl: /usr/lib/perl5/core_perl/CORE/dosish.h exists in filesystem
    perl: /usr/lib/perl5/core_perl/CORE/embed.h exists in filesystem
    perl: /usr/lib/perl5/core_perl/CORE/embedvar.h exists in filesystem
    perl: /usr/lib/perl5/core_perl/CORE/fakesdio.h exists in filesystem
    perl: /usr/lib/perl5/core_perl/CORE/fakethr.h exists in filesystem
    perl: /usr/lib/perl5/core_perl/CORE/form.h exists in filesystem
    perl: /usr/lib/perl5/core_perl/CORE/gv.h exists in filesystem
    perl: /usr/lib/perl5/core_perl/CORE/handy.h exists in filesystem
    perl: /usr/lib/perl5/core_perl/CORE/hv.h exists in filesystem
    perl: /usr/lib/perl5/core_perl/CORE/intrpvar.h exists in filesystem
    perl: /usr/lib/perl5/core_perl/CORE/iperlsys.h exists in filesystem
    perl: /usr/lib/perl5/core_perl/CORE/keywords.h exists in filesystem
    perl: /usr/lib/perl5/core_perl/CORE/libperl.a exists in filesystem
    perl: /usr/lib/perl5/core_perl/CORE/malloc_ctl.h exists in filesystem
    perl: /usr/lib/perl5/core_perl/CORE/mg.h exists in filesystem
    perl: /usr/lib/perl5/core_perl/CORE/nostdio.h exists in filesystem
    perl: /usr/lib/perl5/core_perl/CORE/op.h exists in filesystem
    perl: /usr/lib/perl5/core_perl/CORE/opcode.h exists in filesystem
    perl: /usr/lib/perl5/core_perl/CORE/opnames.h exists in filesystem
    perl: /usr/lib/perl5/core_perl/CORE/overload.h exists in filesystem
    perl: /usr/lib/perl5/core_perl/CORE/pad.h exists in filesystem
    perl: /usr/lib/perl5/core_perl/CORE/parser.h exists in filesystem
    perl: /usr/lib/perl5/core_perl/CORE/patchlevel.h exists in filesystem
    perl: /usr/lib/perl5/core_perl/CORE/perl.h exists in filesystem
    perl: /usr/lib/perl5/core_perl/CORE/perlapi.h exists in filesystem
    perl: /usr/lib/perl5/core_perl/CORE/perlio.h exists in filesystem
    perl: /usr/lib/perl5/core_perl/CORE/perliol.h exists in filesystem
    perl: /usr/lib/perl5/core_perl/CORE/perlsdio.h exists in filesystem
    perl: /usr/lib/perl5/core_perl/CORE/perlsfio.h exists in filesystem
    perl: /usr/lib/perl5/core_perl/CORE/perlvars.h exists in filesystem
    perl: /usr/lib/perl5/core_perl/CORE/perly.h exists in filesystem
    perl: /usr/lib/perl5/core_perl/CORE/pp.h exists in filesystem
    perl: /usr/lib/perl5/core_perl/CORE/pp_proto.h exists in filesystem
    perl: /usr/lib/perl5/core_perl/CORE/proto.h exists in filesystem
    perl: /usr/lib/perl5/core_perl/CORE/reentr.h exists in filesystem
    perl: /usr/lib/perl5/core_perl/CORE/regcharclass.h exists in filesystem
    perl: /usr/lib/perl5/core_perl/CORE/regcomp.h exists in filesystem
    perl: /usr/lib/perl5/core_perl/CORE/regexp.h exists in filesystem
    perl: /usr/lib/perl5/core_perl/CORE/regnodes.h exists in filesystem
    perl: /usr/lib/perl5/core_perl/CORE/scope.h exists in filesystem
    perl: /usr/lib/perl5/core_perl/CORE/sv.h exists in filesystem
    perl: /usr/lib/perl5/core_perl/CORE/thread.h exists in filesystem
    perl: /usr/lib/perl5/core_perl/CORE/uconfig.h exists in filesystem
    perl: /usr/lib/perl5/core_perl/CORE/unixish.h exists in filesystem
    perl: /usr/lib/perl5/core_perl/CORE/utf8.h exists in filesystem
    perl: /usr/lib/perl5/core_perl/CORE/utfebcdic.h exists in filesystem
    perl: /usr/lib/perl5/core_perl/CORE/util.h exists in filesystem
    perl: /usr/lib/perl5/core_perl/CORE/uudmap.h exists in filesystem
    perl: /usr/lib/perl5/core_perl/CORE/warnings.h exists in filesystem
    perl: /usr/lib/perl5/core_perl/Config.pm exists in filesystem
    perl: /usr/lib/perl5/core_perl/Config.pod exists in filesystem
    perl: /usr/lib/perl5/core_perl/Config_heavy.pl exists in filesystem
    perl: /usr/lib/perl5/core_perl/Cwd.pm exists in filesystem
    perl: /usr/lib/perl5/core_perl/DB_File.pm exists in filesystem
    perl: /usr/lib/perl5/core_perl/DynaLoader.pm exists in filesystem
    perl: /usr/lib/perl5/core_perl/Encode.pm exists in filesystem
    perl: /usr/lib/perl5/core_perl/Errno.pm exists in filesystem
    perl: /usr/lib/perl5/core_perl/Fcntl.pm exists in filesystem
    perl: /usr/lib/perl5/core_perl/GDBM_File.pm exists in filesystem
    perl: /usr/lib/perl5/core_perl/IO.pm exists in filesystem
    perl: /usr/lib/perl5/core_perl/O.pm exists in filesystem
    perl: /usr/lib/perl5/core_perl/Opcode.pm exists in filesystem
    perl: /usr/lib/perl5/core_perl/POSIX.pm exists in filesystem
    perl: /usr/lib/perl5/core_perl/POSIX.pod exists in filesystem
    perl: /usr/lib/perl5/core_perl/SDBM_File.pm exists in filesystem
    perl: /usr/lib/perl5/core_perl/Safe.pm exists in filesystem
    perl: /usr/lib/perl5/core_perl/Socket.pm exists in filesystem
    perl: /usr/lib/perl5/core_perl/Storable.pm exists in filesystem
    perl: /usr/lib/perl5/core_perl/XSLoader.pm exists in filesystem
    perl: /usr/lib/perl5/core_perl/attrs.pm exists in filesystem
    perl: /usr/lib/perl5/core_perl/encoding.pm exists in filesystem
    perl: /usr/lib/perl5/core_perl/lib.pm exists in filesystem
    perl: /usr/lib/perl5/core_perl/ops.pm exists in filesystem
    perl: /usr/lib/perl5/core_perl/re.pm exists in filesystem
    perl: /usr/lib/perl5/core_perl/threads.pm exists in filesystem
    Errors occurred, no packages were upgraded.
    And the problem transists. I tried pacman -R glibc perl but it didn't go too well, got complaints on practically everything depending on glibc. Is it a good or bad idea to manually delete all the files listed above? There surely has to be a better way...
    thanks, Dan

Maybe you are looking for

  • Installati​on CD says my operating system does not support

    I just got a used HP pavillion entertainment PC. I put my installation CD for my F4180 printer in and it tells me my operating system is not compatible or something like that. Bottom line I can't use my printer.  Are there new drivers ? I really hope

  • Can I specify (or find out) the size of a browser window?

    I've noticed that when I resize a browser window that any new window also comes up at that same size. Is there a way to see what the actual dimensions are for any given window?

  • Dynex TV doesn't show picture

    If I turn on my Xbox before turning on my tv, the tv stops functioning and the screen is black and won't even let me change the input settings. I have to take out the HDMI cable, turn the tv off, then turn the tv back on, manage to put back the cable

  • Need budgeting period wise

    Is it possible to maintain budget in controlling (KO22) period wise instead of year wise.

  • Java.lang.ClassNotFoundException: javax.swing.JFrame

    i have developed a program in java and it is working fine in windows xp, but when i try to execute it in redhat linux, the ff errors are generated: Exception in thread "main" java.lang.InternalError: Unexpected exception while defining class WESMOMP$