## RAM 구분

 2G : D9WHZ
 4G : D9WHV
 8G : D9ZCL

 

## ubuntu Server 20.04.4 LTS ( 64bit OS )

https://ubuntu.com/download/raspberry-pi 

 

Install Ubuntu on a Raspberry Pi | Ubuntu

Ubuntu is an open-source operating system for cross platform development, there's no better place to get started than with Ubuntu on a Raspberry Pi.

ubuntu.com

 

## 라즈베리안 ( 64bit OS )

 https://downloads.raspberrypi.org/raspios_lite_arm64/images/
 https://downloads.raspberrypi.org/raspios_arm64/images/
 안정화 버전 : 2022년 01월 28일 버전

 

## 기본 계정 및 암호

 라즈베리안 : pi / raspberry
 ubuntu : ubuntu / ubuntu 

 

## exFAT 인식 시키기

 sudo apt-get install exfat-fuse
 sudo apt-get install exfat-utils

 

## Go 언어 설치 ( 라즈베리안 64bit )

 wget https://golang.org/dl/go1.17.3.linux-arm64.tar.gz
 tar -C /usr/local -xzf go1.17.3.linux-arm64.tar.gz


 vi ~/.bashrc
 export PATH=$PATH:/usr/local/go/bin

 

## ArozOS 설치

https://github.com/tobychui/arozos

 

- 수동 build

 git clone https://github.com/tobychui/arozos.git
 cd ./arozos/src
 go build
 ./arozos

 

- 자동 설치

 wget https://raw.githubusercontent.com/tobychui/arozos/master/installer/install_for_pi.sh
 sudo chmod 775 ./install_for_pi.sh
 ./install_for_pi.sh

 

 

 

+ Recent posts