retoropi 레트로파이 레트로 게임기

우분투 설치


우분투 초기 세팅

  • sudo apt-get update 로컬 컴퓨터 패키지 데이터베이스 업데이트
  • sudo apt-get upgrade
  • cat /proc/device-tree/model 라즈베리파이 보드 버전확인
  • raspberray pi 3 model B rev1
  • uname -a
  • cat /etc/issue
  • cat /etc/*release*
  • OS 버전 확인

네트워크 세팅

  • iwconfig 네트워크 설정확인
  • ifconfig wlan0 up 랜카드 활성화
  • sudo vi /etc/network/interfaces 관리자 권한으로 인터페이스 파일 수정
  • 파일이 readonly라 수정되지 않았다. 네트워크 매니저를 사용
auto wlan0
iface wlan0 inet dhcp
	allow-hotplug wlan0
	wpa-ssid "무선 네트워크 이름"
	wpa-psk "비밀번호"
  • sudo ifdown wlan0 네트워크 내리기
  • sudo ifup wlan0 네트워크 올리기

네트워크 매니저

  • sudo apt-get install network-manager 네트워크 매니저 설치
  • sudo nmtui 네트워크 매니져 시작
  • edit a connection > Wi-Fi > Active a connection
  • 리스트에서 와이파이 선택

ssh 설정

  • sudo apt-get install openssh-server
  • sudo apt-get install ufw
  • ```sudo ufw allow 22``
  • sudo /etc/init.d/ssh restart
  • systemctl enable ssh
  • systemctl status ssh

  • sudo apt-get install firewall-config
  • sudo firewall-cmd --add-service-ssh --permanent
  • sudo firewall-cmd --reload

  • sudo reboot
  • Raspberry Pi OS 설정에서 ssh를 설정하여 추가설정이 필요하지 않았음

기타

로컬설정

  • sudo raspi-config
  • localisation options 선택
  • locale 선택
  • en_US.UTF-8 UTF-8
  • finish
  • sudo update-locale LANGUAGE="en_US:en"
  • sudo update-locale LC_ALL=en_US.UTF-8
  • sudo apt install git lsb-release
  • git clone --depth=1 https://github.com/RetroPie/RetroPie-Setup.git
  • cd RetroPie-Setup
  • chmod +x retropie_setup.sh
  • sudo ./retropie_setup.sh
  • OK, OK, Basic install, Yes
  • Configuration / tools
  • autostart, Start Emulation Station at boot, Ok
  • bashwelcometweak, install bash welcome tweak, ok
  • 컴파일 과정이 너무 오래 걸림 (수시간 이상)

#라즈겜동