MediaImporter / RPI / INSTALL.md
Newer Older
46 lines | 0.895kb
Bogdan Timofte authored 3 weeks ago
1
# Install Guide
2

            
3
## Status
4

            
5
RPI section is frozen.
6

            
7
Nu se recomanda folosirea acestui ghid ca baza pentru testare curenta pe Raspberry Pi 3B+ cu 1 GB RAM. Platforma nu a oferit suficiente resurse pentru validare fiabila si exista posibilitatea unui defect hardware.
8

            
9
## 1. Copy project to Raspberry Pi
10

            
11
Clone or copy this folder to the Raspberry Pi.
12

            
13
## 2. Run installer
14

            
15
```bash
16
cd rpi-camera-media-importer
17
sudo ./setup.sh
18
```
19

            
20
## 3. Configure camera profiles
21

            
22
```bash
23
rpi-camera-importer wizard
24
```
25

            
26
In wizard, configure each camera by `ID_FS_UUID` and destination path.
27

            
28
## 4. Verify detection pipeline (udev + systemd)
29

            
30
Connect camera and verify attach unit logs:
31

            
32
```bash
33
journalctl -u rpi-camera-importer-attach@<UUID>.service -f
34
```
35

            
36
## 5. Test import
37

            
38
```bash
39
rpi-camera-importer import --all --dry-run --verbose
40
```
41

            
42
## 6. Run real import
43

            
44
```bash
45
rpi-camera-importer import --all
46
```