diff options
author | breadcat | 2020-06-19 12:23:15 +0100 |
---|---|---|
committer | breadcat | 2020-06-19 12:23:15 +0100 |
commit | 70bb5d5a801428b0fb390abf79f19ffcf5e29c67 (patch) | |
tree | b9fd7990156bd58bc38d58f91829c05933215102 /content/posts/ps2-iso-compression-with-maxcso.md | |
parent | 0f9a31348079c0a061bcc194912e75cc1c07bc1f (diff) | |
download | blog.minskio.co.uk-70bb5d5a801428b0fb390abf79f19ffcf5e29c67.tar.gz blog.minskio.co.uk-70bb5d5a801428b0fb390abf79f19ffcf5e29c67.tar.bz2 blog.minskio.co.uk-70bb5d5a801428b0fb390abf79f19ffcf5e29c67.zip |
Simple migration of existing posts to hugo format
Diffstat (limited to 'content/posts/ps2-iso-compression-with-maxcso.md')
-rw-r--r-- | content/posts/ps2-iso-compression-with-maxcso.md | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/content/posts/ps2-iso-compression-with-maxcso.md b/content/posts/ps2-iso-compression-with-maxcso.md new file mode 100644 index 0000000..a61ebac --- /dev/null +++ b/content/posts/ps2-iso-compression-with-maxcso.md @@ -0,0 +1,21 @@ +--- +title: "PS2 Image CSO Compression on Linux with MaxCSO" +date: 2018-11-27T10:23:00 +tags: ["formats", "guides", "linux", "snippets", "software"] +--- + +CSO was originally only intended for smaller PS1/PSP disc images, so a different version can be compiled to support the larger DVD based images that PS2 games are usually distributed on. + +``` +sudo apt-get install git-core build-essential liblz4-dev libuv1-dev zlib1g-dev +git clone https://github.com/unknownbrackets/maxcso.git +cd maxcso +make +sudo make install +``` + +Now that maxcso has been compiled and installed, simply compress all iso images in a directory via: + +``` +for i in *.iso; do maxcso "$i"; done +``` |