Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,24 @@ make all
sudo make install
```

### Build and install the binary on Ubuntu 24
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

issue (blocking): Which ubuntu 24, 24.04 (LTS) or 24.10? Please write the concret distribution, also for all shortcuts: U24 –> Ubuntu 24.04


U24 ships with autotools 1.16 whereas the source code uses 1.15

Install the following U24 packages

```bash
sudo apt install zlib1g-dev libbz2-dev
sudo apt install libtool automake
```

```bash
autoreconf -f -i
./configure --with-zlib --with-bzlib
make all
sudo make install
```

## Documentation

- [LibDsk](https://www.seasip.info/Unix/LibDsk/)
Expand Down