Skip to main content
Topic solved
This topic has been marked as solved and requires no further attention.
Topic: [SOLVED] Can't synch with lib32 or multilib repositories (Read 1539 times) previous topic - next topic
0 Members and 1 Guest are viewing this topic.

[SOLVED] Can't synch with lib32 or multilib repositories

I wanted to install some 32bit packages like wine, but for some reason I can't use the 32bit repositories, and *exclusively* those. Their lines are uncommented in pacman.conf, and commenting the lines of other repos will make them not work as expected. pacman does not issue any warning or error, just silently ignores those repos.

Re: Can't synch with lib32 or multilib repositories

Reply #1
For clarity's sake, pacman does issue a warning when it can't synch with the normal repos, it just doesn't with the 32b ones

Re: Can't synch with lib32 or multilib repositories

Reply #2
Shouldn't be possible. What's the output of pacman -Syy?

Re: Can't synch with lib32 or multilib repositories

Reply #3
Can you show us your pacman.conf ?

Re: Can't synch with lib32 or multilib repositories

Reply #4
Here's the pacman.conf.
Code: [Select]
#
# /etc/pacman.conf
#
# See the pacman.conf(5) manpage for option and repository directives

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

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

#NoUpgrade   =
#NoExtract   =

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

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

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

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

# The gremlins repositories are disabled by default. To enable, uncomment the
# repo name header and Include lines. You can add preferred servers immediately
# after the header, and they will be used before the default mirrors.

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

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

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

#[galaxy-gremlins]
#Include = /etc/pacman.d/mirrorlist

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

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

#[lib32-gremlins]
#Include = /etc/pacman.d/mirrorlist

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

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

#
# ARCHLINUX
#

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

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

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

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

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

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

pacman -Syy resynched all of the normal repos, leaving out the 32bit ones, giving no errors or warnings.

Re: Can't synch with lib32 or multilib repositories

Reply #5
lib32 and multilib are still commented out.
you need to uncomment the [lib32] and  [multilib] line

See how entries for other repositories look
Code: [Select]
[repositore_name]
Include = mirrorlist

What you did is you added another include option do previous entry

 

Re: Can't synch with lib32 or multilib repositories

Reply #6
Oh god, what a mistake. I'm sorry to have taken up your time. And thank you.