This wiki is a community-maintained resource about everything there is to know about IPFire. Join us and help us improving it!
Use the search and find answers to everything about IPFire. If you cannot find what you are looking for, join our community and talk to fellow IPFire users, developers and everybody else involved in the project.
# Architecture Change |
You can restore a backup created on a system with a different architecture. However, you will have to delete the graph databases which are architecture-dependant and need to be recreated. |
Do so by executing the following commands after restoring the backup: |
```text |
`/etc/init.d/collectd stop` |
/etc/init.d/collectd stop |
`/etc/init.d/vnstat stop` |
/etc/init.d/vnstat stop |
rm -rf /var/log/rrd/* |
rm -rf /var/log/rrd/* |
rm -f /var/log/vnstat/* |
rm -f /var/log/vnstat/* |
`/etc/init.d/collectd start` |
/etc/init.d/collectd start |
`/etc/init.d/vnstat start` |
/etc/init.d/vnstat start |
``` |