Raspberry Pi 4 모델 B/2GB에 Ubuntu Server 20.04.1 설정
4720 단어 ubuntudevopsraspberrypi
$ cd /dev/disk/by-label
$ ls -lt (it will show your USB name and location, it gave
following for me SANDISK -> ../../sda1)
제 경우 USB 위치는 /dev/sda1
였습니다. 귀하의 경우에 따라 다를 수 있으므로 ls -lt
출력을 확인하십시오.이제 USB 및 설치된 패키지를 마운트하십시오.
$ sudo mkdir /media/usb
$ sudo mount -t vfat /dev/sda1 /media/usb
$ cd /media/usb
$ sudo dpkg -i libnl-route-3-200_3.4.0-1_arm64.deb\
libpcsclite1_1.8.26-3_arm64.deb \
wpasupplicant_2.9-1ubuntu4_arm64.deb
네트워크 인터페이스의 이름 및 연결된 IP 주소를 확인하십시오.
$ ip a
모든 네트워크를 나열합니다. 내 경우에는 이더넷의 경우 eth0, 아래에서 사용할 Wi-Fi의 경우 Wlan0이었습니다.
이제 Wi-Fi 사용자 이름 및 비밀번호 정보 설정을 추가하려면
$ ls /etc/netplan/
그러면 XX-cloud-init.yaml과 같은 YAML 파일의 이름이 출력됩니다. 백업을 생성하고 나노 편집기에서 열고 아래와 같이 Wi-Fi 설정을 추가합니다.
$ sudo cp XX-cloud-init.yaml XX-cloud-init.yaml.bak
$ sudo nano XX-cloud-init.yaml
# This file is generated from information provided by the datasource. Changes
# to it will not persist across an instance reboot. To disable cloud-init's
# network configuration capabilities, write a file
# /etc/cloud/cloud.cfg.d/XX-disable-network-config.cfg with the following:
# network: {config: disabled}
network:
version: 2
ethernets:
eth0:
dhcp4: true
optional: true
wifis:
wlan0:
dhcp4: true
optional: true
access-points:
"WIFI-USER-NAME-KEEP-QUOTES":
password: "WIFI-PASSWORD-KEEP-QUOTES"
$ sudo netplan --debug try (continue even if fails/pass)
$ sudo netplan --debug generate (fix all the issues raised; mostly regarding tabs/indentation, you can also look https://netplan.io/examples/ for examples if you are facing any troubles regarding tabs/indentation/spacing)
$ sudo netplan --debug apply
$ sudo reboot
$ ip a
wlan0ping google.com
수신 및 전송된 패키지를 확인합니다Reference
이 문제에 관하여(Raspberry Pi 4 모델 B/2GB에 Ubuntu Server 20.04.1 설정), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/jasmeet_17/installing-ubuntu-server-20-04-1-on-raspberry-pi-4-model-b-2gb-22cp텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)