etc

라즈베리파이에 우분투 서버(20.04) 설치하기 - 이슈해결

J-Mook 2022. 1. 13. 12:11
반응형

 

화면출력 불량

위처럼 화면이 안나오는건 아닌데 이상하게 깨져서 출력되는 경우가 있다. 내 생각에는 라즈베리파이이기 때문에 펌웨어가 재대로 들어있지않아 발생하는 증상으로 보인다. os가 설치된 sd카드를 다른 컴퓨터에 연결하고 /system-boot/config.txt 경로로 접속하여 아래의 코드를 맨밑에 추가 해주자.

(sudo nano /Volumes/system-boot/config.txt)

# uncomment if hdmi display is not detected and composite is being output
hdmi_force_hotplug=1

# uncomment to force a specific HDMI mode (this will force VGA)
hdmi_group=2
hdmi_mode=16

# uncomment to force a HDMI mode rather than DVI. This can make audio work in
# DMT (computer monitor) modes
hdmi_drive=2

# uncomment to increase signal to HDMI, if you have interference, blanking, or
# no display
config_hdmi_boost=4

 os가 설치된 sd카드를 다른 컴퓨터에 연결하고 /system-boot/usercfg.txt 경로로 접속하여 아래의 코드를 맨밑에 추가 해주자.

(sudo nano /Volumes/system-boot/usercfg.txt)

dtoverlay=vc4-fkms-v3d

위 두가지 파일을 수정하고 다시 라즈베리에 꽂아 부팅하면 정상적으로 화면이 출력되는 것을 확인 할 수있다.

 

무선랜 설정방법

 os가 설치된 sd카드를 다른 컴퓨터에 연결하고 /system-boot/network-config 파일에서 아래 코드부분의 영역을 지우고 연결할 와이파이 이름(WIFI_NAME)과 비밀번호(WIFI_PASSWORD)를 입력해 준다.

(sudo nano /Volumes/system-boot/network-config)

wifis:
  wlan0:
    dhcp4: true
    optional: true
    access-points:
      "WIFI_NAME":
        password: “WIFI_PASSWORD”

 

USB인식 불가

겨우 부팅하고 ubuntu 로그인 화면이 나왔는데 키보드가 작동하지 않았다. (!!!!) 키보드 고장은 아니었기 때문에 당황했지만 위의 디스플레이 불량 상태를 생각하여 인식 가능하도록 설정하였다.

 os가 설치된 sd카드를 다른 컴퓨터에 연결하고 /system-boot/config.txt 파일에 아래코드 추가

(sudo nano /Volumes/system-boot/config.txt)

max_usb_current=1

위 설정 후 정상적으로 초기 로그인을 성공하였다.

 

ubuntu server 20.04 초기계정 ( ID : ubuntu, PWD : ubuntu )

반응형