SBC (Single Board Computer)/Raspberry Pi Zero

<라즈베리파이 제로> SSH over USB ( Internet )

LEEHANDS 2021. 2. 19. 16:46
반응형

SD카드를 빼서 리더기에 삽입하고 리눅스 OS 컴퓨터에서 리딩한다

 

1. 볼륨 확인

2. SSH 활성화

touch /Volumes/boot/ssh

3. config.txt 수정

Boot 폴더 안에 있는 config.txt 를 수정하자

dtoverlay=dwc2

4. Edit cmdline.txt

vi cmdline.txt

After rootwait, append this text leaving only one space between rootwait and the new text (otherwise it might not be parsed correctly)

5. Boot on SD

  • Put the SD card into the Pi Zero
  • Plug a Micro-USB cable into the data/peripherals port (the one closest to the center of the board – see picture above)
  • You do NOT need to plug in external power – it will get it from your computer
  • Plug the other end into a USB port on your computer
  • Give the Pi Zero plenty of time to bootup (can take as much as 90 seconds – or more)
  • You can monitor the RNDIS/Ethernet Gadget status in the System Preferences / Network panel (note that the IP address listed is not the host)

5-1 Windows 의 경우 RNDIS/Ethernet Driver

Windows 의 경우 RNDIS/Ethernet Driver 가 제대로 안잡힐 경우가 있다 아래대로 하면 잘될것이다.

먼저 링크 파일을 다운로드 받는다. ( Download )

일단 Raspberrypi Zero 2번째 포트에 USB 를 연결하면 Com Port 로 잡혀있을 수 있다.

그러면 우클릭하여 "Update Driver Software"  를 클릭하고 Browser my Computer for dirver software 를 클릭하여 다운받은 폴더를 선택하면 된다.

그러면 대부분의 설정은 완료되었다.

 

6. SSH 연결

SSH 연결은 " raspberrypi.local " 입력

아이디 : pi / 비밀번호 : raspberry

 

7. Ethernet Bridge 만들기

USB Ethernet 을통해 접속은 했는데 업데이트 나 앱설치가 안되면 무용지물이다.

네트워크 환경에서 브릿지 설정을 해준다.

현재 사용중인 Ethernet 장치와 같이 클릭하여 연결 브릿지를 활성화 한다.

 

와이파이 연결없이 USB 연결만으로 라즈베리파이 제로 를 엑세스 할 수 있게 되었다.

그러면 이제 개발 시작

반응형