[solved] pacman-3.5.1-1 woes

Just so I dont hijack other threads ... but this is p... me off royally.
I religiously do a 'pacman -Syu' just about every 2nd day - from a local repo that is updated (using lftp 'mirror' each night).
I didn't update from Thursday until Monday  - and that's when it all happened.
New 'pacman' - ok - do that first (pacman -Sy pacman), run the pacman-db-upgrade and check out the new pacman.conf - no biggie.
Then a 'pacman -Syy' just incase and finally a 'pacman -Su' - and that's when the proverbial sh.. hit the fan.
For the vast majority of my packages - 'local' is newer than 'extra' (same for 'core' and 'community') - eg. xfce which I updated to 4.8 eons ago - now is claimed to be 4.6!! (checking the actual files in the repo tells me its still 4.8 but pacman doesn't seem to get that!) And of course - refusal to update because it wants util-linux to be replaced by util-linux-ng and some obscure reference kde-editbookmarks or whatever ...
What's going on?
Does anybody have  reasonable explanation?
Oh - and just incase - I have checked out two mirrors incase my usual one was somewhat belated ... no difference (or should I say 'same difference')
Last edited by perbh (2011-03-31 01:59:29)

the sad clown wrote:Did you do the db-upgrade on your home computer or the one you use to download with?
Not on the same computer (the one at home) but one at my work.
First I updated using my local mirror (which is the one I have a copy of at home) - and that failed exactly the same way as my rig at home.
Then I removed my local mirror/repo and used an 'official' one instead - and then it worked!
I guess my setup needs a bit more explanation:
1) my local repo is on a slackware machine which each night connects to an official mirror and make a copy of that mirror (I have to use the 'mirror'-option in 'lftp' because I am not allowed to use 'rsync' from work)
2) at work I have 2 archlinux-rigs which uses the slackware machine as its repo:
mirrorlist:
Server = ftp://xx.xx.xx.xx/pub/linux/archlinux/packages/$repo/os/i686
(or x86_64 - I use both)
3) I always carry a usb-disk between home and work - and each day at work I 'rsync' from the slackware-machine to my usb-disk
4) When I get home, I rsync my usb-disk to another slackware server
5) I have 4 archlinux rigs at home and they use the same one-liner mirrorlist as above - only difference is the ip-address
(as you can see - with my download cap there is no way I can maintain 4 rigs at home without a local repo)
This setup has served me well for nearly 3-4 years now, never really needed to do anything to change it.
Last edited by perbh (2011-03-30 16:57:56)

