개발일지

[Ubuntu] 우분투 서버(ubuntu server) 글자 크기 CLI로 변경

송채채 2024. 2. 5. 13:22

 

우분투 20.04 환경

사용하는 모니터가 해상도가 높아서 글자크기가 너무 작게 보임

방법을 찾아보니, UI로 configure를 수정하는 방법을 알려주지만 최대 8X16이라 다른 방법을 찾아봄

https://ko.linux-console.net/?p=2441

 

Ubuntu Server에서 콘솔 글꼴을 변경하는 방법

Ubuntu Server에서 콘솔 글꼴을 변경하는 방법 기본적으로 Ubuntu 서버 소프트웨어는 그래픽 환경 없이 실행되도록 설계되었습니다. 따라서 Ubuntu 서버를 새로 설치하는 것은 콘솔(검은색 배경과 흰색

ko.linux-console.net

 

스택오버플로우 참고해서 찾은 방법

https://askubuntu.com/questions/173220/how-do-i-change-the-font-or-the-font-size-in-the-tty-console

 

How do I change the font or the font size in the TTY (console)?

I am using Ubuntu 12.04. Recently, the font size for all of my TTYs became much larger. How can I change the font size back to the default?

askubuntu.com

 

sudo나 root계정으로 실행하기!

cd /etc/default
vim console-setup

```
FONTSIZE="16x32"

```

sudo reboot 

스택오버플로우에선 아래 명령어로 바로 적용시키는데, 난 안돼서 reboot했음

sudo update-initramfs -u
반응형