반응형
RHEL8.2 Minimall 설치 후 subsription 등록이나 dnf install 명령어를 수행할 때 아래와 같은 에러가 발생한다.
에러가 발생하긴 하지만, 동작은 정상적으로 하긴 하는데 에러가 뜨는게 눈에 걸슬린다면 아래와 같은 방법으로 해결할 수 있다.
##
UnicodeEncodeError: 'ascii' codec can't encode characters in position 89-91: ordinal not in range(128)
...
Message: '시스템 DMI 정보를 읽는 도중 오류 발생: %s'
Arguments: ('# SMBIOS implementations newer than version 2.7 are not\n# fully supported by this version of dmidecode.\n\n',)
###
1. logging error 이슈
2. 해결방법
[root@ansible-tower ~]# vi /etc/bashrc 맨 하단에 아래 내용 추가 후 저장
...
fi
# vim:ts=4:sw=4
export LANG=en_US.UTF-8
export LANGUAGE=en_US.UTF-8
export LC_COLLATE=C
export LC_CTYPE=en_US.UTF-8
[root@ansible-tower ~]# source ~/.bashrc
728x90
'Linux > RHEL7 & 8' 카테고리의 다른 글
[Linux] net-tools vs iproute CLI (0) | 2021.07.08 |
---|---|
[Linux] Password 복잡성 무시하고 강제로 비번 설정방법 (0) | 2021.07.08 |
[RHEL7] XFS LVM 디스크 증설 (용량 늘리기) (0) | 2021.07.05 |
[RHEL7] Disk 추가 및 mount 설정 (0) | 2021.07.05 |
[RHEL7] Bonding 수동으로 절체 방법 (0) | 2021.07.01 |