User Tools

Site Tools


en:cube:install

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
Last revisionBoth sides next revision
en:cube:install [2021/09/18 19:04] – [During the install] celoen:cube:install [2022/07/22 13:15] – external edit 127.0.0.1
Line 317: Line 317:
 sudo systemctl start ynh-vpnclient-checker sudo systemctl start ynh-vpnclient-checker
 ``` ```
 +
 +#### Roundcube fails to install on Lime 1
 +
 +Roundcube require more than 500M to install. On lime 1, it's necessary to add swap. You can do it by running the following :
 +
 +```bash
 +sudo fallocate -l 1G /swapfile
 +sudo chmod 600 /swapfile
 +sudo mkswap /swapfile
 +sudo swapon /swapfile
 +```
 +You can verify that swap is available :
 + 
 +```bash
 +sudo swapon --show
 +```
 +
 +This should return a line about the swap.
 +
 +Then edit your fstab file to activate the swap on startup :
 +
 +```bash
 +sudo nano /etc/fstab
 +```
 +
 +Add the line :
 +```bash
 +/swapfile none swap sw 0 0
 +```
 +
en/cube/install.txt · Last modified: 2022/09/16 13:07 by celo