https://github.com/cncjs/cncjs-pi-raspbian
Raspberry PI distribution of CNCjs in a ready to deploy image. Includes some useful script and documentation.
https://github.com/cncjs/cncjs-pi-raspbian
Last synced: about 1 year ago
JSON representation
Raspberry PI distribution of CNCjs in a ready to deploy image. Includes some useful script and documentation.
- Host: GitHub
- URL: https://github.com/cncjs/cncjs-pi-raspbian
- Owner: cncjs
- License: mit
- Created: 2018-06-24T23:50:00.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2024-07-12T18:50:48.000Z (almost 2 years ago)
- Last Synced: 2025-04-18T16:30:12.148Z (about 1 year ago)
- Language: Shell
- Size: 161 KB
- Stars: 73
- Watchers: 9
- Forks: 15
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Install script for CNCjs on Raspberry Pi w/ Raspberry Pi OS
This install script with get you started quickly with CNCjs on a [Raspberry Pi](https://www.raspberrypi.org/products/). For a more complete introduction, see the [CNCjs Introduction](https://github.com/cncjs/cncjs/wiki/Introduction) section of the wiki page.
### 1. [Setup your Raspberry Pi](https://projects.raspberrypi.org/en/projects/raspberry-pi-setting-up)
Download & Install [Raspberry Pi OS](https://www.raspberrypi.org/downloads/raspberry-pi-os/) (previously called Raspbian) the official operating system for the Raspberry Pi.
NOTE: Tested on [Raspberry Pi OS Full and Lite x64 - July 4th 2024](https://downloads.raspberrypi.com/raspios_lite_arm64/images/raspios_lite_arm64-2024-07-04/2024-07-04-raspios-bookworm-arm64-lite.img.xz) (x64 recommended)
1. Download [Raspberry Pi OS](https://www.raspberrypi.org/downloads/raspberry-pi-os/), the [Lite x64](https://downloads.raspberrypi.org/raspios_lite_arm64_latest) edition is recommended.
2. Then use [Raspberry Pi Imager](https://www.raspberrypi.org/downloads) to write the downloaded image to SD Card or Flash Drive.
3. Power-on you Raspberry Pi
4. [Finish Setting up you Raspberry Pi](https://projects.raspberrypi.org/en/projects/raspberry-pi-setting-up)
* Run "Welcome to Raspberry Pi" or `sudo raspi-config`
### 2. Install CNCjs
- ##### Method 1: Download and run installer.
```
URL="https://raw.githubusercontent.com/cncjs/cncjs-pi-raspbian/master/cncjs_install.sh"
curl -sSL ${URL} | bash
```
----
- ##### Method 2: Download, then run installer.
```
URL="https://raw.githubusercontent.com/cncjs/cncjs-pi-raspbian/master/cncjs_install.sh"
wget -O cncjs_install.sh "${URL}"
cat --number cncjs_install.sh
sudo bash cncjs_install.sh
```
----
#### Additonal Infomation
If you run into issues with installation on a raspberry pi, please post this repositries "[Issues](https://github.com/cncjs/cncjs-pi-raspbian/issues)".