https://github.com/korenyoni/pi-scripts
find your pi on your localnet and ssh into it
https://github.com/korenyoni/pi-scripts
Last synced: about 2 months ago
JSON representation
find your pi on your localnet and ssh into it
- Host: GitHub
- URL: https://github.com/korenyoni/pi-scripts
- Owner: korenyoni
- Created: 2017-07-20T15:39:26.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2017-07-20T18:10:59.000Z (almost 8 years ago)
- Last Synced: 2025-02-07T14:40:23.479Z (3 months ago)
- Language: Shell
- Size: 2.93 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Pi Scripts
A collection of scripts useful for having a raspberry pi connected to your local network
## sshPi
Very simple script to find your raspberry pi on your localnet and ssh into it.
Requires arp-scan.
Good if you have no screen for it (remember to "touch ssh /boot/ssh"). By default uses eth0 as the interface for scanning the localnet.
### Usage
```
chmod +x sshPi.sh
./sshPi.sh```
## Pulseaudio systemd .service file
If you're streaming sound from a computer to your raspberry pi as outlined [here](https://raspberrypi.stackexchange.com/questions/11735/using-pi-to-stream-all-audio-output-from-my-pc-to-my-stereo)
```
sudo cp systemd/pulseaudio.service /etc/systemd/system/pulseaudio.service
systemctl --system enable pulseaudio.service
systemctl --system start pulseaudio.service
```