https://github.com/islandcontroller/ps3mca
A simple docker container for use with the PS3MCA (PlayStation 3 Memory Card Adapter) tool
https://github.com/islandcontroller/ps3mca
docker homebrew playstation-2 ps3mca
Last synced: 4 months ago
JSON representation
A simple docker container for use with the PS3MCA (PlayStation 3 Memory Card Adapter) tool
- Host: GitHub
- URL: https://github.com/islandcontroller/ps3mca
- Owner: islandcontroller
- License: mit
- Created: 2023-10-27T20:16:39.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2023-11-17T21:49:28.000Z (over 1 year ago)
- Last Synced: 2025-01-16T13:59:35.352Z (6 months ago)
- Topics: docker, homebrew, playstation-2, ps3mca
- Language: Dockerfile
- Homepage: https://hub.docker.com/r/islandc/ps3mca
- Size: 6.84 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ps3mca
[](LICENSE) [](https://github.com/islandcontroller/ps3mca) [](https://hub.docker.com/r/islandc/ps3mca) 
*A simple docker container for use with the PS3MCA (PlayStation 3 Memory Card Adaptor) tool.*
## System Requirements
* Linux Host or WSL2 with [usbipd](https://learn.microsoft.com/en-us/windows/wsl/connect-usb)
* Docker Engine
* PlayStation 3 Memory Card Adaptor (CECHZM1)## Usage
1. *(WSL only)* Attach the Memory Card Adaptor to your WSL2 instance
usbipd wsl list
usbipd wsl attach --busid <...>(Requires elevated privileges on first run)
2. Launch container. Requires volume-mounting `/dev/bus/usb/`.
sudo docker run --privileged -v /dev/bus/usb/:/dev/bus/usb/ --rm -it islandc/ps3mca
3. Use the tool inside the container
ps3mca-tool -i
### Notes:
* Use a second volume mount if you want to exchange files between your host and the container. The default workdir location is `/root/mca`.sudo docker run \
--privileged \
-v /dev/bus/usb/:/dev/bus/usb/ \
-v $(pwd):/root/mca \
--rm -it islandc/ps3mca## Licensing
Unless stated otherwise, the contents of this project are licensed under the MIT License. The full license text is provided in the [`LICENSE`](LICENSE) file.
SPDX-License-Identifier: MIT