diff --git a/turing-pi/compute-modules.md b/turing-pi/compute-modules.md
index 91c2c44..f211526 100644
--- a/turing-pi/compute-modules.md
+++ b/turing-pi/compute-modules.md
@@ -188,7 +188,7 @@ AV1/AVS2, 4k@60FPS
| **Video Decoder** | H265/H264/VP9/AV1/
[https://joshua-riek.github.io/ubuntu-rockchip-download/boards/turing-rk1.html](https://joshua-riek.github.io/ubuntu-rockchip-download/boards/turing-rk1.html)
-> sandy (192.168.1.65)
+> sandy (192.168.1.14)
> pleb / transatlantique
```bash
@@ -210,6 +210,70 @@ sudo apt update sudo apt install -y git-all git-lfs curl wget screenfetch net-to
**PS :** [Ubuntu Pro](https://ubuntu.com/pro/tutorial)
+---
+#### Webcam (bernie)
+
+```
+echo 'deb http://download.opensuse.org/repositories/hardware:/razer/Debian_12/ /' | sudo tee /etc/apt/sources.list.d/hardware:razer.list
+curl -fsSL https://download.opensuse.org/repositories/hardware:razer/Debian_12/Release.key | gpg --dearmor | sudo tee /etc/apt/trusted.gpg.d/hardware_razer.gpg > /dev/null
+sudo apt update
+sudo apt install usbutils openrazer-meta vlc
+
+lsusb | grep '1532:'
+```
+
+```
+Bus 001 Device 004: ID 1532:0e06 Razer USA, Ltd Razer Kiyo X
+```
+
+```
+cvlc v4l2:///dev/video3
+```
+
+```
+sudo vim /usr/share/camera-streamer/examples/camera-streamer-generic-usb-cam.service
+```
+```
+[Unit]
+Description=camera-streamer web camera for USB camera on Generic platform
+After=network.target
+ConditionPathExistsGlob=/dev/v4l/by-id/usb-*-video-index0
+
+[Service]
+ExecStart=/usr/bin/camera-streamer \
+ -camera-path=/dev/video3 \
+ -camera-format=JPEG \
+ -camera-width=1920 -camera-height=1080 \
+ -camera-fps=30 \
+ ; use two memory buffers to optimise usage
+ -camera-nbufs=3 \
+ --http-listen=0.0.0.0 \
+ --http-port=8080 \
+ ; disable video streaming (WebRTC, RTSP, H264)
+ ; on non-supported platforms
+ -camera-video.disabled
+
+DynamicUser=yes
+SupplementaryGroups=video i2c
+Restart=always
+RestartSec=10
+Nice=10
+IOSchedulingClass=idle
+IOSchedulingPriority=7
+CPUWeight=20
+AllowedCPUs=1-2
+MemoryMax=250M
+
+[Install]
+WantedBy=multi-user.target
+```
+```
+sudo systemctl enable /usr/share/camera-streamer/examples/camera-streamer-generic-usb-cam.service
+sudo systemctl start camera-streamer-generic-usb-cam.service
+```
+```
+
+```
---
#### Odroid HC4
@@ -261,7 +325,7 @@ Power consumption with two ST2000DM006 HDDs :
##### Setup
-> sheldon (192.168.1.230)
+> sheldon (192.168.1.16)
> pleb/transatlantique
```
@@ -406,4 +470,4 @@ Ln4@iJMNn85h2Xrx
##### Server World
-[https://www.server-world.info/en/note?os=Debian\_12&p=download&f=1](https://www.server-world.info/en/note?os=Debian_12&p=download&f=1)
\ No newline at end of file
+[https://www.server-world.info/en/note?os=Debian\_12&p=download&f=1](https://www.server-world.info/en/note?os=Debian_12&p=download&f=1)
|