-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
621f748
commit d1b7650
Showing
11 changed files
with
99 additions
and
74 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
--- | ||
title: Setting up PSPLINK on Linux | ||
layout: home | ||
nav_exclude: true | ||
--- | ||
|
||
# Setting up PSPLINK on Linux | ||
{: .fs-8 .fw-700 .text-center } | ||
|
||
With Linux PSPLINK will work without making any changes, but it will require using sudo for the `usbhostfs_pc` command. To make it work without sudo, a udev rule can be added. | ||
|
||
To make using PSPLINK without sudo create file called `/etc/udev/rules.d/50-psplink.rules` (for example with `sudo nano /etc/udev/rules.d/50-psplink.rules`) and add the following content: | ||
|
||
``` | ||
SUBSYSTEM=="usb", ATTR{idVendor}=="054c", ATTR{idProduct}=="01c9", SYMLINK+="psp", MODE="0666" | ||
``` | ||
|
||
Save this, in Nano this can be done with Ctrl+O and pressing enter. The run the following command: | ||
|
||
``` | ||
sudo udevadm control --reload | ||
``` | ||
|
||
Now PSPLINK can be used without sudo. Continue with the instructions on the [Debugging](../debugging.html) page. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
--- | ||
title: Setting up PSPLINK on Windows | ||
layout: home | ||
nav_exclude: true | ||
--- | ||
|
||
# Setting up PSPLINK on Windows | ||
{: .fs-8 .fw-700 .text-center } | ||
|
||
On Windows a driver needs to be installed before PSPLINK can be used. To do this take the following steps: | ||
|
||
1. Make sure the programs `usbhostfs_pc` and `pspsh` are available in cmd. Otherwise download them [here](https://github.com/pspdev/psplinkusb/releases/download/latest/pspsh-windows.zip). | ||
2. Start PSPLINK on the Playstation Portable and connect it to the computer through USB. | ||
3. Download [Zadig](https://zadig.akeo.ie/) and start it. It will ask if you want to run it as administrator, click yes. | ||
4. In Zadig, click on `options` -> `List All Devices`. | ||
5. Select the entry `"PSP" type B` from the dropdown list. | ||
6. Left of driver, select the `libusb-win32` driver. Then click install. | ||
7. Wait for the installation to finish, then disconnect the USB cable from the PSP. | ||
|
||
Now PSPLINK can be used with Windows. Continue with the instructions on the [Debugging](../debugging.html) page. |