Similar Messages

  • [SOLVED] Pacman "config file could not be read" error during Arch ins

    I've been attempting to get Arch setup for a while now, and after having some trouble with partitions, my wireless connecting, and setting up repos and mirrors, which the Wiki helped me solve, I've hit a bigger bump.  While updating the system using pacman as the Beginners Guide says to do, I get errors when I try to continue the update process as follows :
    btw: I'm typing this on a laptop next to my computer
    [root@McArch~]# pacman -Syu
    error: config file /etc/pacman.d/core could not be read
    error: config file /etc/pacman.d/extra could not be read
    error: config file /etc/pacman.d/community could not be read
    :: Synchronizing package databases . . .
    error: failed to updated core (unexpected error)
    error: failed to updated extra (unexpected error)
    error: failed to updated community (unexpected error)
    error: failed to synchronize any databases
    Any tips as to whats going on?  I've tried to created said files, and even insert mirrors into the file, like in the /etc/pacman.d/mirrorlist file but this doesn't seem to help
    Last edited by Windfinder (2008-09-29 20:43:29)

    Glad you got it working.
    I'm not sure what happened in your install but I just finished using an old 2007.08 iso and pacman first starts out with /etc/pacman.d/core, etc/pacman.d/extra, /etc/pacman.d/community ... etc., but I never had your problem when I did the #pacman -Syu after initial install reboot.  The pacman update removes the above mentioned repos and replaces them with a single /etc/pacman.d/mirrorlist.  You must have messed up an initial config file somehow as I couldn't get the same errors you got.  It looks like you had your /etc/pacman.conf file messed up somehow and when you pointed it to the mirrorlist it could finally work properly.  I'll just include my /etc/pacman.conf file and /etc/pacman.d/mirrorlist so you can compare.  NB*  these are from my x86_64 so for 32 bit machines i686 would replace x86_64 in the 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
    # Pacman won't upgrade packages listed in IgnorePkg and members of IgnoreGroup
    #IgnorePkg =
    #IgnoreGroup =
    #NoUpgrade =
    #NoExtract =
    # Misc options (all disabled by default)
    #NoPassiveFtp
    #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.
    # Testing is disabled by default. To enable, uncomment the following
    # two lines. You can add preferred servers immediately after the header,
    # and they will be used before the default mirrors.
    #[testing]
    #Include = /etc/pacman.d/mirrorlist
    [core]
    # Add your preferred servers here, they will be used first
    Include = /etc/pacman.d/mirrorlist
    [extra]
    # 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
    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
    /etc/pacman.d/mirrorlist
    # Arch Linux repository mirrorlist
    # North America
    # - United States
    Server = http://mirror.neotuli.net/arch/$repo/os/x86_64
    Server = http://holmes.umflint.edu/archlinux/$repo/os/x86_64
    Server = http://archlinux.unixheads.org/$repo/os/x86_64
    Server = ftp://ftp.archlinux.org/$repo/os/x86_64
    Server = ftp://locke.suu.edu/linux/dist/archlinux/$repo/os/x86_64
    Server = ftp://ftp.gtlib.gatech.edu/pub/linux/distributions/archlinux/$repo/os/x86_64
    Server = ftp://mirror.cs.vt.edu/pub/ArchLinux/$repo/os/x86_64
    Server = http://mirrors.easynews.com/linux/archlinux/$repo/os/x86_64
    Server = ftp://ftp.ibiblio.org/pub/linux/distributions/archlinux/$repo/os/x86_64
    Server = http://mirror.rit.edu/archlinux/$repo/os/x86_64
    Server = http://mirror.umoss.org/archlinux/$repo/os/x86_64
    # - Canada
    Server = ftp://mirror.csclub.uwaterloo.ca/archlinux/$repo/os/@carch
    Well it was an interesting way to kill 30+ minutes.

  • [solved] pacman broken after "pacman -Syyu" excluding pacman

    Hi forums,
    I use arch x86_64, yaourt and the testing and multilib repositories.
    A full system upgrade doing "yaourt -Syyu" didn't work, because pacman had an unfulfilled dependancy which I don't recall, but it was about a normal and a multilib version: I probably have the multilib version of a library installed, which has not been updated to the version required by pacman yet.
    So I thought it would be perfectly fine to exclude pacman from this system upgrade by choosing "manually" from the options given by "yaourt -Syyu" and commented pacman.
    The upgrade then went fine except for the two final lines:
    package-query: error while loading shared libraries: libarchive.so.2: cannot open shared object file: No such file or directory
    testdb: error while loading shared libraries: libarchive.so.2: cannot open shared object file: No such file or directory
    Now everytime I try to use pacman, I get this error:
    pacman: error while loading shared libraries: libarchive.so.2: cannot open shared object file: No such file or directory
    Do you know how to solve this?
    Thanks in advance
    xiliyi
    Last edited by xiliyi (2012-01-05 09:49:23)

    ngoonee wrote:Actually (even without cower), makepkg will tell you what dependencies are missing when you try and compile an AUR package. In fact, -s will install them for you (unless they're from the AUR, in which case you have to download/makepkg that package first).
    Actually, I was more concerned about updates for packages from AUR. yaourt would handle AUR packages as if they were in a repository, and update them, solving dependency problems.
    Now what I fear is, that if some regular library gets an update, it may not updated on my system in the first place, because pacman only sees that the older version is needed for the AUR software, but is not capable of updating the AUR package (which works with the new library version) automatically. So updates will break some software unless I remove it first and install the latest version manually.

  • [Solved] Pacman message after interrupted installation... persists

    As you can see I'm still a bit of a newbie. Yesterday I was installing TeX live, but while installing someone unplugged a USB stick and all went stuck... it all just freeze the system, I guess it was a hardware problem. Anyway, I restarted and when I came back to resume the installation (downloading of packages was already finished), pacman sent me a lot of error messages, but apparently TeX live installed fine. Well, I checked my TeX system and works fine. The problem is every time I try to install something, I always get this error message:
    error: could not open file /var/lib/pacman/local/texlive-bin-2010.1-4/depends: No such file or directory
    error: could not open file /var/lib/pacman/local/texlive-bin-2010.1-4/depends: No such file or directory
    How do I repair this? I didn't want to clean the cache, but... would this do fine? what else do I have to do?
    Thanx in advance.
    Last edited by joe74 (2010-10-23 22:33:20)

    Well, solved by myself.
    What I had to do after a lot of mess was
    1. uninstall everything that was causing errors
    sudo pacman -Rs texmaker texlive-most texlive-core texlive-bin
    2. and clear the cache of files not installed
    sudo pacman -Sc texmaker texlive-most texlive-core texlive-bin
    This solved the entire problem. Dialectical theory still functioning in my brains

  • [SOLVED] PACMAN sig errors

    Hi,
    So i have this problem which started about a week ago, i reckon around the time of that pacman update. Anyway i'm getting signing erros on package installs and  a sudo pacman-key --init
    sudo pacman-key --populate archlinux with and without sudo pacman -Syy fixes it....till i reboot then it errors up again. I've removed the /etc/pacman.d/gnupg folder etc reinstalled archlinux-keyring, pacman without a fix. Sorry my first post here is a beg for ideas to help but i'm more of a lurker then poster.
    If anyone needs more info i am happy to provide as i really would love to solve this. Long live arch linux
    cheers
    Al
    edit:
    Should add the keys show up with pacman-key -l or -f etc after reboot but doesn't stop me from errors. so the keyring is still there but not searched?   but if i do a pacman-key --refresh-keys then it will find new keys but this will not fix the errors and allow package install.   needs the --init  then populate to allow install.
    hope i'm clear enough
    Last edited by woznme (2013-03-12 12:39:32)

    Allan it appears to be correct, and i disabled the ntpd check/set i had autostarting and that made no difference. Thanks for your efforts in helping troubleshoot this.
    not sure this helps but if I logout my openbox session  (--exit) then logon again the keyring is still working fine.
    Last edited by woznme (2013-03-10 14:22:23)

  • [SOLVED] Pacman errors

    Hello,
    I've been trying to install fluxbox on my freshly installed arch linux (with updates) and I've been following a guide on how to do so. The problem is that I can't really install anything but 'pacman -S xorg', like for example if I try 'pacman -S hwd' I get this error:
    http://rs51gc.rapidshare.com/files/1985 … G_1785.JPG
    and this happens to pretty much every package that I've tried.
    I've googled a lot and I've found some suggestions but none have worked =/
    Please help.
    Thanks.
    Last edited by loxaXcracker (2009-02-16 11:44:20)

    loxaXcracker wrote:
    Nvm guys, I've figured out what the problem was.
    (edit in rc.conf (change to eth0="dhcp") and then simply restart the network.)
    Thanks for the help anyway guys!
    Glad to hear that Add [SOLVED] in the topic.

  • [Solved] Pacman errors: "call to execv failed", system not booting

    Recent upgrade (yesterday) - problems went like this:
    1) pacman -Syu attempted "filesystem" upgrade and threw errors about some directories in /usr/local being 775 not 755.
    2) that was because I had a non-standard package in there. I changed just those relevant directories to 755.
    3) reattempted pacman -Syu but got a bunch of errors: "call to execv failed"
    4) system was immediately borked. Reboot now throws me into a shell.
    This is a 32 bit system.
    Any ideas and help would be greatly appreciated.
    Last edited by lagagnon (2013-01-30 19:10:24)

    Solved my problem with the following method:
    1) used Arch LiveCD. Mounted boot and / partitions
    2) pacman -r /path/to/root -Syyu glibc filesystem
    3) reboot gave "Unable to find root device error"
    4) ran LiveCD again following these instructions: https://wiki.archlinux.org/index.php/Pa … onger_boot

  • [SOLVED] pacman broken

    I did system resque from file where was list of earlier installed programs:  pacman -S $(< pkglist) . so it managed partially after some strrugle I have desktop (LXDE) I have tried:
    pacman -S base-devel
    warning: autoconf-2.68-1 is up to date -- reinstalling
    warning: automake-1.11.1-2 is up to date -- reinstalling
    warning: bison-2.4.3-1 is up to date -- reinstalling
    warning: fakeroot-1.14.4-3 is up to date -- reinstalling
    warning: flex-2.5.35-4 is up to date -- reinstalling
    warning: libtool-2.4-1 is up to date -- reinstalling
    warning: m4-1.4.15-1 is up to date -- reinstalling
    warning: pkg-config-0.25-2 is up to date -- reinstalling
    resolving dependencies...
    looking for inter-conflicts...
    Targets (11): m4-1.4.15-1 autoconf-2.68-1 automake-1.11.1-2 bison-2.4.3-1
    fakeroot-1.14.4-3 flex-2.5.35-4 gcc-4.5.1-2 libtool-2.4-1
    make-3.81-5 patch-2.6.1-2 pkg-config-0.25-2
    Total Download Size: 0.00 MB
    Total Installed Size: 73.16 MB
    Proceed with installation? [Y/n] Y
    .... gcc: /usr/lib/gcc/x86_64-unknown-linux-gnu/4.5.1/plugin/include/insn-constants.h exists in filesystem
    gcc: /usr/lib/gcc/x86_64-unknown-linux-gnu/4.5.1/plugin/include/insn-flags.h exists in filesystem
    gcc: /usr/lib/gcc/x86_64-unknown-linux-gnu/4.5.1/plugin/include/insn-modes.h exists in filesystem
    gcc: /usr/lib/gcc/x86_64-unknown-linux-gnu/4.5.1/plugin/include/insn-notes.def exists in filesystem
    gcc: /usr/lib/gcc/x86_64-unknown-linux-gnu/4.5.1/plugin/include/intl.h exists in filesystem
    gcc: /usr/lib/gcc/x86_64-unknown-linux-gnu/4.5.1/plugin/include/ipa-prop.h exists in filesystem
    gcc: /usr/lib/gcc/x86_64-unknown-linux-gnu/4.5.1/plugin/include/ipa-reference.h exists in filesystem
    gcc: /usr/lib/gcc/x86_64-unknown-linux-gnu/4.5.1/plugin/include/ipa-utils.h exists in filesystem
    gcc: /usr/lib/gcc/x86_64-unknown-linux-gnu/4.5.1/plugin/include/langhooks.h exists in filesystem
    gcc: /usr/lib/gcc/x86_64-unknown-linux-gnu/4.5.1/plugin/include/libiberty.h exists in filesystem
    gcc: /usr/lib/gcc/x86_64-unknown-linux-gnu/4.5.1/plugin/include/line-map.h exists in filesystem
    gcc: /usr/lib/gcc/x86_64-unknown-linux-gnu/4.5.1/plugin/include/machmode.h exists in filesystem
    gcc: /usr/lib/gcc/x86_64-unknown-linux-gnu/4.5.1/plugin/include/md5.h exists in filesystem
    gcc: /usr/lib/gcc/x86_64-unknown-linux-gnu/4.5.1/plugin/include/mode-classes.def exists in filesystem
    gcc: /usr/lib/gcc/x86_64-unknown-linux-gnu/4.5.1/plugin/include/objc/objc-tree.def exists in filesystem
    gcc: /usr/lib/gcc/x86_64-unknown-linux-gnu/4.5.1/plugin/include/obstack.h exists in filesystem
    gcc: /usr/lib/gcc/x86_64-unknown-linux-gnu/4.5.1/plugin/include/omp-builtins.def exists in filesystem
    gcc: /usr/lib/gcc/x86_64-unknown-linux-gnu/4.5.1/plugin/include/options.h exists in filesystem
    gcc: /usr/lib/gcc/x86_64-unknown-linux-gnu/4.5.1/plugin/include/opts.h exists in filesystem
    gcc: /usr/lib/gcc/x86_64-unknown-linux-gnu/4.5.1/plugin/include/output.h exists in filesystem
    gcc: /usr/lib/gcc/x86_64-unknown-linux-gnu/4.5.1/plugin/include/params.def exists in filesystem
    gcc: /usr/lib/gcc/x86_64-unknown-linux-gnu/4.5.1/plugin/include/params.h exists in filesystem
    gcc: /usr/lib/gcc/x86_64-unknown-linux-gnu/4.5.1/plugin/include/partition.h exists in filesystem
    gcc: /usr/lib/gcc/x86_64-unknown-linux-gnu/4.5.1/plugin/include/plugin-version.h exists in filesystem
    gcc: /usr/lib/gcc/x86_64-unknown-linux-gnu/4.5.1/plugin/include/plugin.def exists in filesystem
    gcc: /usr/lib/gcc/x86_64-unknown-linux-gnu/4.5.1/plugin/include/plugin.h exists in filesystem
    gcc: /usr/lib/gcc/x86_64-unknown-linux-gnu/4.5.1/plugin/include/pointer-set.h exists in filesystem
    gcc: /usr/lib/gcc/x86_64-unknown-linux-gnu/4.5.1/plugin/include/predict.def exists in filesystem
    gcc: /usr/lib/gcc/x86_64-unknown-linux-gnu/4.5.1/plugin/include/predict.h exists in filesystem
    gcc: /usr/lib/gcc/x86_64-unknown-linux-gnu/4.5.1/plugin/include/prefix.h exists in filesystem
    gcc: /usr/lib/gcc/x86_64-unknown-linux-gnu/4.5.1/plugin/include/pretty-print.h exists in filesystem
    gcc: /usr/lib/gcc/x86_64-unknown-linux-gnu/4.5.1/plugin/include/real.h exists in filesystem
    gcc: /usr/lib/gcc/x86_64-unknown-linux-gnu/4.5.1/plugin/include/reg-notes.def exists in filesystem
    gcc: /usr/lib/gcc/x86_64-unknown-linux-gnu/4.5.1/plugin/include/rtl.def exists in filesystem
    gcc: /usr/lib/gcc/x86_64-unknown-linux-gnu/4.5.1/plugin/include/rtl.h exists in filesystem
    gcc: /usr/lib/gcc/x86_64-unknown-linux-gnu/4.5.1/plugin/include/safe-ctype.h exists in filesystem
    gcc: /usr/lib/gcc/x86_64-unknown-linux-gnu/4.5.1/plugin/include/sbitmap.h exists in filesystem
    gcc: /usr/lib/gcc/x86_64-unknown-linux-gnu/4.5.1/plugin/include/splay-tree.h exists in filesystem
    gcc: /usr/lib/gcc/x86_64-unknown-linux-gnu/4.5.1/plugin/include/statistics.h exists in filesystem
    gcc: /usr/lib/gcc/x86_64-unknown-linux-gnu/4.5.1/plugin/include/symtab.h exists in filesystem
    gcc: /usr/lib/gcc/x86_64-unknown-linux-gnu/4.5.1/plugin/include/sync-builtins.def exists in filesystem
    gcc: /usr/lib/gcc/x86_64-unknown-linux-gnu/4.5.1/plugin/include/system.h exists in filesystem
    gcc: /usr/lib/gcc/x86_64-unknown-linux-gnu/4.5.1/plugin/include/target.h exists in filesystem
    gcc: /usr/lib/gcc/x86_64-unknown-linux-gnu/4.5.1/plugin/include/timevar.def exists in filesystem
    gcc: /usr/lib/gcc/x86_64-unknown-linux-gnu/4.5.1/plugin/include/timevar.h exists in filesystem
    gcc: /usr/lib/gcc/x86_64-unknown-linux-gnu/4.5.1/plugin/include/tm-preds.h exists in filesystem
    gcc: /usr/lib/gcc/x86_64-unknown-linux-gnu/4.5.1/plugin/include/tm.h exists in filesystem
    gcc: /usr/lib/gcc/x86_64-unknown-linux-gnu/4.5.1/plugin/include/tm_p.h exists in filesystem
    gcc: /usr/lib/gcc/x86_64-unknown-linux-gnu/4.5.1/plugin/include/toplev.h exists in filesystem
    gcc: /usr/lib/gcc/x86_64-unknown-linux-gnu/4.5.1/plugin/include/tree-check.h exists in filesystem
    gcc: /usr/lib/gcc/x86_64-unknown-linux-gnu/4.5.1/plugin/include/tree-dump.h exists in filesystem
    gcc: /usr/lib/gcc/x86_64-unknown-linux-gnu/4.5.1/plugin/include/tree-flow-inline.h exists in filesystem
    gcc: /usr/lib/gcc/x86_64-unknown-linux-gnu/4.5.1/plugin/include/tree-flow.h exists in filesystem
    gcc: /usr/lib/gcc/x86_64-unknown-linux-gnu/4.5.1/plugin/include/tree-inline.h exists in filesystem
    gcc: /usr/lib/gcc/x86_64-unknown-linux-gnu/4.5.1/plugin/include/tree-iterator.h exists in filesystem
    gcc: /usr/lib/gcc/x86_64-unknown-linux-gnu/4.5.1/plugin/include/tree-pass.h exists in filesystem
    gcc: /usr/lib/gcc/x86_64-unknown-linux-gnu/4.5.1/plugin/include/tree-ssa-alias.h exists in filesystem
    gcc: /usr/lib/gcc/x86_64-unknown-linux-gnu/4.5.1/plugin/include/tree-ssa-operands.h exists in filesystem
    gcc: /usr/lib/gcc/x86_64-unknown-linux-gnu/4.5.1/plugin/include/tree-ssa-sccvn.h exists in filesystem
    gcc: /usr/lib/gcc/x86_64-unknown-linux-gnu/4.5.1/plugin/include/tree.def exists in filesystem
    gcc: /usr/lib/gcc/x86_64-unknown-linux-gnu/4.5.1/plugin/include/tree.h exists in filesystem
    gcc: /usr/lib/gcc/x86_64-unknown-linux-gnu/4.5.1/plugin/include/treestruct.def exists in filesystem
    gcc: /usr/lib/gcc/x86_64-unknown-linux-gnu/4.5.1/plugin/include/varray.h exists in filesystem
    gcc: /usr/lib/gcc/x86_64-unknown-linux-gnu/4.5.1/plugin/include/vec.h exists in filesystem
    gcc: /usr/lib/gcc/x86_64-unknown-linux-gnu/4.5.1/plugin/include/vecprim.h exists in filesystem
    gcc: /usr/lib/gcc/x86_64-unknown-linux-gnu/4.5.1/plugin/include/version.h exists in filesystem
    gcc: /usr/lib/libgomp.a exists in filesystem
    gcc: /usr/lib/libgomp.spec exists in filesystem
    gcc: /usr/lib/libmudflap.a exists in filesystem
    gcc: /usr/lib/libmudflapth.a exists in filesystem
    gcc: /usr/lib/libssp.a exists in filesystem
    gcc: /usr/lib/libssp_nonshared.a exists in filesystem
    gcc: /usr/lib/libstdc++.a exists in filesystem
    gcc: /usr/lib/libsupc++.a exists in filesystem
    gcc: /usr/share/gcc-4.5.1/python/libstdcxx/__init__.py exists in filesystem
    gcc: /usr/share/gcc-4.5.1/python/libstdcxx/v6/__init__.py exists in filesystem
    gcc: /usr/share/gcc-4.5.1/python/libstdcxx/v6/printers.py exists in filesystem
    gcc: /usr/share/info/cpp.info.gz exists in filesystem
    gcc: /usr/share/info/cppinternals.info.gz exists in filesystem
    gcc: /usr/share/info/gcc.info.gz exists in filesystem
    gcc: /usr/share/info/gccinstall.info.gz exists in filesystem
    gcc: /usr/share/info/gccint.info.gz exists in filesystem
    gcc: /usr/share/licenses/gcc/RUNTIME.LIBRARY.EXCEPTION exists in filesystem
    gcc: /usr/share/locale/be/LC_MESSAGES/cpplib.mo exists in filesystem
    gcc: /usr/share/locale/be/LC_MESSAGES/gcc.mo exists in filesystem
    gcc: /usr/share/locale/ca/LC_MESSAGES/cpplib.mo exists in filesystem
    gcc: /usr/share/locale/da/LC_MESSAGES/cpplib.mo exists in filesystem
    gcc: /usr/share/locale/da/LC_MESSAGES/gcc.mo exists in filesystem
    gcc: /usr/share/locale/de/LC_MESSAGES/cpplib.mo exists in filesystem
    gcc: /usr/share/locale/de/LC_MESSAGES/gcc.mo exists in filesystem
    gcc: /usr/share/locale/el/LC_MESSAGES/cpplib.mo exists in filesystem
    gcc: /usr/share/locale/el/LC_MESSAGES/gcc.mo exists in filesystem
    gcc: /usr/share/locale/es/LC_MESSAGES/cpplib.mo exists in filesystem
    gcc: /usr/share/locale/es/LC_MESSAGES/gcc.mo exists in filesystem
    gcc: /usr/share/locale/fi/LC_MESSAGES/cpplib.mo exists in filesystem
    gcc: /usr/share/locale/fi/LC_MESSAGES/gcc.mo exists in filesystem
    gcc: /usr/share/locale/fr/LC_MESSAGES/cpplib.mo exists in filesystem
    gcc: /usr/share/locale/fr/LC_MESSAGES/gcc.mo exists in filesystem
    gcc: /usr/share/locale/id/LC_MESSAGES/cpplib.mo exists in filesystem
    gcc: /usr/share/locale/id/LC_MESSAGES/gcc.mo exists in filesystem
    gcc: /usr/share/locale/ja/LC_MESSAGES/cpplib.mo exists in filesystem
    gcc: /usr/share/locale/ja/LC_MESSAGES/gcc.mo exists in filesystem
    gcc: /usr/share/locale/nl/LC_MESSAGES/cpplib.mo exists in filesystem
    gcc: /usr/share/locale/nl/LC_MESSAGES/gcc.mo exists in filesystem
    gcc: /usr/share/locale/ru/LC_MESSAGES/gcc.mo exists in filesystem
    gcc: /usr/share/locale/sr/LC_MESSAGES/gcc.mo exists in filesystem
    gcc: /usr/share/locale/sv/LC_MESSAGES/cpplib.mo exists in filesystem
    gcc: /usr/share/locale/sv/LC_MESSAGES/gcc.mo exists in filesystem
    gcc: /usr/share/locale/tr/LC_MESSAGES/cpplib.mo exists in filesystem
    gcc: /usr/share/locale/tr/LC_MESSAGES/gcc.mo exists in filesystem
    gcc: /usr/share/locale/uk/LC_MESSAGES/cpplib.mo exists in filesystem
    gcc: /usr/share/locale/vi/LC_MESSAGES/cpplib.mo exists in filesystem
    gcc: /usr/share/locale/vi/LC_MESSAGES/gcc.mo exists in filesystem
    gcc: /usr/share/locale/zh_CN/LC_MESSAGES/cpplib.mo exists in filesystem
    gcc: /usr/share/locale/zh_CN/LC_MESSAGES/gcc.mo exists in filesystem
    gcc: /usr/share/locale/zh_TW/LC_MESSAGES/cpplib.mo exists in filesystem
    gcc: /usr/share/locale/zh_TW/LC_MESSAGES/gcc.mo exists in filesystem
    gcc: /usr/share/man/man1/cpp.1.gz exists in filesystem
    gcc: /usr/share/man/man1/g++.1.gz exists in filesystem
    gcc: /usr/share/man/man1/gcc.1.gz exists in filesystem
    gcc: /usr/share/man/man1/gcov.1.gz exists in filesystem
    gcc: /usr/share/man/man3/C++Intro.3.gz exists in filesystem
    gcc: /usr/share/man/man3/SGIextensions.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__atomic0::atomic_address.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__atomic0::atomic_bool.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__atomic0::atomic_flag.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__atomic2::atomic_address.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__atomic2::atomic_bool.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__atomic2::atomic_flag.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_cxx.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_cxx::_Caster.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_cxx::_Char_types.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_cxx::_ExtPtr_allocator.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_cxx::_Invalid_type.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_cxx::_Pointer_adapter.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_cxx::_Relative_pointer_impl.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_cxx::_Std_pointer_impl.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_cxx::_Unqualified_type.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_cxx::__common_pool_policy.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_cxx::__detail.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_cxx::__detail::_Bitmap_counter.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_cxx::__detail::_Ffit_finder.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_cxx::__detail::__mini_vector.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_cxx::__mt_alloc.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_cxx::__mt_alloc_base.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_cxx::__per_type_pool_policy.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_cxx::__pool_alloc.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_cxx::__pool_alloc_base.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_cxx::__pool_base.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_cxx::__rc_string_base.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_cxx::__scoped_lock.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_cxx::__versa_string.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_cxx::annotate_base.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_cxx::array_allocator.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_cxx::array_allocator_base.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_cxx::binary_compose.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_cxx::bitmap_allocator.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_cxx::char_traits.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_cxx::character.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_cxx::condition_base.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_cxx::constant_binary_fun.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_cxx::constant_unary_fun.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_cxx::constant_void_fun.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_cxx::debug_allocator.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_cxx::enc_filebuf.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_cxx::encoding_char_traits.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_cxx::encoding_state.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_cxx::forced_error.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_cxx::free_list.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_cxx::hash_map.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_cxx::hash_multimap.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_cxx::hash_multiset.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_cxx::hash_set.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_cxx::limit_condition.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_cxx::limit_condition_always_adjustor.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_cxx::limit_condition_limit_adjustor.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_cxx::limit_condition_never_adjustor.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_cxx::malloc_allocator.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_cxx::new_allocator.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_cxx::project1st.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_cxx::project2nd.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_cxx::random_condition.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_cxx::random_condition_always_adjustor.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_cxx::random_condition_group_adjustor.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_cxx::random_condition_never_adjustor.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_cxx::rb_tree.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_cxx::recursive_init_error.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_cxx::rope.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_cxx::select1st.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_cxx::select2nd.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_cxx::slist.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_cxx::stdio_filebuf.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_cxx::stdio_sync_filebuf.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_cxx::subtractive_rng.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_cxx::temporary_buffer.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_cxx::throw_allocator_base.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_cxx::throw_allocator_limit.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_cxx::throw_allocator_random.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_cxx::throw_value_base.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_cxx::throw_value_limit.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_cxx::throw_value_random.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_cxx::typelist.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_cxx::unary_compose.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_debug.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_debug::_After_nth_from.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_debug::_Not_equal_to.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_debug::_Safe_iterator.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_debug::_Safe_iterator_base.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_debug::_Safe_sequence.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_debug::_Safe_sequence_base.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_debug::__is_same.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_debug::basic_string.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_internal.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_parallel.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_parallel::_DRSSorterPU.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_parallel::_DRandomShufflingGlobalData.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_parallel::_DummyReduct.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_parallel::_EqualFromLess.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_parallel::_EqualTo.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_parallel::_GuardedIterator.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_parallel::_IteratorPair.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_parallel::_IteratorTriple.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_parallel::_Job.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_parallel::_Less.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_parallel::_Lexicographic.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_parallel::_LexicographicReverse.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_parallel::_LoserTree.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_parallel::_LoserTreeBase.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_parallel::_LoserTreeBase__Loser.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_parallel::_LoserTreePointer.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_parallel::_LoserTreePointerBase.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_parallel::_LoserTreePointerBase__Loser.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_parallel::_LoserTreePointerUnguarded.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_parallel::_LoserTreePointerUnguardedBase.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_parallel::_LoserTreeTraits.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_parallel::_LoserTreeUnguarded.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_parallel::_LoserTreeUnguardedBase.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_parallel::_Multiplies.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_parallel::_Nothing.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_parallel::_PMWMSSortingData.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_parallel::_Piece.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_parallel::_Plus.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_parallel::_PseudoSequence.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_parallel::_PseudoSequenceIterator.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_parallel::_QSBThreadLocal.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_parallel::_RandomNumber.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_parallel::_RestrictedBoundedConcurrentQueue.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_parallel::_SamplingSorter.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_parallel::_Settings.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_parallel::_SplitConsistently.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_parallel::__accumulate_binop_reduct.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_parallel::__accumulate_selector.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_parallel::__adjacent_difference_selector.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_parallel::__adjacent_find_selector.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_parallel::__binder1st.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_parallel::__binder2nd.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_parallel::__count_if_selector.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_parallel::__count_selector.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_parallel::__fill_selector.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_parallel::__find_first_of_selector.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_parallel::__find_if_selector.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_parallel::__for_each_selector.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_parallel::__generate_selector.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_parallel::__generic_find_selector.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_parallel::__generic_for_each_selector.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_parallel::__identity_selector.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_parallel::__inner_product_selector.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_parallel::__max_element_reduct.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_parallel::__min_element_reduct.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_parallel::__mismatch_selector.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_parallel::__multiway_merge_3_variant_sentinel_switch.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_parallel::__multiway_merge_4_variant_sentinel_switch.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_parallel::__multiway_merge_k_variant_sentinel_switch.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_parallel::__replace_if_selector.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_parallel::__replace_selector.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_parallel::__transform1_selector.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_parallel::__transform2_selector.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_parallel::__unary_negate.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_parallel::balanced_quicksort_tag.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_parallel::balanced_tag.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_parallel::constant_size_blocks_tag.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_parallel::default_parallel_tag.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_parallel::equal_split_tag.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_parallel::exact_tag.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_parallel::find_tag.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_parallel::growing_blocks_tag.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_parallel::multiway_mergesort_exact_tag.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_parallel::multiway_mergesort_sampling_tag.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_parallel::multiway_mergesort_tag.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_parallel::omp_loop_static_tag.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_parallel::omp_loop_tag.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_parallel::parallel_tag.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_parallel::quicksort_tag.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_parallel::sampling_tag.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_parallel::sequential_tag.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_parallel::unbalanced_tag.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_pbds.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_pbds::associative_container_tag.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_pbds::basic_hash_table.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_pbds::basic_hash_tag.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_pbds::basic_tree.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_pbds::basic_tree_tag.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_pbds::binary_heap_tag.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_pbds::binomial_heap_tag.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_pbds::cc_hash_table.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_pbds::cc_hash_tag.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_pbds::container_base.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_pbds::container_tag.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_pbds::container_traits.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_pbds::gp_hash_table.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_pbds::gp_hash_tag.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_pbds::list_update.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_pbds::list_update_tag.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_pbds::null_mapped_type.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_pbds::ov_tree_tag.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_pbds::pairing_heap_tag.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_pbds::pat_trie_tag.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_pbds::priority_queue_tag.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_pbds::rb_tree_tag.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_pbds::rc_binomial_heap_tag.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_pbds::sequence_tag.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_pbds::splay_tree_tag.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_pbds::string_tag.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_pbds::thin_heap_tag.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_pbds::tree.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_pbds::tree_tag.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_pbds::trie.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_pbds::trie_tag.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_profile.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_profile::__container_size_info.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_profile::__container_size_stack_info.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_profile::__hashfunc_info.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_profile::__hashfunc_stack_info.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_profile::__list2vector_info.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_profile::__map2umap_info.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_profile::__map2umap_stack_info.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_profile::__object_info_base.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_profile::__reentrance_guard.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_profile::__stack_hash.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_profile::__stack_info_base.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_profile::__trace_base.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_profile::__trace_container_size.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_profile::__trace_hash_func.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_profile::__trace_hashtable_size.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_profile::__trace_map2umap.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_profile::__trace_vector_size.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_profile::__trace_vector_to_list.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_profile::__vector2list_info.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_profile::__vector2list_stack_info.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_profile::__warning_data.3.gz exists in filesystem
    gcc: /usr/share/man/man3/__gnu_sequential.3.gz exists in filesystem
    gcc: /usr/share/man/man3/abi::__forced_unwind.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::_Base_bitset.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::_Build_index_tuple.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::_Deque_base.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::_Deque_iterator.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::_Derives_from_binary_function.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::_Derives_from_unary_function.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::_Function_base.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::_Function_to_function_pointer.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::_Fwd_list_base.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::_Fwd_list_const_iterator.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::_Fwd_list_iterator.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::_Fwd_list_node.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::_Fwd_list_node_base.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::_Has_result_type_helper.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::_Index_tuple.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::_List_base.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::_List_const_iterator.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::_List_iterator.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::_List_node.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::_List_node_base.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::_Maybe_get_result_type.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::_Maybe_unary_or_binary_function.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::_Maybe_wrap_member_pointer.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::_Placeholder.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::_Reference_wrapper_base.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::_Safe_tuple_element.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::_Safe_tuple_element_impl.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::_Temporary_buffer.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::_Vector_base.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::_Weak_result_type.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::_Weak_result_type_impl.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::__basic_future.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::__codecvt_abstract_base.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::__ctype_abstract_base.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::__debug.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::__debug::bitset.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::__debug::deque.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::__debug::list.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::__debug::map.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::__debug::multimap.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::__debug::multiset.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::__debug::set.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::__debug::unordered_map.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::__debug::unordered_multimap.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::__debug::unordered_multiset.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::__debug::unordered_set.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::__debug::vector.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::__declval_protector.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::__detail.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::__exception_ptr_exception_ptr.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::__future_base.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::__future_base::_Ptr.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::__future_base::_Result.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::__future_base::_Result_base.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::__future_base::_State.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::__is_location_invariant.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::__numeric_limits_base.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::__parallel.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::__parallel::_CRandNumber.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::__profile.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::__profile::bitset.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::__profile::deque.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::__profile::list.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::__profile::map.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::__profile::multimap.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::__profile::multiset.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::__profile::set.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::__profile::unordered_map.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::__profile::unordered_multimap.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::__profile::unordered_multiset.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::__profile::unordered_set.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::add_lvalue_reference.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::add_rvalue_reference.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::aligned_storage.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::allocator.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::atomic.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::auto_ptr.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::auto_ptr_ref.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::back_insert_iterator.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::bad_alloc.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::bad_cast.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::bad_exception.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::bad_function_call.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::bad_typeid.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::basic_filebuf.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::basic_fstream.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::basic_ifstream.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::basic_ios.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::basic_iostream.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::basic_istream.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::basic_istream_sentry.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::basic_istringstream.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::basic_ofstream.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::basic_ostream.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::basic_ostream_sentry.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::basic_ostringstream.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::basic_streambuf.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::basic_string.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::basic_stringbuf.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::basic_stringstream.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::bernoulli_distribution.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::bernoulli_distribution_param_type.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::bidirectional_iterator_tag.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::binary_function.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::binary_negate.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::binder1st.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::binder2nd.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::binomial_distribution.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::binomial_distribution_param_type.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::bitset.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::bitset_reference.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::cauchy_distribution.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::cauchy_distribution_param_type.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::char_traits.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::chi_squared_distribution.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::chi_squared_distribution_param_type.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::chrono.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::chrono::duration.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::chrono::duration_values.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::chrono::system_clock.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::chrono::time_point.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::chrono::treat_as_floating_point.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::codecvt.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::codecvt_base.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::codecvt_byname.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::collate.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::collate_byname.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::complex.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::condition_variable.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::condition_variable_any.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::conditional.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::ctype.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::ctype_base.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::ctype_byname.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::decay.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::decimal.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::decimal::decimal128.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::decimal::decimal32.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::decimal::decimal64.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::default_delete.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::deque.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::discard_block_engine.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::discrete_distribution.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::discrete_distribution_param_type.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::divides.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::domain_error.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::enable_if.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::enable_shared_from_this.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::equal_to.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::error_category.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::error_code.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::error_condition.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::exception.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::exponential_distribution.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::exponential_distribution_param_type.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::extreme_value_distribution.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::extreme_value_distribution_param_type.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::filebuf.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::fisher_f_distribution.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::fisher_f_distribution_param_type.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::forward_iterator_tag.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::forward_list.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::fpos.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::front_insert_iterator.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::fstream.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::future.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::future_error.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::gamma_distribution.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::gamma_distribution_param_type.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::geometric_distribution.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::geometric_distribution_param_type.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::greater.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::greater_equal.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::gslice.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::gslice_array.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::has_nothrow_assign.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::has_nothrow_copy_constructor.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::has_nothrow_default_constructor.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::has_trivial_assign.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::has_trivial_copy_constructor.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::has_trivial_default_constructor.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::has_trivial_destructor.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::hash.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::identity.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::ifstream.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::independent_bits_engine.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::indirect_array.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::initializer_list.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::input_iterator_tag.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::insert_iterator.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::invalid_argument.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::ios.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::ios_base.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::ios_base_failure.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::iostream.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::is_base_of.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::is_bind_expression.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::is_constructible.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::is_convertible.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::is_error_code_enum.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::is_error_condition_enum.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::is_explicitly_convertible.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::is_lvalue_reference.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::is_placeholder.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::is_pod.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::is_reference.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::is_rvalue_reference.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::is_signed.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::is_standard_layout.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::is_trivial.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::is_unsigned.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::istream.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::istream_iterator.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::istreambuf_iterator.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::istringstream.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::iterator.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::iterator_traits.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::length_error.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::less.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::less_equal.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::linear_congruential_engine.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::list.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::locale.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::locale_facet.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::locale_id.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::lock_guard.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::logic_error.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::logical_and.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::logical_not.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::logical_or.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::lognormal_distribution.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::lognormal_distribution_param_type.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::make_signed.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::make_unsigned.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::map.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::mask_array.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::messages.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::messages_base.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::messages_byname.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::minus.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::modulus.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::money_base.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::money_get.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::money_put.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::moneypunct.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::moneypunct_byname.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::move_iterator.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::multimap.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::multiplies.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::multiset.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::mutex.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::negate.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::negative_binomial_distribution.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::negative_binomial_distribution_param_type.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::nested_exception.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::normal_distribution.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::normal_distribution_param_type.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::not_equal_to.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::num_get.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::num_put.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::numeric_limits.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::numpunct.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::numpunct_byname.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::ofstream.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::once_flag.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::ostream.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::ostream_iterator.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::ostreambuf_iterator.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::ostringstream.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::out_of_range.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::output_iterator_tag.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::overflow_error.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::pair.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::piecewise_constant_distribution.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::piecewise_constant_distribution_param_type.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::piecewise_linear_distribution.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::piecewise_linear_distribution_param_type.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::placeholders.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::plus.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::pointer_to_binary_function.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::pointer_to_unary_function.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::poisson_distribution.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::poisson_distribution_param_type.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::priority_queue.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::promise.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::queue.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::random_access_iterator_tag.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::random_device.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::range_error.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::ratio.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::ratio_add.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::ratio_divide.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::ratio_equal.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::ratio_greater.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::ratio_greater_equal.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::ratio_less.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::ratio_less_equal.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::ratio_multiply.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::ratio_not_equal.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::ratio_subtract.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::raw_storage_iterator.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::recursive_mutex.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::recursive_timed_mutex.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::reference_wrapper.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::rel_ops.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::remove_reference.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::reverse_iterator.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::runtime_error.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::seed_seq.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::set.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::shared_future.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::shared_ptr.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::shuffle_order_engine.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::slice.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::slice_array.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::stack.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::streambuf.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::string.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::stringbuf.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::stringstream.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::student_t_distribution.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::student_t_distribution_param_type.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::system_error.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::this_thread.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::thread.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::thread_id.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::time_base.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::time_get.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::time_get_byname.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::time_put.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::time_put_byname.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::timed_mutex.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::tr1.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::tr1::__detail.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::tr1::__is_member_pointer_helper.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::tr1::add_const.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::tr1::add_cv.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::tr1::add_pointer.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::tr1::add_volatile.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::tr1::alignment_of.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::tr1::array.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::tr1::bad_weak_ptr.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::tr1::extent.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::tr1::has_virtual_destructor.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::tr1::integral_constant.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::tr1::is_abstract.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::tr1::is_arithmetic.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::tr1::is_array.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::tr1::is_class.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::tr1::is_compound.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::tr1::is_const.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::tr1::is_empty.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::tr1::is_enum.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::tr1::is_floating_point.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::tr1::is_function.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::tr1::is_fundamental.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::tr1::is_integral.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::tr1::is_member_function_pointer.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::tr1::is_member_object_pointer.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::tr1::is_object.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::tr1::is_pointer.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::tr1::is_polymorphic.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::tr1::is_same.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::tr1::is_scalar.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::tr1::is_union.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::tr1::is_void.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::tr1::is_volatile.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::tr1::rank.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::tr1::remove_all_extents.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::tr1::remove_const.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::tr1::remove_cv.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::tr1::remove_extent.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::tr1::remove_pointer.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::tr1::remove_volatile.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::tuple.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::type_info.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::unary_function.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::unary_negate.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::underflow_error.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::uniform_int_distribution.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::uniform_int_distribution_param_type.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::uniform_real_distribution.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::uniform_real_distribution_param_type.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::unique_lock.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::unique_ptr.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::unordered_map.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::unordered_multimap.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::unordered_multiset.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::unordered_set.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::valarray.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::vector.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::weak_ptr.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::weibull_distribution.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::weibull_distribution_param_type.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::wfilebuf.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::wfstream.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::wifstream.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::wios.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::wiostream.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::wistream.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::wistringstream.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::wofstream.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::wostream.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::wostringstream.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::wstreambuf.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::wstring.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::wstringbuf.3.gz exists in filesystem
    gcc: /usr/share/man/man3/std::wstringstream.3.gz exists in filesystem
    gcc: /usr/share/man/man7/fsf-funding.7.gz exists in filesystem
    gcc: /usr/share/man/man7/gfdl.7.gz exists in filesystem
    gcc: /usr/share/man/man7/gpl.7.gz exists in filesystem
    Errors occurred, no packages were upgraded.
    Is this possible to solve faster than reinstall?
    Last edited by no_mad (2010-11-29 15:36:24)

    If these files aren't owned by another package (pacman -Qo /path/to/file), then do pacman -Sf gcc.

  • [solved] Pacman error on nvidia 180.22 update

    When I try update to nvidia 180.22-1 on testing appears the following error:
    :: klibc-extras: needs klibc-jfflyAahxqaliwAofrf_fdf5upI
    :: klibc-kbd: needs klibc-jfflyAahxqaliwAofrf_fdf5upI
    :: klibc-module-init-tools: needs klibc-jfflyAahxqaliwAofrf_fdf5upI
    :: klibc-udev: needs klibc-jfflyAahxqaliwAofrf_fdf5upI
    I don't know why this appears. Is a pacman bug?
    Last edited by alessandro_ufms (2009-01-15 11:34:35)

    alessandro_ufms wrote:
    I don't see any problems to use testing at last priority, so I update to testing only programs which I want testing (and your dependences).
    I think which the problem is on testing/mkinitcpio dependences.
    Because, if it depends klibc>=1.5.14-2 then mkiitcpio also depends  klibc-extras>=2.5-2, klibc-udev>=135-2, klibc-module-init-tools>=3.5-1 and klibc-udev>=135-2. On current PKGBUILD (http://repos.archlinux.org/viewvc.cgi/m … iew=markup) the stable versions of klibc-* are dependences.
    I know when this packages gone to core this problem is disappears because of the update all packages klibc together. But I think which if the version dependences were implemented, this error wouldn't appears.
    Thank you guys for support.
    YES, changing the dependencies of mkinitcpio could workaround your problem. BUT
    1) The current dependencies are fine and are NOT wrong. They just don't support perfectly the partial usage of testing, but as I said previously : PARTIAL USAGE OF TESTING IS NOT SUPPORTED
    2) This is not a show stopper. If you knew what you were doing, you could solve the issue yourself without changing any dependencies.
    3) Plazmic made a fine suggestion : if your goal is only getting the latest nvidia driver, it would be much better to simply use nvidia-beta on AUR, rather than trying to use testing partially without knowing what you are doing and bothering everyone here.

  • [Solved] Pacman fails to get packages http 403 or 404 error

    Hi,
    I'm not sure if I should raise this as a bug or not, or indeed if I am doing something fundamentally wrong...
    Pacman tells me there are updates to do, but:
    Using the mirror "mirrors.manchester.m247.com" I get a 404 error
    Using the mirror "http://mirror.bytemark.co.uk/archlinux/$repo/os/$arch" I get a 403 error
    example:
    # pacman -Syu
    :: Synchronizing package databases...
    core is up to date
    extra is up to date 0.0 B 0.00B/s 00:00 [-----------------------------------------------------------------------] 0%
    community is up to date 0.0 B 0.00B/s 00:00 [-----------------------------------------------------------------------] 0%
    multilib is up to date 0.0 B 0.00B/s 00:00 [-----------------------------------------------------------------------] 0%
    :: Starting full system upgrade...
    resolving dependencies...
    looking for conflicting packages...
    Packages (9) ca-certificates-mozilla-3.18-3 dhcpcd-6.8.1-1 gnupg-2.1.2-3 iptables-1.4.21-3 p11-kit-0.23.1-2 procps-ng-3.3.10-2 sudo-1.8.13-1 which-2.21-1 whois-5.2.7-1
    Total Download Size: 0.03 MiB
    Total Installed Size: 21.35 MiB
    Net Upgrade Size: 4.34 MiB
    :: Proceed with installation? [Y/n]
    :: Retrieving packages ...
    error: failed retrieving file 'whois-5.2.7-1-x86_64.pkg.tar.xz' from mirrors.manchester.m247.com : The requested URL returned error: 404
    warning: failed to retrieve some files
    error: failed to commit transaction (unexpected error)
    Errors occurred, no packages were upgraded.
    any ideas?
    [edited to add solved tag to title]
    Last edited by flangemonkey (2015-04-01 15:29:18)

    Hi flangemonkey,
    that mirror was not synced yet when you did the upgrade (the last sync ended today at 10:54 UTC, about 17 mitues after you posted on this borad). It should be ok now, just try to redo the update. Next time, you may want to check first the status of the mirrors https://www.archlinux.org/mirrors/status
    edit: typo
    Last edited by mauritiusdadd (2015-04-01 11:06:10)

  • [SOLVED]Pacman fails to update

    Hi,
    It's been a while, so I hope this issue can be resolved here, and I'll be on my best behaviour. I tried an update (system-wide) with
    pacman -Syu
    it came back with :
    error: failed to commit transaction (conflicting files)
    initscripts: /etc/profile.d/locale.sh exists in filesystem
    Errors occurred, no packages were upgraded.
    What do I do next?
    Thanks for helping out
    Thor
    Last edited by Thor@Flanders (2011-10-26 09:38:53)

    Will do, tnx.
    New-year resolution: read the news on-site more often.
    Marking this as solved
    Last edited by Thor@Flanders (2011-10-26 09:38:33)

  • [SOLVED] Pacman hangs at sync

    Any idea why? I got my rt73 wireless working, and was able to go on the internet with links, but synchronizing with pacman is stuck at 'Synchronizing Package Databases'.
    Is it because pacman is too old and I need to upgrade it first or what?
    Last edited by Firepower (2009-12-17 04:36:40)

    Ok. Just solved it. Had to upgrade pacman. thanks.

  • [Solved] Pacman fails to satisfied java-runtime dependency on upgrade

    Hi. So I haven't been able to upgrade yesterday or today because of this bug. I couldn't figure out how to solve it on my own.
    This is what happens when I try to upgrade:
    jake@levi> sudo pacman -Syyu ~
    :: Synchronizing package databases...
    core 104.8 KiB 76.7K/s 00:01 [##################################################################################################] 100%
    extra 1389.5 KiB 187K/s 00:07 [##################################################################################################] 100%
    community 1549.8 KiB 191K/s 00:08 [##################################################################################################] 100%
    multilib 89.7 KiB 145K/s 00:01 [##################################################################################################] 100%
    :: Starting full system upgrade...
    resolving dependencies...
    looking for inter-conflicts...
    error: failed to prepare transaction (could not satisfy dependencies)
    :: languagetool: requires java-runtime>=6
    :: rhino: requires java-runtime
    I have jre7-openjdk-headless already installed, which provides java-runtime 7, so I don't see why I could be running into any problems.
    [1] jake@levi> pacman -Qi jre7-openjdk-headless ~
    Name : jre7-openjdk-headless
    Version : 7.b147_2.1-1
    URL : http://icedtea.classpath.org
    Licenses : custom
    Groups : None
    Provides : java-runtime=7
    Depends On : libjpeg-turbo lcms2 nss ca-certificates-java rhino
    Optional Deps : libcups: needed for Java Mauve support - libmawt.so
    fontconfig: needed for Java Mauve support - libmawt.so
    Required By : languagetool rhino
    Conflicts With : java-runtime openjdk6
    Replaces : None
    Installed Size : 107421.00 KiB
    Packager : Andreas Radke <[email protected]>
    Architecture : x86_64
    Build Date : Wed Feb 15 06:36:20 2012
    Install Date : Thu Mar 1 14:06:19 2012
    Install Reason : Installed as a dependency for another package
    Install Script : Yes
    Description : Free Java environment based on OpenJDK 7.0 with IcedTea7 replacing binary plugs - Minimal Java runtime - needed for executing non GUI Java programs
    There could be something I don't understand though. Any help is appreciated.
    Last edited by Coward (2012-03-08 00:30:57)

    mira wrote:
    Karol's advice did not worked for me, so I did this:
    pacman -Rdd jre7-openjdk-headless
    and after that this:
    pacman -S jre7-openjdk
    and then the update worked as it should. Hope that helps somebody.
    Not sure what was the issue in your case, but I did say "Try to ignore the conflicts and see if it works out." and by that I meant the '-dd' switch.
    Now I see I should have been explicit about it as my comment doesn't make it clear at all.

  • [SOLVED]Pacman update fails

    Hi,
    Yesterday everything was working great but today it isn't anymore.
    The problem
    I did
    pacman -Syu
    Output:
    sudo pacman -Syu
    :: Synchronizing package databases...
    core is up to date
    extra is up to date
    community is up to date
    archlinuxfr is up to date
    :: The following packages should be upgraded first :
    pacman
    :: Do you want to cancel the current operation
    :: and upgrade these packages now? [Y/n]
    So i choose Y and i get this:
    resolving dependencies...
    looking for inter-conflicts...
    error: failed to prepare transaction (could not satisfy dependencies)
    :: package-query: requires pacman<3.5
    :: pacman-color: requires pacman=3.4.3
    What does this mean and how can I solve this?
    As described here: https://bbs.archlinux.org/viewtopic.php?pid=907659
    I removed yaourt but this didn't solve the problem
    Thanks in advance!
    Last edited by tgoossens (2011-03-24 12:11:46)

    I had this same problem, and I went through the instructions as posted, but it must have removed pacman in the process. Now, I cannot update anything. I went through the stickied topic on pacman but it didn't work. I found some instructions on downloading pacman and installing it manually, but now every time I run the pacman command I get:
    pacman: error while loading shared libraries: libalpm.so.6: cannot open shared object file: No such file or directory
    I googled that and none of those instructions work for me. Is there a way I can save my system?
    Edit: And now my laptop has the same error preventing me from updating Pacman, what should I do to resolve that one? I would think that something in the repositories needs to be fixed and this is probably a bug, considering the home page doesn't say anything about it.
    Edit 2: I did the following
    sudo mv /usr/lib/liblzma.so /usr/lib/liblzma.so.0
    And now pacman works, but it cannot find a single mirror that I have set up, it says "error retrieving file" on everything.
    Edit 3: Nevermind, I give up. I'm going to wipe and reformat my computer. This is RIDICULOUS. I hope the same problem doesn't happen to my laptop, what is the *official* way to fix the "package-query: requires pacman<3.5" problem?
    Last edited by jlacroix (2011-03-24 14:23:20)

  • [SOLVED] Pacman failed retrieving file 'core.db' after removing KDE

    Hey, I had to remove KDE and foolishly used the -Rsc flag. Now, trying to update yields:
    [root@Gal-PC2 gal]# pacman -Sy
    :: Synchronizing package databases...
    error: failed retrieving file 'core.db' from mirror.isoc.org.il : Resolving timed out after 10524 milliseconds
    error: failed retrieving file 'core.db' from mirror.us.leaseweb.net : Resolving timed out after 10523 milliseconds
    I tryed using the -Sy and -Syy flags to update the database, and made sure I am not using ipv6. I think the -Rsc flag might deleted an importent package. I can connect to the net, and I can acess mirrors using http and I can ping the mirrors. The error persists on a large number of mirrors. Any help will be appriciated.
    Last edited by Greenstuff (2015-02-08 20:49:24)

    Sorry, will do!
    The debug printed a lot of the first errors, so I cut them. This is what pacman --Syu --debug show:
    debug: adding new server URL to database 'multilib': [url]http://ftp.nluug.nl/pub/os/Linux/distr/archlinux/multilib/os/x86_64[/url]
    debug: adding new server URL to database 'multilib': [url]http://ftp.ds.hj.se/pub/os/linux/archlinux/multilib/os/x86_64[/url]
    debug: adding new server URL to database 'multilib': [url]http://ftp.uni-kl.de/pub/linux/archlinux/multilib/os/x86_64[/url]
    debug: adding new server URL to database 'multilib': [url]http://ftp.tu-chemnitz.de/pub/linux/archlinux/multilib/os/x86_64[/url]
    debug: adding new server URL to database 'multilib': [url]http://mirror.lnx.sk/pub/linux/archlinux/multilib/os/x86_64[/url]
    debug: adding new server URL to database 'multilib': [url]http://mirrors.st.uz/archlinux/multilib/os/x86_64[/url]
    debug: adding new server URL to database 'multilib': [url]http://mirrors.mithril.org.ua/linux/archlinux/multilib/os/x86_64[/url]
    debug: adding new server URL to database 'multilib': [url]http://piotrkosoft.net/pub/mirrors/ftp.archlinux.org/multilib/os/x86_64[/url]
    debug: adding new server URL to database 'multilib': [url]http://ftp.uni-bayreuth.de/linux/archlinux/multilib/os/x86_64[/url]
    debug: adding new server URL to database 'multilib': [url]http://artfiles.org/archlinux.org/multilib/os/x86_64[/url]
    debug: adding new server URL to database 'multilib': [url]http://repo.ukdw.ac.id/archlinux/multilib/os/x86_64[/url]
    debug: adding new server URL to database 'multilib': [url]http://linux.cs.nctu.edu.tw/archlinux/multilib/os/x86_64[/url]
    debug: adding new server URL to database 'multilib': [url]http://ftp.kaist.ac.kr/ArchLinux/multilib/os/x86_64[/url]
    debug: config: new section '(null)'
    debug: config: finished parsing /etc/pacman.conf
    :: Synchronizing package databases...
    debug: url: [url]http://mirror.isoc.org.il/pub/archlinux/core/os/x86_64/core.db[/url]
    debug: maxsize: 26214400
    debug: using time condition: 1422991262
    debug: opened tempfile for download: /var/lib/pacman/sync/core.db.part (wb)
    debug: curl returned error 28 from transfer
    error: failed retrieving file 'core.db' from mirror.isoc.org.il : Resolving timed out after 10523 milliseconds
    debug: url: [url]http://mirror.us.leaseweb.net/archlinux/core/os/x86_64/core.db[/url]
    debug: maxsize: 26214400
    debug: using time condition: 1422991262
    debug: opened tempfile for download: /var/lib/pacman/sync/core.db.part (wb)
    EDIT: SOLVED!
    Ok, so I did indeed disable ipv6 as I promised, but turns out I put in the GRUB kernel line "ipv6.disable_ipv6=1". Upon re-reading the wiki, turns out this means ipv6 is disabled but tunnels with ipv6 may be opened by programs. I changed to "ipv6.disable=1" and pacman updates away! I hope others will find this usefull. Be careful!
    Last edited by Greenstuff (2015-02-08 20:52:45)

Maybe you are looking for

  • What can you do to access Password options in the Security window if your Firefox browser won't display the options?

    I want to stop and prevent my Firefox browser from saving website passwords, which I understand can be done using the Security window. https://support.mozilla.org/en-US/kb/security-and-passwords-settings?esab=a&s=passwords&r=1&as=s Unfortunately, onc

  • Error msg upon exit homesite

    Hi, Appreciate it if anyone can help to give any clues why this 3 msg pop up everytime I exit homesite. The os used on the pc is Windows XP. Thanks a lot! 1) Homesite has encountered a problem and needs to close. We are sorry for the inconvenience. 2

  • Missing Windows Icons on JNLP app?

    Jave Web Start fans: We have been using Java Web Start since it's inception to deploy a laboratory management application onto the desktops of folks that use our laboratory .... and it's great, in our experience. Our software has been deployed to a n

  • Webvpn - can't save changes to applications

    Hi, I have Cisco 1940 router with IOS version 15.0(1)M4. I have configured WebVPN for access to my internal applications. From Chrome and Mozilla I can login to webvpn portal and than to applications, but I can't save changes (input) to applications

  • ParallelElement, BitmapData and SecurityError

    Hi all, I've been trying to do something and I think I might be making it harder than it actually is, so I thought I'd ask. I have a ParallelElement that loads 2 videos, this ParallelElement is about 600 * 480 pixels. After that I add a Bitmap instan