GEF 인코딩 에러

Sisyphus·2024년 9월 23일
0

기타

목록 보기
17/17

인코딩 에러

❯ gdb-gef                                                                                                            ─╯
GEF for linux ready, type `gef' to start, `gef config' to configure
93 commands loaded and 5 functions added for GDB 12.1 in 0.00ms using Python engine 3.10
Python Exception <class 'UnicodeEncodeError'>: 'ascii' codec can't encode character '\u27a4' in position 12: ordinal not in range(128)
(gdb)

해결 방법

sudo apt update
sudo apt install locales
sudo locale-gen en_US.UTF-8
sudo dpkg-reconfigure locales
  • en_US.UTF-8 선택

export LANG=en_US.UTF-8
export LC_ALL=en_US.UTF-8
  • bashrc 파일에 환경 변수 추가

정상 작동 확인

❯ gdb-gef                                                                                                            ─╯
GEF for linux ready, type `gef' to start, `gef config' to configure
93 commands loaded and 5 functions added for GDB 12.1 in 0.00ms using Python engine 3.10
gef➤

0개의 댓글