Mesa 22 and Vulkan-Loader (libvulkan1) needed for gaming

Kindly how can install Mesa 22 and Vulkan-Loader (libvulkan1) I did do search by doing sudo swupd search for both but nothing came out

$ sudo swupd search-file libvulkan
Downloading all Clear Linux manifests
[100%]

Searching for ‘libvulkan’

Bundle binutils [installed] (383 MB on system)
/usr/share/clear/optimized-link-scripts/scripts.ld/–usr–lib64–libvulkan.so.1.3.269.ld
/usr/share/clear/optimized-link-scripts/scripts.gold/–usr–lib64–libvulkan.so.1.3.269.gold

Bundle devpkg-Vulkan-Loader [installed] (7950 MB on system)
/usr/lib64/libvulkan.so.1.3.270
/usr/lib64/libvulkan.so.1
/usr/lib64/libvulkan.so

Bundle lib-opengl [installed] (2717 MB on system)
/usr/lib64/libvulkan_radeon.so
/usr/lib64/libvulkan_lvp.so
/usr/lib64/libvulkan_intel_hasvk.so
/usr/lib64/libvulkan_intel.so
/usr/lib64/libvulkan.so.1.3.270
/usr/lib64/libvulkan.so.1

Bundle qt-basic [installed] (4060 MB on system)
/usr/lib64/qt5/plugins/wayland-graphics-integration-client/libvulkan-server.so

Bundle wine (1920 MB to install)
/usr/lib64/wine/libvulkan-1.a
/usr/lib32/wine/libvulkan-1.a
/usr/lib32/libvulkan_radeon.so
/usr/lib32/libvulkan_lvp.so
/usr/lib32/libvulkan_intel_hasvk.so
/usr/lib32/libvulkan_intel.so
/usr/lib32/libvulkan.so.1.3.270
/usr/lib32/libvulkan.so.1

how can
so doI copy for /usr/lib64/wine/libvulkan-1.a into the terminal or how does it work

Search the repo using the search-file command like he’s shown you and add the bundle you want to install with bundle-add.

// eg:
sudo swupd bundle-add wine

so for example sudo swupd bundle-add /libvulkan-1.a am I getting right

no, search-file shows each instance of your file being found in the repo
the bundle is shown as a “heading”

$ sudo swupd search-file libvulkan
Downloading all Clear Linux manifests
[100%]

Searching for ‘libvulkan’

Bundle qt-basic [installed] (4060 MB on system)
/usr/lib64/qt5/plugins/wayland-graphics-integration-client/libvulkan-server.so

Bundle wine (1920 MB to install)
/usr/lib64/wine/libvulkan-1.a
/usr/lib32/wine/libvulkan-1.a
/usr/lib32/libvulkan_radeon.so
/usr/lib32/libvulkan_lvp.so
/usr/lib32/libvulkan_intel_hasvk.so
/usr/lib32/libvulkan_intel.so
/usr/lib32/libvulkan.so.1.3.270
/usr/lib32/libvulkan.so.1

as you can see, Bundles qt-basic and wine both have hits for the search

Bundle qt-basic [installed] (4060 MB on system)

you can see that this bundle is already installed with the [installed] moniker

Bundle wine (1920 MB to install)

this bundle can be installed as it says.
So

  1. find out the bundle name of what you need
  2. run bundle-add with that name
  3. profit