disks
Table of Contents
Disks
PS2
USB
For USB pen drives to work with the PS2, for example to transfer saves with u/wLaunchELF, they have to be formatted as Fat32.
I'm using an 8GB Cruzer Blade, and it's working fine. Have seen people saay you shouldn't use one over 2GB, but maybe that info's out of date.
To format in Linux:
- Insert/mount disk, and run
lsblk
to list. Note where your drive is (See §lsblk Example, where it's 'sdg'. Where I write[drive]
later, replace with your equivilant of 'sdg') - Unmount with your file manager or:
sudo umount /dev/[drive]
- Now we use parted to partition the disk. I like to run commands separately, but parted also has it's own shell. First set the disk type:
sudo parted /dev/[drive] --script -- mklabel msdos
- Make the partition:
sudo parted /dev/[drive] --script -- mkpart primary fat32 1MiB 100%
- Use mkfs to create the actual file system:
sudo mkfs.vfat -F32 /dev/[drive]1
- And finally check to see that everything worked:
sudo parted /dev/sdb --script print
. Make sure there's info in all the columns.
lsblk Example
... sdg 8:96 1 7.5G 0 disk └─sdg1 8:97 1 7.5G 0 part [address] ...
3ds
artist
australia
cli
company
config
edf
film
fixes
food
form
game-maker
genre
guide
hardware
index
instrument
internet
japan
language
linux
list
melbourne
multiplayer
music
music-making
nintendo
open-source
organisation
person
project
protocol
ps2
recommendations
sandlot
series
snes
software
song
sport
switch
theme
tool
translation
video
videogame
videogames
website
wiki
windows
disks.txt · Last modified: 2022/04/30 17:40 by rjt