-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
15 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# CinePI Apk | ||
|
||
### Set static ip in pi | ||
1. `sudo apt install dhcpcd` | ||
2. `sudo nano /etc/dhcpcd.conf` | ||
3. add these lines | ||
``` | ||
interface usb0 | ||
static ip_address=192.168.42.42/24 | ||
static routers=192.168.42.129 | ||
static domain_name_servers=192.168.42.129 | ||
``` | ||
4. sudo systemctl restart dhcpcd | ||
|
||
### install Apk |