Linux,Unix,BSD

[라즈베리파이] 라즈비안 설치 후 해야 할 작업 정리

채윤아빠 2021. 7. 28. 21:59
728x90
반응형

최초 부팅 후, 한국 지역 설정 언어 및 키보드는 US로 사용하도록 체크 박스 선택

터미널을 실행하여 다음과 같이 필수 패키지를 설치합니다.

$ sudo apt update -qq
All packages are up to date.
$ sudo apt install net-tools openssh-server screen

gstreamer에서 "x264enc" 인코딩을 지원하기 위하여 "gstreamer1.0-plugins-ugly" 패키지를 설치합니다.

$ sudo apt install gstreamer1.0-plugins-ugly

UART 사용을 위하여 "/boot/config.txt" 파일에서 다음과 같이 수정합니다.

$ sudo vi /boot/config.txt


# Uncomment some or all of these to enable the optional hardware interfaces
#dtparam=i2c_arm=on
#dtparam=i2s=on
#dtparam=spi=on
dtparam=i2c_arm=off
dtparam=spi=off



[all]
#dtoverlay=vc4-fkms-v3d
start_x=1
gpu_mem=128
enable_uart=1