본문 바로가기
운영체제/Linux

VMware ] Linux Ubuntu 에서 한영키 사용하기

by eteo 2022. 8. 14.

root 권한으로 로그인

 

쉘 스크립트 파일을 만든다.

vi hangul.sh

 

아래와 같이 입력 후 저장하고 닫기

#!/bin/bash
setkeycodes 72 122
setkeycodes 71 123

 

스크립트 파일 실행하기

chmod +x hangul.sh
./hangul.sh

 

한영키가 잘 먹히는것을 확인할 수 있다.

이제 systemctl 을 통해 부팅시마다 변경한 설정이 적용될 수 있도록 설정한다

 

 

아래 경로로 가서 서비스 새로 등록

cd /etc/systemd/system
vi hangul.service

 

아래와 같이 입력 후 저장하고 닫기

[Unit]
Description=Change Hangul keycode

[Service]
ExecStart=/[스크립트 파일이 있는 경로]/hangul.sh

[Install]
WantedBy=multi-user.target

나의 경우는 ExecStart=/root/hangul.sh

 

아래 명령어로 서비스 상시 가동 설정 후 reboot 하면 항상 한/영키를 사용해 한영전환을 할 수 있다.

systemctl enable hangul
systemctl start hangul
systemctl status hangul