우분투 크롬설치, 한글설정

1
post-thumbnail
  1. 인증키 받아오기
wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add -
  1. 크롬 패키지를 다운로드받을 PPA(Personal Package Archive)를 sources.list.d에 추가.
sudo sh -c 'echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list'
  1. 패키지 리스트를 업데이트
sudo apt update
  1. 크롬 설치
sudo apt-get install google-chrome-stable

설치 중간에 Y눌러 진행!

google-chrome

설치한 크롬!! 하지만 한글이 깨지는모습!

  1. 나눔폰트 설치
sudo apt-get install fonts-nanum fonts-nanum-coding fonts-nanum-extra
  1. locale 확인
locale
  1. locale 변경, ko_KR.UTF8 선택(방향키로 변경)
sudo dpkg-reconfigure locales
  1. WSL 다시 시작(Windows PowerShell에서 작성)
wsl —shutdown

fcitx을 이용하여 한글입력기 설치하는 방법

  1. apt 로 fcitx 입력기와 한글 폰트, 언어팩을 설치
$ sudo apt install fcitx fcitx-hangul fonts-noto-cjk dbus-x11 language-pack-ko
  1. 위 과정중 나눔폰트를 설정하였다면
    루트로 다음 명령을 실행해서 fcitx 용 초기화 파일을 생성.
sudo vi /etc/profile.d/fcitx.sh
  1. vi 파일이 열렸으면
    o => 작성
    ESC + : + w + q => 저장후 나오기
export QT_IM_MODULE=fcitx
export GTK_IM_MODULE=fcitx
export XMODIFIERS=@im=fcitx
export DefaultIMModule=fcitx

#optional
fcitx-autostart &>/dev/null
  1. WSL 다시 시작(Windows PowerShell에서 작성)
wsl —shutdown

설치 지우기

sudo apt remove fcitx-hangul
sudo autoremove
  1. fcitx-config-gtk3 실행
  1. 원하는 단축키설정
    기본값은 Ctrl + Space

    최종적으로 우분투 크롬환경에서 한글 잘 나오는 모습과, 언어입력 전환 가능해짐!!

2개의 댓글

comment-user-thumbnail
2023년 2월 2일

중간에 설치 지우기는 몬가요?

답글 달기
comment-user-thumbnail
2024년 2월 27일

한글 설정 감사합니다!!

답글 달기