en:cube:install
Differences
This shows you the differences between two versions of the page.
| Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
| en:cube:install [2021/08/16 09:10] – hgo | en:cube:install [2022/09/16 13:07] (current) – [After the install] celo | ||
|---|---|---|---|
| Line 5: | Line 5: | ||
| ## Generate the VPN certificates | ## Generate the VPN certificates | ||
| - | In order to use our VPN, you need to follow [this registration process](en: | + | In order to use our VPN, you need to follow [this registration process](en: |
| In case, for some reason, you are reinstalling a cube and you want to reuse your VPN certificate, | In case, for some reason, you are reinstalling a cube and you want to reuse your VPN certificate, | ||
| Line 262: | Line 262: | ||
| On the internet cube installer, retry the last step by clicking on the yellow button. | On the internet cube installer, retry the last step by clicking on the yellow button. | ||
| + | |||
| + | #### The loading bar freeze | ||
| + | |||
| + | If the loading bar freeze during the install, set the debug mode button to up. | ||
| + | |||
| + | You will then see the details of the install and what the install procedure is doing. | ||
| #### iptables/ | #### iptables/ | ||
| Line 267: | Line 273: | ||
| See https:// | See https:// | ||
| - | This is due to a kernel update: you just need to reboot the cube: | + | This is due to a kernel update: you just need to reboot the cube. |
| Then, connect to the internet cube installer and retry the last step. | Then, connect to the internet cube installer and retry the last step. | ||
| Line 280: | Line 286: | ||
| ```bash | ```bash | ||
| sudo sed s/ | sudo sed s/ | ||
| + | sudo sed s/ | ||
| sudo sed ' | sudo sed ' | ||
| ``` | ``` | ||
| Line 311: | Line 318: | ||
| 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.1629097830.txt.gz · Last modified: by hgo
