Skip to content

Raspberry Pi5 - Netzteil

RaspberryPi
1 1 531
  • Für USB Geräte benötigt man ja ein Netzteil 5V/5A

    5V/5A DC power via USB-C, with Power Delivery support
    Quelle: https://www.raspberrypi.com/products/raspberry-pi-5/

    Ich habe jetzt hier ein Netzteil 5V/4,1A, war nichts anderes auf dem Markt zu bekommen. Dann testen wir mal eine SSD am USB3-Port. Beim ersten Bootversuch meckert er über das nicht ausreichende Netzteil. Das kann man mittels eines Befehles in der config.txt steuern.

    /boot/config.txt

    usb_max_current_enable=1
    

    Danach erneuter Bootversuch, diesmal klappt alles und es kommen die Dialoge zur Ersteinrichtung.

    frank@raspberrypi:~ $ duf
    ╭────────────────────────────────────────────────────────────────────────────────────╮
    │ 2 local devices                                                                    │
    ├────────────────┬────────┬───────┬────────┬─────────────────────┬──────┬────────────┤
    │ MOUNTED ON     │   SIZE │  USED │  AVAIL │         USE%        │ TYPE │ FILESYSTEM │
    ├────────────────┼────────┼───────┼────────┼─────────────────────┼──────┼────────────┤
    │ /              │ 219.5G │ 11.3G │ 199.1G │ [..........]   5.1% │ ext4 │ /dev/sda2  │
    │ /boot/firmware │ 510.0M │ 72.3M │ 437.7M │ [#.........]  14.2% │ vfat │ /dev/sda1  │
    ╰────────────────┴────────┴───────┴────────┴─────────────────────┴──────┴────────────╯
    ╭─────────────────────────────────────────────────────────────────────────────────────────╮
    │ 5 special devices                                                                       │
    ├────────────────┬────────┬────────┬────────┬─────────────────────┬──────────┬────────────┤
    │ MOUNTED ON     │   SIZE │   USED │  AVAIL │         USE%        │ TYPE     │ FILESYSTEM │
    ├────────────────┼────────┼────────┼────────┼─────────────────────┼──────────┼────────────┤
    │ /dev           │   3.8G │     0B │   3.8G │                     │ devtmpfs │ udev       │
    │ /dev/shm       │   3.9G │ 528.0K │   3.9G │ [..........]   0.0% │ tmpfs    │ tmpfs      │
    │ /run           │ 805.0M │   5.8M │ 799.1M │ [..........]   0.7% │ tmpfs    │ tmpfs      │
    │ /run/lock      │   5.0M │  48.0K │   5.0M │ [..........]   0.9% │ tmpfs    │ tmpfs      │
    │ /run/user/1000 │ 805.0M │ 208.0K │ 804.8M │ [..........]   0.0% │ tmpfs    │ tmpfs      │
    ╰────────────────┴────────┴────────┴────────┴─────────────────────┴──────────┴────────────╯
    

    Kurzer Speedtest 😉

    frank@raspberrypi:~ $ dd if=/dev/zero of=sd.img bs=1M count=4096 conv=fdatasync
    4096+0 Datens�tze ein
    4096+0 Datens�tze aus
    4294967296 Bytes (4,3 GB, 4,0 GiB) kopiert, 31,8582 s, 135 MB/s
    

    Hier sieht man auch ein kleines Problem, die Umlaute passen nicht, obwohl ich am RPi alles auf Deutsch gestellt habe 😞 Ok, kümmern wir uns später drum.

    Fazit

    Angesichts der Tatsache, das für den RPi 5 auf dem Markt so gut wie nichts zu bekommen ist, muss man sich halt behelfen. Denke das Netzteil sollte in dieser aktuellen Konfiguration völlig ausreichend sein. Vorsichtig wäre ich, wenn man jetzt am zweiten USB3 Port eine konventionelle HDD anschließen wollte.

    Leider bekomme ich auf dem Markt auch kein

    • UART Verbindungskabel
    • HAT für SSD

    Falls jemand einen kennt, der so was verkauft, bitte eine Info hier lassen. Danke!

  • 0 Stimmen
    1 Beiträge
    0 Aufrufe
    Niemand hat geantwortet
  • OpenCloud - Docker Compose local

    Verschoben OpenCloud opencloud linux
    3
    1
    0 Stimmen
    3 Beiträge
    593 Aufrufe
    FrankMF
    Noch was Wichtiges. Die Docker Installation nutzt folgende config. In meinem Beispiel findet man sie unter /home/frank/opencloud/deployments/examples/opencloud_full Darin liegt ein .env ## Basic Settings ## # Define the docker compose log driver used. # Defaults to local LOG_DRIVER= # If you're on an internet facing server, comment out following line. # It skips certificate validation for various parts of OpenCloud and is # needed when self signed certificates are used. INSECURE=true ## Traefik Settings ## # Note: Traefik is always enabled and can't be disabled. # Serve Traefik dashboard. # Defaults to "false". TRAEFIK_DASHBOARD= # Domain of Traefik, where you can find the dashboard. # Defaults to "traefik.opencloud.test" TRAEFIK_DOMAIN= # Basic authentication for the traefik dashboard. # Defaults to user "admin" and password "admin" (written as: "admin:$2y$05$KDHu3xq92SPaO3G8Ybkc7edd51pPLJcG1nWk3lmlrIdANQ/B6r5pq"). # To create user:password pair, it's possible to use this command: # echo $(htpasswd -nB user) | sed -e s/\\$/\\$\\$/g TRAEFIK_BASIC_AUTH_USERS= # Email address for obtaining LetsEncrypt certificates. # Needs only be changed if this is a public facing server. TRAEFIK_ACME_MAIL= # Set to the following for testing to check the certificate process: # "https://acme-staging-v02.api.letsencrypt.org/directory" # With staging configured, there will be an SSL error in the browser. # When certificates are displayed and are emitted by # "Fake LE Intermediate X1", # the process went well and the envvar can be reset to empty to get valid certificates. TRAEFIK_ACME_CASERVER= [....gekürzt....] Man kann dort etwas ändern und mittels docker compose up -d alles aktualisieren. Radicale OpenCloud nutzt im Moment folgendes https://radicale.org/v3.html als Backend Server für Kalender & Kontakte. Jemand hat mir dann erklärt, wie das so funktioniert. Danach hatte es dann klick gemacht. https://fosstodon.org/@h4kamp/114562514701351170 In der config findet man zum Beispiel die Konfiguration für radicale (Kalender- und Kontakte-App) Das ist nur eine rudimentäre Ablage, wird gesteuert über Clienten, z.B. die Thunderbird Kalender Funktion. ### Radicale Setting ### # Radicale is a small open-source CalDAV (calendars, to-do lists) and CardDAV (contacts) server. # When enabled OpenCloud is configured as a reverse proxy for Radicale, providing all authenticated # OpenCloud users access to a Personal Calendar and Addressbook RADICALE=:radicale.yml # Docker image to use for the Radicale Container #RADICALE_DOCKER_IMAGE=opencloudeu/radicale # Docker tag to pull for the Radicale Container #RADICALE_DOCKER_TAG=latest # Define the storage location for the Radicale data. Set the path to a local path. # Ensure that the configuration and data directories are owned by the user and group with ID 1000:1000. # This matches the default user inside the container and avoids permission issues when accessing files. # Leaving it default stores data in docker internal volumes. #RADICALE_DATA_DIR=/your/local/radicale/data In einer Standard Installation ist das auskommentiert. RADICALE=:radicale.yml Danach ein docker compose up -d und Eure Kalendereinträge (extern auf einem Clienten verwaltet) werden in der OpenCloud gesichert.
  • Firefox 122 als .deb Paket

    Linux firefox linux
    1
    1
    0 Stimmen
    1 Beiträge
    210 Aufrufe
    Niemand hat geantwortet
  • FrOSCon 18

    Linux froscon linux opensource
    1
    0 Stimmen
    1 Beiträge
    117 Aufrufe
    Niemand hat geantwortet
  • Nextcloud - Hub 5 (27.0.0)

    Nextcloud nextcloud hub5 linux
    1
    0 Stimmen
    1 Beiträge
    151 Aufrufe
    Niemand hat geantwortet
  • Debian Bookworm 12 - Restic

    Linux debian restic linux
    1
    0 Stimmen
    1 Beiträge
    197 Aufrufe
    Niemand hat geantwortet
  • PCIe WIFI6 Karte

    Linux wifi5 linux
    4
    4
    0 Stimmen
    4 Beiträge
    358 Aufrufe
    K
    alles gut. wenn zeit und laune, danke
  • SSHFS

    Linux linux
    1
    0 Stimmen
    1 Beiträge
    352 Aufrufe
    Niemand hat geantwortet