컴퓨터 일반/OS2021. 10. 7. 09:57

https://www.haiku-os.org/  

 

한글입력기 

 입력기 다운로드 :  https://gangmin.kr/133
 - 다운로드 후 압축 폴더의 Readme 참조 
 - /boot/home/config/non-packaged/add-ons/input_server/methods 폴더에  HanBe_x64 또는  HanBe_x86 를 복사 
 - Shift + Space 를 이용해서 언어 변경 가능 

패키지 매니저 
  기본적으로 일반적인 개발용 도구들은 설치 되어 있다. gcc, git 등 ..
  필요한 것은 pkgman 이라는 명령으로 설치가 가능하다. openjdk , nodejs & npm,  golang , python

  ( python3 은 설치 되어 있다. )
# pkgman full-sync 
# pkgman update
# pkgman install vim 

기타
 - 설정 관련 폴더는 ~/config/settings 가 기본이며 /etc/ 폴더에서도 가능하다.
   vim : ~/config/settings/vim/vimrc 
   bash: ~/config/settings/profile

다른 OS와 차이 
 - 일반적인 Ctrl + XX 조합의 키들이 Alt  + XX 로 된다. ( copy : alt + c , paste : alt + v ... )

Posted by yhlee
컴퓨터 OS/Linux2021. 5. 18. 09:00

nabi-1.0.0.gz
4.06MB

boot/isolinux/isolinux.cfg 파일 수정 ( boot/nabi-1.0.0.gz 에 위치 한다면 )

APPEND linux /boot/bzImage initrd=/boot/rootfs.gz,/boot/nabi-1.0.0.gz
Posted by yhlee
컴퓨터 OS/Linux2020. 12. 18. 15:13
wget -O - https://pkg.hamonikr.org/hamonikr-pkg.key | sudo apt-key add -
sudo bash -c "echo 'deb [arch=amd64] https://pkg.hamonikr.org focal main' > /etc/apt/sources.list.d/hamonikr.list"
sudo apt-get update
sudo apt install nimf nimf-libhangul
Posted by yhlee