본문 바로가기

OS/Linux

(5)
ubuntu 20.04 한영 한자 키 등록하기 xev 에서 키 인식 시키기 한영키 값을 확인하기 위해 xev 를 실행했지만 키를 아에 인식하지 못하는 경우가 있다. 이때 setkeycodes 로 등록을 해야 xev 에서 인식이 된다. setkeycodes 에 사용된 값을 키보드 마다 다를 수 있기 때문에 설정이후 xev 를 통해 원하는 값을 설정되었는지 확인한다. (base) chlee@chlee-desktop:~ $ sudo setkeycodes 72 122 (base) chlee@chlee-desktop:~ $ sudo setkeycodes 71 123 xev 로 등록된 키값 확인 KeyRelease event, serial 37, synthetic NO, window 0x3800001, root 0x405, subw 0x0, time 45298..
linux timezone 변경하기 최근 ec2 를 받아서 사용하는 경우가 많은데 전부 UTC 로 설정이 되어 있다. 개발이나 운영환경 전체에서 어떤 timezone 을 사용할 것인지 논의가 된적은 없지만 로그를 확인하다 보면 많이 불편했었는데 timezone 을 변경하는 것을 확인해 보았고 몇가지 방법이 있다. timedatectl system, permanent sudo timedatectl set-timezone Asia/Seoul /etc/localtime system, permanent sudo cp -p /usr/share/zoneinfo/Asia/Seoul /etc/localtime tzselect per user, temporary [test@ttest ~]$ tzselect Please identify a location ..
yum epel 404 error yum 으로 특정 패키지를 설치하려는데 epel-release repository 부분에서 404 error 가 발생하였다. yum 을 쓰면서 처음 보았는데 다음과 같이 cache 재구성하면서 해결... [test@tdb01 kafkacat-src]$ sudo yum clean all [sudo] password for test: Loaded plugins: fastestmirror Cleaning repos: base epel extras mongodb-org-4.4 ps-80-release-noarch ps-80-release-x86_64 tools-release-noarch tools-release-x86_64 updates Cleaning up list of fastest mirrors [test..
ssh 암호 없이 로그인하기 테스트, 배포, 등에서 password 없이 ssh 를 사용해야 할때가 있는데 미묘한 차이로 잘 안되는 경우가 많아 따로 기록하려함. ssh 키 생성 키 생성은 특정서버에 접속을 시도하려는 클라이언트에서 수행한다. $ ssh-keygen -t rsa Generating public/private rsa key pair. Enter file in which to save the key (/home/chlee/.ssh/id_rsa): Enter passphrase (empty for no passphrase): Enter same passphrase again: Your identification has been saved in /home/chlee/.ssh/id_rsa. Your public key has..
man, 'No manual entry for man' 해결하기 vmware 에서 centos 를 설치하고 테스트를 하다가 man page 가 되지 않는것을 확인했다. $ man fsync No manual entry for fsync chlee@dev2:~ $ man fopen No manual entry for fopen chlee@dev2:~ $ man 3 fsync No manual entry for fsync in section 3 chlee@dev2:~ $ man man No manual entry for man 구글 검색 후 다음과 같이 설치를 시도.. $ sudo yum -y install man man-pages man-pages-ko man-db Loaded plugins: fastestmirror, langpacks Loading mirror sp..