Skip to content

Update first-run-issues.md #1261

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jun 3, 2025
Merged
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
21 changes: 21 additions & 0 deletions doc/self-hosters/first-run-issues.md
Original file line number Diff line number Diff line change
@@ -51,3 +51,24 @@ sudo apk add build-base
### Gentoo

You know what you're doing; you just wanted to see if we mentioned Gentoo.

## "Could not load the "sharp" module using the freebsd-x64 runtime"

In order to get it to work on FreeBSD, you will need to build sharp from source and link it to the project.

```
pkg install vips
git clone --depth=1 https://github.com/lovell/sharp.git
cd sharp
yarn install
sudo npm link
```

After `npm install` you can link the prebuilt module

```
# cd puter
# npm install
npm link sharp
npm start
```