Hardware Replacement

I have a question about an upcoming hardware swap. I am currently running Syncloud on a Raspberry PI 5 with 8 GB main memory, but would now like to switch to a Pi 5 with 16 GB main memory. My idea is to simply use the existing SD card in the new Raspberry Pi. One problem I see is the network configuration. Currently I use DHCP:

root@syncloud:/etc/network# cat interfaces auto lo iface lo inet loopback

allow-hotplug eth0
iface eth0 inet dhcp
iface eth0 inet6 auto
        dhcp 1
        request_prefix 1

Since I would like to keep the current IP address in order to have to make as few changes as possible in the router, internal URLs, etc., is it safe to switch from DHCP to a static IP address?

I imagine the following change:

# /etc/network/interfaces
auto eth0
iface eth0 inet static
    address 192.168.178.101
    netmask 255.255.255.0
    gateway 192.168.178.1
    dns-nameservers 192.168.178.1
    dns-search fritz.box

Questions:

  1. Would the change be possible without any problems?

  2. Are there any other points I need to consider when changing the hardware?

Why do you need IP address at all, is DNS not working internally?
If you really want to keep IP (which I do not usually need or do) you can try your approach on the new device or you can try to change IP assignment on the router it usually has a lost based on device Mac addresses which you can change.

For new device I would backup all apps to the external disk get new SD card flashed on the new device and restored the apps from the external disk attached to the new device.

That way you can always move back if something goes wrong.

Hi Boris, you’re right of course, DNS would be the best way, but unfortunately I haven’t got round to setting up DNS in my environment yet, so I’m currently still working with the IP addresses, which is still OK given the number of servers

I’ve now switched to a static address and the Syncloud server is booting without any problems and the services (Nextcloud, Bitwarden, etc.) are accessible.

If I now start the SD card in the new Raspberry Pi5, the following error message appears when booting:

The installed OS does not indicate support for raspberry 5.

It looks like the Raspberry Pi5 does not support the “old” Debian 10. Are you familiar with this type of problem, and can you work around it with an existing Syncloud installation, or are there new images in this regard?

I hope you can help me :grin:

Is this existing SD card?
It will not boot you need to download latest Syncloud image and start fresh OS.

Yes, that was the existing SD card.

May I ask another question about the process :upside_down_face:

If I newly install Synlcoud on a new SD card, install it in the new PI 5 hardware, is it possible to register/configure this device while the original syncloud is still running? I have created a daily backup of my applications and would then try to install the new Syncloud, install my applications and then perform the restore. Would that be OK? Sorry for all the questions, but this is a bit tricky at this point and I’d hate to lose everything. I have no external storage, only the SD card available.

is it possible to register/configure this device while the original syncloud is still running?

Same or different DNS yes. If same DNS then old device will not be accessible. But if you want to go back you can reactivate old device on the same dns again to take over.

install my applications and then perform the restore. Would that be OK?

Yes that is the process.

have no external storage, only the SD card available.

In this case you will need to copy /data dir to your new SD card after you write the os image on it.
External usb disk is much easier in this case.

1 Like

Hello Boris,

first of all THANK YOU VERY MUCH for your support!
You write

I have another question about this:
I use Syncthing to mirror /data/platform/backup to other devices. Here I have all the backup files of my services for 7 days (cron job to remove older files).
How exactly does the restore have to run now?

  1. flash new SD card - OK
  2. activate new device - OK
  3. install apps - OK

Do I now only have to copy /data/platform/backup/*.gz to the new device and perform the restore for my apps, or do I also have to copy the remaining data from /data?

My understanding was that the restore restores the data, e.g. /data/nextcloud for the Nextcloud app.

Can you please confirm and explain the last step, i.e. which data is to be copied/restored?

Backup does not contain anything in /data that is usually a huge external storage an will not be able to fit into /data itself as a backup.
You need to backup your files using tools like Syncthing, the whole /data.

App backup are for non files like database, calendar/contact entries …

So before restoring copy /data away from the old device and then copy in on your new device.

1 Like

OK, that’s very important information that I didn’t realise. I will mirror /data to my devices via Syncthing, and then copy /data to my new Syncloud server to /data before performing the restore.
I will report here if I manage to set up the new Synlcoud server with the now complete procedure for me.

The migration from a Raspberry 4 to a Raspberry 5 has now been successfully completed with the help of Boris Infos and without any loss of data :sweat_smile:
Maybe it will help some of you, so here are the steps I took:

  1. flash SD card with Synlcoud image and start Syncloud server
  2. copy all data from /data of the “old” server to /data on the new server:
root@syncloud:/# rsync -avz /data/ root@192.168.xxx.yyy:/data/
  1. log in to the Syncloud server via web browser (https://192.168.xxx.yyy) and install the necessary apps. Then restore the backups for the apps.
  2. activate the new Syncloud server with the values of the “old” server.
1 Like