Ubuntu 22.04를 설치하고 난 이후에 하는 반복적인 설정 작업들.
[v] Gnome Tweaks, MP3 코덱 등 설치
$ sudo apt install ubuntu-restricted-extras
$ sudo apt update
$ sudo apt install gnome-tweaks
[v] Gnome Shell 설정 – 독 아이콘 클릭시 최소화 하도록
$ gsettings set org.gnome.shell.extensions.dash-to-dock click-action 'minimize'
[v] Gnome Shell Extension Manager 설치 (사용자 테마 설정 가능)\
$ sudo apt install gnome-shell-extension-manager
[v] vim-tiny 제거, vim 설치 : 초기 설치시 vim 에디터의 최소버전이 기본 설치됨. (사용 불편)
$ sudo apt purge vim-tiny
$ sudo apt install vim
[v] net-tools, htop 설치 : ifconfig 등 네트웍 관련 명령어 사용
$ sudo apt install htop net-tools
[v] 한글 입력기 설치: fcitx5-hangul, 이후 설정에서 입력기를 fcitx5로 선택.
$ sudo apt install fcitx5 fcitx5-hangul
[v] CPU의 주파수 정책(?)를 항상 퍼포먼스 모드로… (성능 향상.. 배터리는 암울…)
$ sudo apt install cpufrequtils
$ sudo nano /etc/default/cpufrequtils
GOVERNOR="performance"
MIN_SPEED="2000MHz"
$ sudo systemctl disable ondemand
$ sudo systemctl restart cpufrequtils
[v] Nvidia Driver 설치 : https://ahnbk.dev/?p=29
[v] tmux 설치 : https://ahnbk.dev/?p=40
[v] Github CLI 설치: github 관련 작업을 CLI 환경에서 가능하도록 (Repository 생성, 로그인 등)
$ sudo apt install curl
$ curl -fsSL https://cli.github.com/packages/githubcli-archive-keyring.gpg | sudo dd of=/usr/share/keyrings/githubcli-archive-keyring.gpg
$ echo "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/githubcli-archive-keyring.gpg] https://cli.github.com/packages stable main" | sudo tee /etc/apt/sources.list.d/github-cli.list > /dev/null
$ sudo apt update
$ sudo apt install gh
[v] 폰트 설치
- D2Coding : https://github.com/naver/d2codingfont
- Pretendard : https://github.com/orioncactus/pretendard
[v] Visual Studio Code 설치
$ sudo apt install software-properties-common apt-transport-https wget
$ wget -q https://packages.microsoft.com/keys/microsoft.asc -O- | sudo apt-key add -
$ sudo add-apt-repository "deb [arch=amd64] https://packages.microsoft.com/repos/vscode stable main"
$ sudo apt update
$ sudo apt install code
Leave a Reply