$ rsync -rlp home/pi /mnt/home/
```
+Dies installiert die folgenden Konfigurations-Dateien:
+```console
+etc/
+├── hostname
+├── localtime -> /usr/share/zoneinfo/Europe/Berlin
+├── modules-load.d
+│ └── i2c.conf
+├── resolv.conf -> /run/systemd/resolve/stub-resolv.conf
+├── ssh
+│ └── sshd_config.d
+│ └── NoRootNoPassword.conf
+├── sudoers.d
+│ └── wheel
+└── systemd
+ ├── resolved.conf.d
+ │ └── NoNegCache.conf
+ └── system
+ ├── controlpi.service
+ ├── multi-user.target.wants
+ │ ├── controlpi.service -> /etc/systemd/system/controlpi.service
+ │ └── pigpiod.service -> /usr/lib/systemd/system/pigpiod.service
+ └── pigpiod.service.d
+ └── override.conf
+boot/
+└── config.txt
+home/
+└── pi
+ ├── conf.json
+ └── resize-fs.sh
+```
+
Innerhalb des chroot eventuell Berechtigungen und Eigentürmer reparieren:
```console
# chmod o-r /etc/sudoers.d/wheel
# su - pi
$ git clone git://git.graph-it.com/graphit/unipi-kernel.git
$ cd unipi-kernel/
-$ export LINUX_DIR_PATH=/lib/modules/5.15.90-1-rpi-ARCH/build
+$ export LINUX_DIR_PATH=/lib/modules/5.XX.YY-rpi-ARCH/build
$ make
$ sudo -E make install
$ cd device_tree/
unipi/
├── boot
│ └── config.txt
+├── etc
+│ └── modules-load.d
+│ └── unipi.conf
└── home
└── pi
└── conf.json
```
+Der `pigpio`-Daemon, der im generischen Image eingeschaltet ist, wird für
+das UniPi-Image ausgeschaltet:
+```console
+# rm /etc/systemd/sytem/multi-user.target.wants/pigpiod.service
+```
+
Das Schließen und Aufspielen des Images funktioniert dann genau wie für das
[generische Image](graphit/controlpi-image):
```console