Linode attached a volumn, still no space for backup

My YunoHost server

Hardware: VPS bought online
YunoHost version: 11.2.4 (stable)
I have access to my server : all of these: Through SSH | through the webadmin | direct access via keyboard / screen |
Are you in a special context or did you perform some particular tweaking on your YunoHost instance ? : no


If your request is related to an app, specify its name and version: backup

Description of my issue

I have create a volume on Linode, then I follow the configs guide,

Here is the guide:

and here is what I did through SSH:


yet, and it shows that the disk is attached to the server:/dev/sdc.

Screenshot 2023-09-06 at 5.30.59 PM

Then I did this, after found this guide:

But, when I do the backup through Yunohost, it still show the same 400 back Request error.

Thanks advance for your help. :grinning:

Your last “command” is actually a line to be added in /etc/fstab, as per Linode’s instructions. :wink:

Aren’t you missing the step where you tell YunoHost where to store the backups? :innocent:

Inspired from our documentation:

sudo su

# Prepare the directory 
mv /home/yunohost.backup /home/yunohost.backup.bkp
mkdir /home/yunohost.backup
mkdir -p /mnt/first/home/yunohost.backup

# Bind the external storage to the backup directory 
mount --bind /mnt/first/home/yunohost.backup /home/yunohost.backup

# Copy the existing backups
cp -a /home/yunohost.backup.bkp/. /home/yunohost.backup/

Finally, add the following line after the one you previously added in /etc/fstab:

/mnt/first/home/yunohost.backup /home/yunohost.backup none defaults,bind 0 0

2 Likes

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.