Post

(Ubuntu) 초기 설정 / 업데이트

한글 설정 18.04 LTS

메뉴-검색 - Language support 들어가서 Install/Remove Language 클릭하고 Korean 설치. 재부팅 메뉴-검색 - input sources 들어가서Korean (Hangul) 추가. ( 꼭 이거여야 함. 그냥 Korean이나 Korean 101이런거 말고.) 원래 우분투 기본 input source 변경키는 Win(Super) + Space 임. 그러나 인풋 소스가Korean (Hangul) 인 경우 이 인풋 소스 내에서 Shift + Space로 영/한 전환 가능. 근데 불편하니까 메뉴 - 검색 - Region & language

  • English 삭제
  • Korean(Hangul) 우측 하단 cog 클릭 - Hangul Toggle Key에서 Shift + Space 삭제하고 Alt_R 등록.

root 계정으로 로그인 - 반드시 root로 디버깅 해야하는데 sudo로 해결이 안될 때.

1
2
3
4
## sudo passwd root
Enter new UNIX password:
Retype new UNIX password:

/etc/pam.d/gdm-password 파일 변경

1
2
3
4
5
#%PAM-1.0
auth    requisite       pam\_nologin.so
#auth   required        pam\_succeed\_if.so user != root quiet\_success
...

시작하면서 뜨는 ioctl 어쩌고 에러는 /root/.profile에서 다음과 같이 변경하면 해결.

1
2
3
4
mesg n || true
->
tty -s && mesg n || true

디스크 확장

http://kkn1220.tistory.com/49

HiDPI

ubuntu 18.04 LTS ( gnome )

1
2
gsettings set org.gnome.desktop.interface scaling-factor 2

2배가 되는데… 너무 크다. 이 방법은 정수 단위로 입력할 수 있어서, 중간 정도로 확대하고 싶다면 일단 위 방법으로 2배로 확대한 다음, xorg를 통해 fractional scaling을 사용해서 배율을 좀 줄이는 식으로 적용해야 한다.

휠 속도가 답답해 죽겠을 때

1
2
3
4
5
6
7
8
9
10
11
12
13
$ sudo apt-get install imwheel
$ vi ~/.imwheelrc
".\*"
None,      Up,   Button4, 6
None,      Down, Button5, 6
Control\_L, Up,   Control\_L|Button4
Control\_L, Down, Control\_L|Button5
Shift\_L,   Up,   Shift\_L|Button4
Shift\_L,   Down, Shift\_L|Button5

  
$ imwheel --kill --buttons "4 5"

메뉴 - 검색 - startup App… 여기에 imwheel --kill --buttons "4 5"등록

This post is licensed under CC BY 4.0 by the author.