You are not logged in.
Pages: 1
I was trying to open blender when I realized that something was wrong. so after opening blender with the terminal I get
"blender: error while loading shared libraries: libtbb.so.12: cannot open shared object file: No such file or directory"
after about a week of looking around, I haven't found anything related to this specific library other than on the "Todo page" found here: https://archlinux.org/todo/tbb-20214-rebuild/
is there a wiki, github, gitlab, or dependency that can show me what I need to do/install to fix this issue?
Offline
A soname error would suggest you have been running partial upgrades. Don't do that.
Fix it with
# pacman -Syu
Which you are supposed to have done before opening a thread...
Jin, Jîyan, Azadî
Offline
that's what gets me. I have ran pacman -Syu multiple times and haven't had any dependency issues other than 2 lib32 alsa plugins. but that part just started today
Offline
tbb is at .so.2 since July 2020, the last blender update is from last Saturday, but also doesn't depend on tbb directly.
You most likely installed some middleware from the AUR
Check
type blender
lddtree /usr/bin/blender
pacman -Qi blender tbb
Offline
the only thing that looks off other than that the libtbb.so.12 file has no directory. I ran "ls /usr/lib/ |grep libtbb" and the file doesn't exist. perhaps it was removed when I uninstalled something from the AUR? I will manually download the package and move the missing file
Offline
libtbb.so.12 is actually the version in testing, so you likely added the one, but not all testing repos.
Please post your pacman.conf
Offline
I got it working now. but just in case, I will post the conf
#
# /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
NoProgressBar
CheckSpace
#ILoveCandy
#VerbosePkgLists
#ParallelDownloads = 5
# 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 Arch Linux
# packagers with `pacman-key --populate archlinux`.
#
# REPOSITORIES
# - can be defined here or included from another file
# - pacman will search repositories in the order defined here
# - local/custom mirrors can be added here or in separate files
# - repositories listed first will take precedence when packages
# have identical names, regardless of version number
# - URLs will have $repo replaced by the name of the current repo
# - URLs will have $arch replaced by the name of the architecture
#
# Repository entries are of the format:
# [repo-name]
# Server = ServerName
# Include = IncludePath
#
# The header [repo-name] is crucial - it must be present and
# uncommented to enable the repo.
#
# The testing repositories are disabled by default. To enable, uncomment the
# repo name header and Include lines. You can add preferred servers immediately
# after the header, and they will be used before the default mirrors.
#[testing]
#Include = /etc/pacman.d/mirrorlist
[core]
Include = /etc/pacman.d/mirrorlist
[extra]
Include = /etc/pacman.d/mirrorlist
[community-testing]
Include = /etc/pacman.d/mirrorlist
[community]
Include = /etc/pacman.d/mirrorlist
# If you want to run 32 bit applications on your x86_64 system,
# enable the multilib repositories as required here.
[multilib-testing]
Include = /etc/pacman.d/mirrorlist
[multilib]
Include = /etc/pacman.d/mirrorlist
# An example of a custom package repository. See the pacman manpage for
# tips on creating your own repositories.
#[custom]
#SigLevel = Optional TrustAll
#Server = file:///home/custompkgs
Offline
Please wrap that in code tags and - just in case: y ouwant to fix that
Testing is all or nothing and you don't have the testing repo enable (what provides the new tbb) but commnity-testing (providing blender that depends on the newer tbb)
Offline
sorry about that. I forgot how to wrap the code. and thank you for the suggestion
even my minor issue was fixed by uncommenting testing
Last edited by DJsnackCakes (2021-12-07 20:51:00)
Offline
Hence the big red warning...
https://wiki.archlinux.org/title/Offici … positories
Offline
Pages: 1