내용으로 건너뛰기
wiki.akpil.net
사용자 도구
로그인
사이트 도구
검색
도구
문서 보기
이전 판
역링크
최근 바뀜
미디어 관리자
사이트맵
로그인
>
최근 바뀜
미디어 관리자
사이트맵
추적:
우분투_설치_후_기본_설정
이 문서는 읽기 전용입니다. 원본을 볼 수는 있지만 바꿀 수는 없습니다. 문제가 있다고 생각하면 관리자에게 문의하세요.
====== 우분투 설치 후 기본 설정 ====== ----------- 1. mirror site 변경 <code> sudo sed -i 's/kr.archive.ubuntu.com/mirror.kakao.com/g' /etc/apt/sources.list 버전에 따라서는 sudo sed -i 's/kr.archive.ubuntu.com/mirror.kakao.com/g' /etc/apt/sources.list.d/ubuntu.sources </code> 2. 기본 패키지 업데이트 <code> sudo apt update sudo apt upgrade -y sudo apt autoremove -y </code> 3. zsh 설치 및 설정 <code> sudo apt install zsh -y && chsh -s `which zsh` curl -L https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh | sh git clone https://github.com/zsh-users/zsh-autosuggestions $ZSH_CUSTOM/plugins/zsh-autosuggestions --depth=1 git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting --depth=1 git clone https://github.com/lukechilds/zsh-better-npm-completion ~/.oh-my-zsh/custom/plugins/zsh-better-npm-completion --depth=1 </code> oh-my-zsh 플러그인들을 한번에 설치 <code> git clone https://github.com/zsh-users/zsh-autosuggestions $ZSH_CUSTOM/plugins/zsh-autosuggestions --depth=1 && git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting --depth=1 && git clone https://github.com/lukechilds/zsh-better-npm-completion ~/.oh-my-zsh/custom/plugins/zsh-better-npm-completion --depth=1 </code> .zshrc 에 아래 내용 추가 <code> ZSH_THEME="agnoster" plugins=( git zsh-autosuggestions zsh-syntax-highlighting zsh-better-npm-completion ) </code> 4. 한글 글꼴 및 입력기 설치 <code> sudo apt install fonts-unfonts-core fonts-unfonts-extra fonts-nanum fonts-naver-d2coding ibus ibus-hangul </code> 5. 펌웨어 업데이트 (라즈베리파이) <code> sudo rpi-update </code> --------- 2026.02.03 akpil
우분투_설치_후_기본_설정.txt
· 마지막으로 수정됨:
2026/02/03 10:00
저자
akpil
문서 도구
문서 보기
이전 판
역링크
맨 위로