목록Linux (5)
코딩과로그

Xbindkeys 을 통해 단축키를 설정하여 특정 커맨드를 실행시킬 수 있다. 예를 들어 CTRL + 2 를 누르면 vscode 가 실행되도록 할 수 있다. 설치 방법 sudo apt-get update -y ㄹㄹ sudo apt-get install -y xbindkeys xbindkeys -d > ~/.xbindkeysrc ~/.xbindkeysrc 를 확인한다. ~/.xbindkeysrc 안에 보면 아래와 같이 예시가 나와 있다. 아래의 예시는 CTRL+ 오른쪽 마우스 클릭 할 때에 xterm 명령어를 실행하라는 예시이다. ... # specify a mouse button #"xterm" # control + b:2 ...원하는대로 작성 후 killall -HUP xbindkeys 를 실행하여 x..
https://github.com/marlonrichert/zsh-autocomplete GitHub - marlonrichert/zsh-autocomplete: 🤖 Real-time type-ahead completion for Zsh. Asynchronous find-as-you-type autocomplet 🤖 Real-time type-ahead completion for Zsh. Asynchronous find-as-you-type autocompletion. - GitHub - marlonrichert/zsh-autocomplete: 🤖 Real-time type-ahead completion for Zsh. Asynchronous find-as-y... github.com # Download..

우분투에서는 화면에 그리는 도구를 설치할 수 있다. 설치 가이드 https://ubuntuhandbook.org/index.php/2021/02/start-drawing-on-screen-ubuntu-2004/ Alt + Super + D : 그리기 Ctrl + F1 : 도움말 보기
나는 내 라우팅 테이블을 보기 위해 netstat -rn 을 쳐보았다. 결과값은 아래와 같았다. Kernel IP routing table Destination Gateway Genmask Flags MSS Window irtt Iface 0.0.0.0 192.168.0.1 0.0.0.0 UG 0 0 0 enx00e04d69887d 169.254.0.0 0.0.0.0 255.255.0.0 U 0 0 0 enx00e04d69887d 172.17.0.0 0.0.0.0 255.255.0.0 U 0 0 0 docker0 172.18.0.0 0.0.0.0 255.255.0.0 U 0 0 0 br-f97f50416a3c 172.19.0.0 0.0.0.0 255.255.0.0 U 0 0 0 br-4e479ce36f6..
# 라우트 정보 확인 ❯ netstat -rn Kernel IP routing table Destination Gateway Genmask Flags MSS Window irtt Iface 0.0.0.0 192.168.0.1 0.0.0.0 UG 0 0 0 enx00e04d69887d 169.254.0.0 0.0.0.0 255.255.0.0 U 0 0 0 enx00e04d69887d 172.17.0.0 0.0.0.0 255.255.0.0 U 0 0 0 docker0 172.18.0.0 0.0.0.0 255.255.0.0 U 0 0 0 br-f97f50416a3c 172.19.0.0 0.0.0.0 255.255.0.0 U 0 0 0 br-4e479ce36f64 172.20.0.0 0.0.0.0 255.255..