Skip to content
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

docs(README): Clarify installation for ARM64 #288

Merged
merged 1 commit into from
Jan 10, 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
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ will be unpacked and run, else the host is required to be able to run AppImages
requirement on FUSE.

Notes:
* If the app is built with an ARM64 AppImage, it will be named `richdocumentscode_arm64`.
* On slower systems, the first time the CODE Server is started there may be a noticeable delay (also applies on subsequent runs if `/tmp` whenever cleared)

## System requirements
Expand All @@ -43,6 +42,12 @@ The download is rather big (~300 MB) so it is possible you will experience a tim
sudo -u wwwrun php -d memory_limit=512M ./occ app:install richdocumentscode
```
Where `wwwrun` is the user of your web server. This is ```www-data``` on Debian, Ubuntu and derivatives, `wwwrun` on SUSE based distributions, `apache` on Red Hat/Fedora and `http` on Arch linux and derivatives.

`richdocumentscode` is only for architecture x86_64. If you want to install the app for ARM64, install `richdocumentscode_arm64`:
```
sudo -u wwwrun php -d memory_limit=512M ./occ app:install richdocumentscode_arm64
```

Updates can be done like this:
```
sudo -u wwwrun php -d memory_limit=512M ./occ app:update --all
Expand Down