You are not logged in.
Pages: 1
Hi is there an easier way to install all the lib32-* packages without having to go through all of them. i need lib32-* to run virtualbox 32 bit client. i could however pipe the pacman -Ss lib32 output to a textfile but then i wil have to clean up before i could use it and its alot of things to clean up and im not good with sed. Thanks.
Offline
What exactly are you trying to do. What happens if you don't have these packages installed?
Offline
Shouldn't the multilib repo be pulling the depends automatically?
Offline
I don't even know which package MrPotato is trying to install. I'm not a VB guru, but all VB pacakges are in [community] https://www.archlinux.org/packages/?sort=&q=virtualbox , no [multilib] in sight.
Offline
Ooh, I totally forgot that vmware is a standalone installer. You'd have to install the dependencies manually, but are their really that many anyways? Why would you ever even need to use the 32-bit version on a 64-bit computer
Last edited by xtraroot (2014-01-15 02:39:29)
Offline
OP said virtualbox, not vmware.
Offline
Oh yeah, so I'm just as confused again :S
Last edited by xtraroot (2014-01-15 03:28:04)
Offline
i could however pipe the pacman -Ss lib32 output to a textfile but then i wil have to clean up before i could use it and its alot of things to clean up and im not good with sed. Thanks.
I have no idea why do you need all lib32 packages, but "pacman -Ssq lib32" will give you plain names of all lib32 packages, separated by newlines.
[kacper@komputer ~]$ pacman -Ssq lib32
lib32-acl
lib32-alsa-lib
lib32-alsa-oss
lib32-alsa-plugins
lib32-ati-dri
lib32-atk
lib32-attr
lib32-bzip2
lib32-cairo
lib32-cdparanoia
lib32-celt
lib32-curl
lib32-dbus
lib32-e2fsprogs
lib32-elfutils
lib32-expat
lib32-fakeroot
lib32-flac
lib32-flashplugin
lib32-fontconfig
lib32-freetype2
lib32-gcc-libs
lib32-gdk-pixbuf2
lib32-gettext
lib32-giflib
lib32-glew
lib32-glib
lib32-glib2
lib32-glibc
lib32-glu
lib32-gmp
lib32-gnutls
lib32-gstreamer0.10
lib32-gstreamer0.10-base
lib32-gstreamer0.10-base-plugins
lib32-gtk
lib32-gtk2
lib32-harfbuzz
lib32-icu
lib32-intel-dri
lib32-jack
lib32-jack2
lib32-json-c
lib32-keyutils
lib32-krb5
lib32-lcms
lib32-lcms2
lib32-libaio
lib32-libao
lib32-libasyncns
lib32-libcanberra
lib32-libcanberra-pulse
lib32-libcap
lib32-libcl
lib32-libcups
lib32-libdrm
lib32-libffi
lib32-libgcrypt
lib32-libglade
lib32-libgpg-error
lib32-libice
lib32-libidn
lib32-libjpeg-turbo
lib32-libldap
lib32-liblphobos-devel
lib32-libltdl
lib32-libmikmod
lib32-libmng
lib32-libogg
lib32-libpciaccess
lib32-libphobos
lib32-libphobos-devel
lib32-libpng
lib32-libpng12
lib32-libpulse
lib32-libsamplerate
lib32-libsm
lib32-libsndfile
lib32-libssh2
lib32-libstdc++5
lib32-libtasn1
lib32-libtheora
lib32-libtiff
lib32-libtxc_dxtn
lib32-libvisual
lib32-libvorbis
lib32-libx11
lib32-libxau
lib32-libxcb
lib32-libxcomposite
lib32-libxcursor
lib32-libxdamage
lib32-libxdmcp
lib32-libxext
lib32-libxfixes
lib32-libxft
lib32-libxi
lib32-libxinerama
lib32-libxml2
lib32-libxmu
lib32-libxrandr
lib32-libxrender
lib32-libxshmfence
lib32-libxss
lib32-libxt
lib32-libxtst
lib32-libxv
lib32-libxvmc
lib32-libxxf86vm
lib32-llvm
lib32-llvm-libs
lib32-mesa
lib32-mesa-demos
lib32-mesa-libgl
lib32-mpg123
lib32-ncurses
lib32-nettle
lib32-nouveau-dri
lib32-nspr
lib32-nss
lib32-nvidia-304xx-utils
lib32-nvidia-cg-toolkit
lib32-nvidia-libgl
lib32-nvidia-utils
lib32-openal
lib32-opencl-304xx-nvidia
lib32-opencl-nvidia
lib32-opencl-nvidia-304xx
lib32-openssl
lib32-orc
lib32-p11-kit
lib32-pango
lib32-pcre
lib32-pixman
lib32-portaudio
lib32-primus
lib32-qt4
lib32-readline
lib32-sdl
lib32-sdl2
lib32-sdl_image
lib32-sdl_ttf
lib32-soundtouch
lib32-speex
lib32-sqlite
lib32-systemd
lib32-tdb
lib32-util-linux
lib32-v4l-utils
lib32-virtualgl
lib32-wxgtk2.8
lib32-xcb-util
lib32-xz
lib32-zlibSo this should install all lib32 things: "pacman -Ssq lib32 | pacman -S -"
Last edited by korn36 (2014-01-15 20:22:27)
Offline
He doesn't need all of them, he only needs to substitute the ones he has installed and not e.g. lib32-wxgtk2.8 or lib32-nvidia-304xx-utils (if he's using e.g. Intel graphics card).
Offline
So this should install all lib32 things: "pacman -Ssq lib32 | pacman -S -"
He doesn't need all of them, he only needs to substitute the ones he has installed and not e.g. lib32-wxgtk2.8 or lib32-nvidia-304xx-utils (if he's using e.g. Intel graphics card).
I would imagine it would cause conflicts, problems and a lot of headaches if he tried to installed all of them.
Offline
He doesn't need all of them, he only needs to substitute the ones he has installed and not e.g. lib32-wxgtk2.8 or lib32-nvidia-304xx-utils (if he's using e.g. Intel graphics card).
The first sentence of the OP is the source of confusion. I wondered the same thing when I read this yesterday (you want to install all of them but not go through all of them? Huh?), and figured it was probably miscommunication. Until MrPotato gets back with a reason why lib32* packages would be needed for VirtualBox, there's nothing anyone can really advise.
Offline
Pages: 1