{"id":24753629,"url":"https://github.com/exfil0/sigintpi","last_synced_at":"2026-04-29T22:04:07.176Z","repository":{"id":272995666,"uuid":"918414920","full_name":"exfil0/SIGINTPI","owner":"exfil0","description":"This document explains how to set up and run the wizard scripts in the wizard/ folder of the SIGINTPI project.","archived":false,"fork":false,"pushed_at":"2025-02-05T23:59:31.000Z","size":185,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-23T05:12:01.351Z","etag":null,"topics":["bladerf","gr-gsm","gsm","hackrf","imsi","interception","location","osmocom","raspberrypi","rtl-sdr","sigint","sms","tmsi"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/exfil0.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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}},"created_at":"2025-01-17T22:10:48.000Z","updated_at":"2025-02-05T23:59:34.000Z","dependencies_parsed_at":"2025-02-06T00:36:27.525Z","dependency_job_id":null,"html_url":"https://github.com/exfil0/SIGINTPI","commit_stats":null,"previous_names":["exfil0/sigintpi"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/exfil0/SIGINTPI","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/exfil0%2FSIGINTPI","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/exfil0%2FSIGINTPI/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/exfil0%2FSIGINTPI/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/exfil0%2FSIGINTPI/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/exfil0","download_url":"https://codeload.github.com/exfil0/SIGINTPI/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/exfil0%2FSIGINTPI/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32445574,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-29T20:22:27.477Z","status":"ssl_error","status_checked_at":"2026-04-29T20:22:26.507Z","response_time":110,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":["bladerf","gr-gsm","gsm","hackrf","imsi","interception","location","osmocom","raspberrypi","rtl-sdr","sigint","sms","tmsi"],"created_at":"2025-01-28T11:34:28.641Z","updated_at":"2026-04-29T22:04:07.141Z","avatar_url":"https://github.com/exfil0.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# SIGINTPI Wizard Setup\n\nThis document explains how to set up and run the **wizard** scripts in the `wizard/` folder of the SIGINTPI project.\n\n## Overview\n\nThe **wizard** folder contains Python scripts that help automate:\n\n1. **Raspberry Pi readiness** (basic updates, remote access, etc.)  \n2. **Component readiness** (installing drivers for SDR devices like RTL-SDR, HackRF, etc.)  \n3. **Software readiness** (installing GNU Radio, GQRX, GR-GSM, Kalibrate-RTL, etc.)\n\n## 1. Clone the Repository\n\nTo get started, clone the SIGINTPI repository from GitHub:\n\n```bash\ngit clone https://github.com/exfil0/SIGINTPI.git\ncd SIGINTPI\n```\n\n## 2. Make the Scripts Executable\n\nTo run the Python scripts directly (without typing `python3`), make them executable. In your project’s root directory (or wherever your `wizard/` folder is located), run:\n\n```bash\nsudo chmod +x wizard/*.py\n```\n\nThis command applies executable permissions to all `.py` files in the `wizard/` directory. If you have subfolders with `.py` files, you can recursively apply permissions:\n\n```bash\nsudo find wizard/ -type f -name \"*.py\" -exec chmod +x {} \\;\n```\n\n**Note:** You can skip this step if you prefer to run each script with `python3 wizard/scriptname.py`.\n\nAdditionally, ensure that the required permissions are set on all scripts during deployment. Run the following command to ensure all scripts in the `wizard/` directory are ready to execute:\n\n```bash\nsudo chmod -R +x wizard\n```\n\n## 3. Run the Scripts\n\nYou can execute each script in the `wizard` folder in sequence:\n\n### `raspberrypi_readiness.py`\n\n- Performs basic Raspberry Pi system updates, upgrades, and enables SSH/VNC.\n\n### `remote-access-enable.py`\n\n- Specifically enables and checks remote access services (SSH, VNC).\n\n### `raspberrypi-components-readiness.py`\n\n- Installs drivers/packages for hardware (e.g., RTL-SDR, HackRF).\n- Automatically detects devices (like HackRF, NESDR) and tests them.\n\n### `raspberrypi-software-readiness.py`\n\n- Installs \u0026 verifies signal-processing software (GNU Radio, GQRX, GR-GSM, Kalibrate-RTL).\n- Prompts you to test GUI apps (e.g., GQRX) on the desktop.\n\n### Examples\n\nIf you made the scripts executable:\n\n```bash\ncd wizard\nsudo ./raspberrypi_readiness.py\nsudo ./remote-access-enable.py\nsudo ./raspberrypi-components-readiness.py\nsudo ./raspberrypi-software-readiness.py\n```\n\nIf you want to use Python directly:\n\n```bash\ncd wizard\nsudo python3 raspberrypi_readiness.py\nsudo python3 remote-access-enable.py\nsudo python3 raspberrypi-components-readiness.py\nsudo python3 raspberrypi-software-readiness.py\n```\n\n## 4. Follow On-Screen Prompts\n\nDuring the setup, you might be prompted to:\n\n- Reboot or log out/log in to apply certain changes (e.g., group memberships).\n- Plug in devices (e.g., HackRF, NESDR). The script may wait until the device is detected (via `lsusb`).\n- Open desktop-based tools (e.g., GNU Radio Companion, GQRX) to confirm they launch properly.\n\nRead the console output carefully and follow each instruction.\n\n## Troubleshooting\n\n### Permission Denied\n\nIf you get a `Permission denied` error, ensure you have run `chmod +x` on the script or invoke it with `sudo python3 wizard/\u003cscript\u003e.py`.\n\n### Missing Dependencies\n\nCheck that your system is online and up to date. The scripts typically run `sudo apt update -y \u0026\u0026 sudo apt upgrade -y` to ensure a fresh environment.\n\n### Custom OS Differences\n\nIf you are using a custom Raspberry Pi OS, some packages or commands may differ. Modify the scripts or install missing packages manually if needed.\n\n### Group Membership Issues\n\nWhen a script adds your user to a group (e.g., `plugdev`), you must log out and log back in or reboot for the changes to apply.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fexfil0%2Fsigintpi","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fexfil0%2Fsigintpi","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fexfil0%2Fsigintpi/lists"}