From ccc757e03a107c4ba079070e2ff3453c2f6e86d2 Mon Sep 17 00:00:00 2001 From: MattTheTekie <94870997+MattTheTekie@users.noreply.github.com> Date: Mon, 14 Aug 2023 11:50:34 -0400 Subject: [PATCH] Update installation.txt --- _pages/en_US/installation.txt | 13 ++----------- 1 file changed, 2 insertions(+), 11 deletions(-) diff --git a/_pages/en_US/installation.txt b/_pages/en_US/installation.txt index 63db99900..6665c9fb5 100644 --- a/_pages/en_US/installation.txt +++ b/_pages/en_US/installation.txt @@ -9,31 +9,22 @@ title: "Installing RPCSX" ### Compatibility Notes For the foreseeable future, installation will require Linux in some form. +{: .notice--info} ### Method 1: Linux - -#### Section I - Install dependencies. -### Ubuntu based systems: -Install dependencies. +#### Section I - Install dependencies `sudo apt install build-essential cmake libunwind-dev libglfw3-dev libvulkan-dev vulkan-validationlayers-dev spirv-tools glslang-tools libspirv-cross-c-shared-dev` ### Fedora based systems: -Install traditional dependencies. `sudo dnf install cmake libunwind-devel glfw-devel vulkan-devel vulkan-validation-layers-devel spirv-tools glslang-devel gcc-c++ gcc spirv-tools-devel xbyak-devel` -Install `spirv-cross`. `git clone https://github.com/KhronosGroup/SPIRV-Cross && cd SPIRV-Cross && mkdir build && cd build && cmake .. && cmake --build . && sudo make install` ### Arch based systems: -Install traditional dependencies. `sudo pacman -S libunwind glfw-x11 vulkan-devel glslang` -Pull `spirv-cross` from the AUR. **Skip the first line if you have `yay` already.** `sudo pacman -S --needed git base-devel && git clone https://aur.archlinux.org/yay.git && cd yay && makepkg -si` `yay -S spirv-cross` #### Section II - Continued Installation: -Clone the repo. `git clone --recursive https://github.com/RPCSX/rpcsx && cd rpcsx git submodule update --init --recursive` -Compile the emulator. `mkdir -p build && cd build && cmake .. && cmake --build .` -Create a virtual HDD. Note that the PS4 filesystem is case-insensitive. `truncate -s 512M ps4-hdd.exfat mkfs.exfat -n PS4-HDD ./ps4-hdd.exfat mkdir ps4-fs