{"id":19536471,"url":"https://github.com/fluidd-core/fluiddpi","last_synced_at":"2025-08-25T10:30:58.845Z","repository":{"id":37005281,"uuid":"379073372","full_name":"fluidd-core/FluiddPI","owner":"fluidd-core","description":"FluiddPi - A Pi image with Klipper, Moonraker, Fluidd and Web Camera support pre-installed.","archived":false,"fork":false,"pushed_at":"2023-08-05T12:28:41.000Z","size":3967,"stargazers_count":303,"open_issues_count":19,"forks_count":60,"subscribers_count":15,"default_branch":"master","last_synced_at":"2024-12-16T00:05:21.221Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://docs.fluidd.xyz","language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/fluidd-core.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null},"funding":{"github":["fluidd-core"]}},"created_at":"2021-06-21T22:01:50.000Z","updated_at":"2024-12-09T11:38:31.000Z","dependencies_parsed_at":"2024-11-11T02:23:27.490Z","dependency_job_id":"3404ed8c-3035-427e-b763-ba2c8bcf5ccd","html_url":"https://github.com/fluidd-core/FluiddPI","commit_stats":null,"previous_names":[],"tags_count":31,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fluidd-core%2FFluiddPI","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fluidd-core%2FFluiddPI/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fluidd-core%2FFluiddPI/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fluidd-core%2FFluiddPI/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/fluidd-core","download_url":"https://codeload.github.com/fluidd-core/FluiddPI/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":230900449,"owners_count":18297408,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-11T02:23:01.055Z","updated_at":"2024-12-23T01:07:34.622Z","avatar_url":"https://github.com/fluidd-core.png","language":"Shell","readme":"# fluiddpi\n\nA pi image with Klipper, Moonraker and Fluidd pre-installed.\n\nThis repository contains the necessary code to generate the distribution from an existing Raspberry Pi OS lite distro image.\n\n## Deprecated\n\n⚠️ WARNING ⚠️\n\nFluiddPI is not under active maintenance and we’ve had reports from users finding issues while using it.\n\nAs such, our recommendation is that you **do not use FluiddPI**, and instead use [KIAUH](https://github.com/th33xitus/kiauh) to install Fluidd.\n\n## Where to download?\n\nYou can download the latest release [here](https://github.com/fluidd-core/FluiddPI/releases/latest).\n\nOlder releases can be found [here](https://github.com/fluidd-core/FluiddPI/releases).\n\n## How to use?\n\n1. Download the image as per above and install on an sdcard like you would any other Raspberry pi image.\n2. Optionally, if you require WiFi, configure by editing the `fluiddpi-wpa-supplicant.txt` on the root of the sd card - whilst it is still connected to your computer.\n3. Boot your Pi from the new sd card.\n4. Log into your Pi via SSH (located at `fluiddpi.local`). Default username is `pi` and password is `raspberry`.\n5. Best practice would have you;\n    - `sudo apt-get update`\n    - `sudo apt-get upgrade`\n    - `sudo raspi-config`\n        - Change your password\n        - Define your timezone via 'Localization Options'\n        - Optionally Change your hostname\n6. Reboot.\n\nFluidd will be available at `http://fluiddpi.local` - and will present an error about a missing `printer.cfg` file.\n\nPlease ensure your `printer.cfg` is configured correctly for Fluidd, see the fluidd docs [here](https://docs.fluidd.xyz). Once this is complete, you can now progress with your standard printer setup.\n\n## Compiling / Developing Quick Start\n\nRegular users of FluiddPI should **not** need to follow any of these steps. This is\nfor those that wish to compile their own image and / or help in the development\nof this project.\n\n### Requirements\n\nRecommended environment is Ubuntu or similar, with docker and docker-compose installed.\n\n- bash\n- git\n- [docker](https://docs.docker.com/engine/install/ubuntu/)\n- [docker-compose](https://docs.docker.com/compose/install/)\n- [qemu-arm-static](http://packages.debian.org/sid/qemu-user-static)\n- QEMU for emulation\n- around ~5gb free space\n\n```bash\n# Packages for Ubuntu 18.04/20.04\n# Dekstop variants are known to cause issues during build due to snaps takeing up loop mounts **\n\nsudo apt-get install gawk make build-essential util-linux \\\nqemu-user-static qemu-system-arm \\\ngit p7zip-full python3 curl\n```\n\n```bash\n# To build;\ngit clone https://github.com/fluidd-core/FluiddPI.git\ncd FluiddPI/\nmake build\n```\n\n```bash\n# To test;\n# To exit emulation - Ctrl-a x\n./run.sh\n```\n\n```bash\n# Other make options\n\n# Clean all previous build items except the source raspian image\nmake clean\n\n# Clean up the source image and trigger a new download\nmake distclean\n```\n\n### Build layout\n\n```bash\nfluiddpi/\n  /emulation - Contains dependencies for emulation testing\n  /src/image - Contains our base Raspberry Pi OS image\n  /src/workspace - Created during build, and output for compiled images\n```\n\n### With Thanks\n\nFluiddPI wouldn't be possible without the hard work of Raymond Himle, Stefan Dej\nand the team behind CustomPiOS. Thank you!\n","funding_links":["https://github.com/sponsors/fluidd-core"],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffluidd-core%2Ffluiddpi","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffluidd-core%2Ffluiddpi","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffluidd-core%2Ffluiddpi/lists"}