사용자 도구

사이트 도구


linux:manjaro:20_lysia_kde

차이

문서의 선택한 두 판 사이의 차이를 보여줍니다.

차이 보기로 링크

양쪽 이전 판 이전 판
다음 판
이전 판
linux:manjaro:20_lysia_kde [2020/07/22 23:19]
kwon37xi [PC Speaker 끄기]
linux:manjaro:20_lysia_kde [2020/08/04 09:02] (현재)
kwon37xi
줄 49: 줄 49:
   * [[linux:inputmethod|Input Method (입력기, 한글)]]를 설치한다. ''fcitx'' 혹은 ''uim''가 나아보인다.   * [[linux:inputmethod|Input Method (입력기, 한글)]]를 설치한다. ''fcitx'' 혹은 ''uim''가 나아보인다.
   * [[https://wiki.archlinux.org/index.php/Localization/Korean_(%ED%95%9C%EA%B5%AD%EC%96%B4)#%EC%9E%85%EB%A0%A5%EA%B8%B0_%EC%84%A4%EC%A0%95|한국어 지역화 입력기 설정]]   * [[https://wiki.archlinux.org/index.php/Localization/Korean_(%ED%95%9C%EA%B5%AD%EC%96%B4)#%EC%9E%85%EB%A0%A5%EA%B8%B0_%EC%84%A4%EC%A0%95|한국어 지역화 입력기 설정]]
-  * 현재 [[linux:inputmethod:fcitx|Linux Input Method fcitx]] 사용중 +  * 현재 [[linux:inputmethod:uim|UIM]] 사용중
-==== fcitx-hangul ==== +
-  * 설치<code sh> +
-sudo pacman -Syu fcitx-hangul fcitx-configtool fcitx-qt5 +
-</code> +
-  * ''~/.xprofile''<code> +
-export GTK_IM_MODULE=fcitx +
-export QT_IM_MODULE=fcitx +
-export XMODIFIERS=@im=fcitx +
-</code> +
-  * 충돌나는 키들 ''DISABLED'' 설정 [[linux:inputmethod|Input Method (입력기, 한글)]] 참고 +
-  * 재시작 후 자동으로 fcitx 가 실행되지 않는다면 ''~/.xinitrc''에 ''fcitx &'' 추가. 그냥 XFCE 시작 프로그램으로 등록해도 될 듯.+
  
 ==== uim ==== ==== uim ====
 +  * [[linux:inputmethod:uim|UIM]]
   * [[https://wiki.archlinux.org/index.php/User:Isaac914/uim|User:Isaac914/uim - ArchWiki]]   * [[https://wiki.archlinux.org/index.php/User:Isaac914/uim|User:Isaac914/uim - ArchWiki]]
   * 설치<code sh>   * 설치<code sh>
줄 80: 줄 70:
 </code> </code>
   * 2020년 현재 한글 입력 자체는 uim이 가장 뛰어나 보인다.   * 2020년 현재 한글 입력 자체는 uim이 가장 뛰어나 보인다.
 +  * 노트북의 우측 Alt 한영키, 우측 Ctrl 한자키 매핑하기
 +    * **시스템설정 -> 입력장치 -> 키보드 -> 고급**
 +      * 한국어 한/영,한자 키
 +        * **오른쪽 Alt 키를 한/영 키로 만들기** 체크
 +        * **오른쪽 Ctrl 키를 한자 키로 만들기** 체크
 +    * 이 상태에서 아래 명령을 내려보면 한영/한자키 설정이 보이게 된다.<code sh>
 +setxkbmap -print -verbose 10
 +----------------------------
 +이런저런 내용.....
 +xkb_keymap {
 +        xkb_keycodes  { include "evdev+aliases(qwerty)" };
 +        xkb_types     { include "complete"      };
 +        xkb_compat    { include "complete"      };
 +        # 아래 부분
 +        xkb_symbols   { include "pc+kr+kr(kr104):2+inet(evdev)+kr(ralt_hangul)+kr(rctrl_hanja)" }; 
 +        xkb_geometry  { include "pc(pc86)"      };
 +};
 +
 +</code>
 +    * 이렇게 해도 **벼루 키 설정 1**에서 한영/한자키를 눌러도 제대로 반영이 안 될 경우에 ''~/.uim/custom/custom-byeoru-keys1.scm'' 파일에서 다음 항목을 추가해준다.<code>
 +# 필요한 항목만 표시한 것임. 그대로 복붙하면 안됨. 대소문자, 대시(-) 주의
 +(define byeoru-on-key '("<Shift> " "hangul"))
 +(define byeoru-on-key? (make-key-predicate '("<Shift> " "hangul")))
 +(define byeoru-latin-key '("<Shift> " "hangul"))
 +(define byeoru-latin-key? (make-key-predicate '("<Shift> " "hangul")))
 +(define byeoru-conversion-key '("F9" "hangul-hanja"))
 +(define byeoru-conversion-key? (make-key-predicate '("F9" "hangul-hanja")))
 +</code>
 +
 +==== fcitx-hangul ====
 +  * 설치<code sh>
 +sudo pacman -Syu fcitx-hangul fcitx-configtool fcitx-qt5
 +</code>
 +  * ''~/.xprofile''<code>
 +export GTK_IM_MODULE=fcitx
 +export QT_IM_MODULE=fcitx
 +export XMODIFIERS=@im=fcitx
 +</code>
 +  * 충돌나는 키들 ''DISABLED'' 설정 [[linux:inputmethod|Input Method (입력기, 한글)]] 참고
 +  * 재시작 후 자동으로 fcitx 가 실행되지 않는다면 ''~/.xinitrc''에 ''fcitx &'' 추가. 그냥 시작 프로그램으로 등록해도 될 듯.
 +
 ===== yay 설치 ===== ===== yay 설치 =====
   * [[linux:arch:aur|AUR Arch User Repository]]을 편하게 사용하기 위한 ''yay''를 설치한다.   * [[linux:arch:aur|AUR Arch User Repository]]을 편하게 사용하기 위한 ''yay''를 설치한다.
줄 231: 줄 262:
   * [[linux:performance|Linux Performance]]   * [[linux:performance|Linux Performance]]
   * ''/etc/sysctl.d/100-majaro-less-swap.conf''<code>   * ''/etc/sysctl.d/100-majaro-less-swap.conf''<code>
-vm.swappiness=10+vm.swappiness=5
 </code> </code>
   * reboot   * reboot
  
-===== grub 부팅 timeout 줄이기 =====+===== grub 부팅 timeout 줄이기 및 테마 설정 ===== 
 +  * [[linux:grub|Linux Grub]]
   * ''/etc/default/grub'' 에서 ''GRUB_TIMEOUT'' 값 줄이기<code>   * ''/etc/default/grub'' 에서 ''GRUB_TIMEOUT'' 값 줄이기<code>
-GRUB_TIMEOUT=2+GRUB_TIMEOUT=5
 </code> </code>
   * ''sudo update-grub'' 로 적용.   * ''sudo update-grub'' 로 적용.
 +  * 테마 설치<code sh> 
 +pamac install grub-customizer breeze-grub grub-theme-vimix 
 +</code> 
 +  * grub-customizer 로 ''grub-theme-vimix''으로 테마 변경 ''/etc/default/grub''<code> 
 +GRUB_THEME="/usr/share/grub/themes/Vimix/theme.txt" 
 +</code> 
 +  * ''sudo update-grub'' 적용. 
 +  * ''grub-customizer''는 ''/boot/grub/themes/'' 에 있는 테마만을 찾는데, 실제로 표준 경로는 ''/usr/share/grub/themes''라서 직접 수정해줘야 한다.
 ===== SSD TRIM 활성화 ===== ===== SSD TRIM 활성화 =====
   * SSD 드라이브를 사용한다면 최적화를 위해 TRIM을 활성화한다.   * SSD 드라이브를 사용한다면 최적화를 위해 TRIM을 활성화한다.
줄 249: 줄 288:
 ===== CPU performance 모드로 변경 ===== ===== CPU performance 모드로 변경 =====
   * [[linux:cpufreq|Linux CPU Frequency]]   * [[linux:cpufreq|Linux CPU Frequency]]
-  * ''~/.local/bin/cpu_performance.sh''<code sh> +  * [[https://aur.archlinux.org/packages/plasma5-applets-plasma-pstate/|AUR (en) - plasma5-applets-plasma-pstate]] 위젯 패널에 등록
-sudo cpupower  -c all frequency-set -g performance +
-</code> +
-  * 시작 프로그램에 등록+
  
 ===== systemd 에러 확인 ===== ===== systemd 에러 확인 =====
줄 276: 줄 312:
   * [[:virtualbox|VirtualBox]] - [[linux:virtualbox|VirtualBox LinuxHost]]   * [[:virtualbox|VirtualBox]] - [[linux:virtualbox|VirtualBox LinuxHost]]
   * [[:vagrant|Vagrant]]   * [[:vagrant|Vagrant]]
 +  * [[linux:directory_navigation:autojump|Autojump]]
  
 ===== Troubleshootings ===== ===== Troubleshootings =====
-  * ''ePdfviewer'' 설치. 기본 설치되는 ''qpdfview''는 너무 느렸음.+  * ''okular'' PDF viewer 설치
  
-==== XFCE Error : 이후 다시 발생안함 ==== +===== 문제점 ===== 
-  * Manjaro 18 XFCE 버전의 버그로 보인다. 일정 시점에만 발생하고 이제는 발생하지 않음. +  * [[https://aur.archlinux.org/packages/fingerprint-gui/|aur/fingerprint-gui]] 가 제대로 업데이트가 안돼서 2020 7월 현재 지문인식이 안되고 있음.
-  * [[https://forum.manjaro.org/t/failed-to-execute-child-process-no-such-file-or-directory/89736/33|failed to execute child process no such file or directory Newbie Corner - Manjaro Linux Forum]] +
-  * Error like the following +
- +
-> Failed to execute child process "/usr/lib/xfce4/exo-1/exo-helper-1 (no such file or directory) +
- +
-<code sh> +
-sudo pacman -S xfce4-gtk3  +
-# yes to the following +
-> thunar-volman-gtk3 and thunar-volman are in conflict. Remove thunar-volman? [y/N] +
- +
-sudo reboot +
-</code> +
- +
-==== linux-firmware 특정 버전에서 Intel WiFi Driver 적재 실패 ==== +
-  * ''linux-firmware'' 패키를 업그레드 한 뒤로 WIFI 모듈이 적재 안되는 현상이 발생했음. +
-  * [[https://bugs.archlinux.org/task/63117|FS#63117 : iwlwifi crash on Intel AC 9620]] +
-  * ''/var/cache/pacman/pkg/''에 는 ''linux-firmware-20190717.bf13a71-1-any.pkg.tar.xz''로 다운그레이드 하고 재부팅하자 올바로 작동하였+
-  * [[https://wiki.archlinux.org/index.php/downgrading_packages|Downgrading packages - ArchWiki]]<code sh> +
-sudo pacman -U /var/cache/pacman/pkg/linux-firmware-20190717.bf13a71-1-any.pkg.tar.xz  +
-</code> +
-  * ''/etc/pacman.conf''에 ''linux-firmware'' ignore 설정<code> +
-IgnorePkg   = linux-firmware +
-</code> +
-  * 이후 새로운 버전의 ''linux-firmware''가 나오면 테스트해보고 ''IgnorePkg'' 풀어준다.+
  
 ===== 참조 ===== ===== 참조 =====
   * [[https://youtu.be/BcDGVcO_tZU|10 Things to do first in Manjaro]]   * [[https://youtu.be/BcDGVcO_tZU|10 Things to do first in Manjaro]]
  
linux/manjaro/20_lysia_kde.1595427573.txt.gz · 마지막으로 수정됨: 2020/07/22 23:19 저자 kwon37xi