summaryrefslogtreecommitdiffstats
path: root/content/posts/ps2-iso-compression-with-maxcso.md
blob: 715429c5757315bae55acea5a390b395d5dbe222 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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
```