From 337f3368f1614a814cf2f08918365e4fba0de475 Mon Sep 17 00:00:00 2001 From: ricardosetton Date: Sun, 28 Dec 2025 15:34:26 -0300 Subject: [PATCH 1/2] Update install_dependencies_linux.sh Installation instructions referred to the VulkanSDK Linux tarball as a tar.gz, but on the lunarg website it is provided as a tar.xz. Changed the command to reflect that. --- scripts/install_dependencies_linux.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/install_dependencies_linux.sh b/scripts/install_dependencies_linux.sh index f82a83e7..b358d319 100755 --- a/scripts/install_dependencies_linux.sh +++ b/scripts/install_dependencies_linux.sh @@ -121,7 +121,7 @@ echo "Now you need to install the Vulkan SDK:" echo "1. Download the tarball from https://vulkan.lunarg.com/" echo "2. Extract it to a convenient location, for example:" echo " mkdir -p ~/vulkansdk" -echo " tar -xzf vulkansdk-linux-x86_64-.tar.gz -C ~/vulkansdk" +echo " tar -xf vulkansdk-linux-x86_64-.tar.xz -C ~/vulkansdk" echo " cd ~/vulkansdk" echo " ln -s default" echo "" From 9a617956764920be7d83c15bba1d71298bac3547 Mon Sep 17 00:00:00 2001 From: ricardosetton Date: Sun, 28 Dec 2025 15:41:04 -0300 Subject: [PATCH 2/2] Update 02_Development_environment.adoc Linux installation instructions referred to the VulkanSDK Linux tarball as a .tgz, but on the lunarg website it is provided as a tar.xz. Changed the command to reflect that. --- en/02_Development_environment.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/en/02_Development_environment.adoc b/en/02_Development_environment.adoc index 387e4a23..14ba6540 100644 --- a/en/02_Development_environment.adoc +++ b/en/02_Development_environment.adoc @@ -317,7 +317,7 @@ link to the latest on like so: [,shell] ---- pushd vulkansdk -tar -xzf vulkansdk-linux-x86_64-1.4.304.1.tgz +tar -xf vulkansdk-linux-x86_64-1.4.304.1.tar.xz ln -s 1.4.304.1 default ----