HDMI 접속 없이 Raspberry PI 개발 환경을 구축해 보았다.
4397 단어 RaspberryPi환경 구축
하지만 microHDMI 케이블이 있거나 ...
「어쨌든, SSH 접속만 할 수 있으면, 어떻게든 된다!」 것으로, 해 보는 것만!
1. OS 이미지 다운로드
https://www.raspberrypi.org/downloads/raspbian/
2. Etcher로 쓰기
https://www.balena.io/etcher/
3. ssh 활성화
기본적으로 SSH가 비활성화되어 있으므로 ssh
라는 빈 파일을 만든 부트 이미지의 ルート
에 저장합니다.
4. WIFI 접속 정보 등록
따라잡고 wpa_supplicant.conf
라는 파일에 WIFI 연결 정보를 설정하고 부팅 이미지의 ルート
에 저장합니다.
(RaspberryPI가 시작되면 자동으로로드되고 파일이 삭제됩니다)
ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev
update_config=1
network={
ssid="SSID名"
psk="パスワード"
}
5. 연결!
만든 이미지를 raspberry pi에 꽂고 전원 켜고 연결!
(IP는 WIFI 라우터 등에서 확인합시다)
기본 ID: : pi
기본 비밀번호: raspberry
XXX@XXXXX:~$ ssh [email protected].???.???
[email protected].???.???'s password:
Linux raspberrypi 4.19.97-v7l+ #1294 SMP Thu Jan 30 13:21:14 GMT 2020 armv7l
The programs included with the Debian GNU/Linux system are free software;
the exact distribution terms for each program are described in the
individual files in /usr/share/doc/*/copyright.
Debian GNU/Linux comes with ABSOLUTELY NO WARRANTY, to the extent
permitted by applicable law.
Last login: Tue Apr 21 05:14:25 2020 from 192.168.100.130
SSH is enabled and the default password for the 'pi' user has not been changed.
This is a security risk - please login as the 'pi' user and type 'passwd' to set a new password.
pi@raspberrypi:~ $
로그인 성공!
그렇지만, 「패스워드가 디폴트인 상태에서, 갱신해 주세요!」라고 화내므로, 갱신할 때 합시다. www
6. IP 고정화
Raspberry Pi에 고정 IP 주소를 할당하는 방법 (Raspbian Jessie)
/etc/dhcpcd.conf
파일에 DHCP 정보를 추가하면 IP가 고정됩니다.
(WIFI의 경우)
interface wlan0
static ip_address=192.168.???.???/24
static routers=192.168.???.???
static domain_name_servers=1.1.1.1
7. I2C 활성화
마찬가지로 GPIO를 사용하려면 I2C를 활성화해야합니다.
Check! Raspberry Pi에서 I2C를 사용하고 싶습니다 (문제 해결)
$ sudo raspi-config
8 Hello, World!
그리고 센서를 사지 않으면 www
Reference
이 문제에 관하여(HDMI 접속 없이 Raspberry PI 개발 환경을 구축해 보았다.), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://qiita.com/jlee/items/9610d33096279bbf3e0f
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
https://www.raspberrypi.org/downloads/raspbian/
https://www.balena.io/etcher/
3. ssh 활성화
기본적으로 SSH가 비활성화되어 있으므로 ssh
라는 빈 파일을 만든 부트 이미지의 ルート
에 저장합니다.
4. WIFI 접속 정보 등록
따라잡고 wpa_supplicant.conf
라는 파일에 WIFI 연결 정보를 설정하고 부팅 이미지의 ルート
에 저장합니다.
(RaspberryPI가 시작되면 자동으로로드되고 파일이 삭제됩니다)
ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev
update_config=1
network={
ssid="SSID名"
psk="パスワード"
}
5. 연결!
만든 이미지를 raspberry pi에 꽂고 전원 켜고 연결!
(IP는 WIFI 라우터 등에서 확인합시다)
기본 ID: : pi
기본 비밀번호: raspberry
XXX@XXXXX:~$ ssh [email protected].???.???
[email protected].???.???'s password:
Linux raspberrypi 4.19.97-v7l+ #1294 SMP Thu Jan 30 13:21:14 GMT 2020 armv7l
The programs included with the Debian GNU/Linux system are free software;
the exact distribution terms for each program are described in the
individual files in /usr/share/doc/*/copyright.
Debian GNU/Linux comes with ABSOLUTELY NO WARRANTY, to the extent
permitted by applicable law.
Last login: Tue Apr 21 05:14:25 2020 from 192.168.100.130
SSH is enabled and the default password for the 'pi' user has not been changed.
This is a security risk - please login as the 'pi' user and type 'passwd' to set a new password.
pi@raspberrypi:~ $
로그인 성공!
그렇지만, 「패스워드가 디폴트인 상태에서, 갱신해 주세요!」라고 화내므로, 갱신할 때 합시다. www
6. IP 고정화
Raspberry Pi에 고정 IP 주소를 할당하는 방법 (Raspbian Jessie)
/etc/dhcpcd.conf
파일에 DHCP 정보를 추가하면 IP가 고정됩니다.
(WIFI의 경우)
interface wlan0
static ip_address=192.168.???.???/24
static routers=192.168.???.???
static domain_name_servers=1.1.1.1
7. I2C 활성화
마찬가지로 GPIO를 사용하려면 I2C를 활성화해야합니다.
Check! Raspberry Pi에서 I2C를 사용하고 싶습니다 (문제 해결)
$ sudo raspi-config
8 Hello, World!
그리고 센서를 사지 않으면 www
Reference
이 문제에 관하여(HDMI 접속 없이 Raspberry PI 개발 환경을 구축해 보았다.), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://qiita.com/jlee/items/9610d33096279bbf3e0f
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
따라잡고
wpa_supplicant.conf
라는 파일에 WIFI 연결 정보를 설정하고 부팅 이미지의 ルート
에 저장합니다.(RaspberryPI가 시작되면 자동으로로드되고 파일이 삭제됩니다)
ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev
update_config=1
network={
ssid="SSID名"
psk="パスワード"
}
5. 연결!
만든 이미지를 raspberry pi에 꽂고 전원 켜고 연결!
(IP는 WIFI 라우터 등에서 확인합시다)
기본 ID: : pi
기본 비밀번호: raspberry
XXX@XXXXX:~$ ssh [email protected].???.???
[email protected].???.???'s password:
Linux raspberrypi 4.19.97-v7l+ #1294 SMP Thu Jan 30 13:21:14 GMT 2020 armv7l
The programs included with the Debian GNU/Linux system are free software;
the exact distribution terms for each program are described in the
individual files in /usr/share/doc/*/copyright.
Debian GNU/Linux comes with ABSOLUTELY NO WARRANTY, to the extent
permitted by applicable law.
Last login: Tue Apr 21 05:14:25 2020 from 192.168.100.130
SSH is enabled and the default password for the 'pi' user has not been changed.
This is a security risk - please login as the 'pi' user and type 'passwd' to set a new password.
pi@raspberrypi:~ $
로그인 성공!
그렇지만, 「패스워드가 디폴트인 상태에서, 갱신해 주세요!」라고 화내므로, 갱신할 때 합시다. www
6. IP 고정화
Raspberry Pi에 고정 IP 주소를 할당하는 방법 (Raspbian Jessie)
/etc/dhcpcd.conf
파일에 DHCP 정보를 추가하면 IP가 고정됩니다.
(WIFI의 경우)
interface wlan0
static ip_address=192.168.???.???/24
static routers=192.168.???.???
static domain_name_servers=1.1.1.1
7. I2C 활성화
마찬가지로 GPIO를 사용하려면 I2C를 활성화해야합니다.
Check! Raspberry Pi에서 I2C를 사용하고 싶습니다 (문제 해결)
$ sudo raspi-config
8 Hello, World!
그리고 센서를 사지 않으면 www
Reference
이 문제에 관하여(HDMI 접속 없이 Raspberry PI 개발 환경을 구축해 보았다.), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://qiita.com/jlee/items/9610d33096279bbf3e0f
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
XXX@XXXXX:~$ ssh [email protected].???.???
[email protected].???.???'s password:
Linux raspberrypi 4.19.97-v7l+ #1294 SMP Thu Jan 30 13:21:14 GMT 2020 armv7l
The programs included with the Debian GNU/Linux system are free software;
the exact distribution terms for each program are described in the
individual files in /usr/share/doc/*/copyright.
Debian GNU/Linux comes with ABSOLUTELY NO WARRANTY, to the extent
permitted by applicable law.
Last login: Tue Apr 21 05:14:25 2020 from 192.168.100.130
SSH is enabled and the default password for the 'pi' user has not been changed.
This is a security risk - please login as the 'pi' user and type 'passwd' to set a new password.
pi@raspberrypi:~ $
Raspberry Pi에 고정 IP 주소를 할당하는 방법 (Raspbian Jessie)
/etc/dhcpcd.conf
파일에 DHCP 정보를 추가하면 IP가 고정됩니다.(WIFI의 경우)
interface wlan0
static ip_address=192.168.???.???/24
static routers=192.168.???.???
static domain_name_servers=1.1.1.1
7. I2C 활성화
마찬가지로 GPIO를 사용하려면 I2C를 활성화해야합니다.
Check! Raspberry Pi에서 I2C를 사용하고 싶습니다 (문제 해결)
$ sudo raspi-config
8 Hello, World!
그리고 센서를 사지 않으면 www
Reference
이 문제에 관하여(HDMI 접속 없이 Raspberry PI 개발 환경을 구축해 보았다.), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://qiita.com/jlee/items/9610d33096279bbf3e0f
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
$ sudo raspi-config
그리고 센서를 사지 않으면 www
Reference
이 문제에 관하여(HDMI 접속 없이 Raspberry PI 개발 환경을 구축해 보았다.), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/jlee/items/9610d33096279bbf3e0f텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)