Arm Linux Kernel Hacks

rousalome.egloos.com

포토로그 Kernel Crash


통계 위젯 (화이트)

493
557
422263


[부록 C] 리눅스 커널 프로젝트에 기여하기: 설정 방법 - git과 mutt 프로그램 설정 부록

먼저 리눅스 컴퓨터에는 mutt와 git 프로그램이 설치돼 있어야 합니다.
root@raspberrypi:/home/pi# apt-get install mutt git

위 명령어를 입력하면 mutt와 git 프로그램을 설치할 수 있습니다.
이 프로그램이 제대로 설치됐는지 확인해볼까요? 이를 위해 다음 명령어를 입력합시다.
root@raspberrypi:/home/pi#which mutt
/usr/bin/mutt
root@raspberrypi:/home/pi#which git
/usr/local/bin/git

'cd ~' 명령어를 입력해 계정 홈 디렉토리로 이동합니다.
root@raspberrypi:/home/pi# cd ~

다음 .muttrc 파일을 생성하고 .muttrc 파일에 읽기+쓰기 권한을 부여합니다. 
root@raspberrypi:/home/pi# touch .muttrc
root@raspberrypi:/home/pi# chmod 777 .muttrc

이번에는 .muttrc 파일을 vi 에디터로 열고 다음 정보를 입력합니다.
root@raspberrypi:/home/pi# vi .muttrc

[설정 내용]
set realname = "Austin Kim"
set from = "austindh.kim@gmail.com"
set use_from = yes
set envelope_from = yes

set smtp_url = "smtps://austindh.kim@gmail.com@smtp.gmail.com:465/"
set smtp_pass = "enter_your_passwd"
set imap_user = "austindh.kim@gmail.com"
set imap_pass = "enter_your_passwd"
set folder = "imaps://imap.gmail.com:993"
set spoolfile = "+INBOX"
set ssl_starttls=yes
set ssl_force_tls = yes

bind index G imap-fetch-mail
set editor = "vim"
set charset = "utf-8"
set record = ''

위에서 소개한 내용은 필자의 ‘이메일 주소’을 기준으로 설정(샘플 예제)한 것입니다.
여러분의 이메일 주소에 맞게 변경하시길 바랍니다.   
"austindh.kim@gmail.com": 여러분의 이메일 주소  
"enter_your_passwd": 여러분의 이메일 비밀번호

이제 mutt 설정이 끝났습니다.


"혹시 궁금한 점이 있으면 댓글로 질문 남겨주세요. 아는 한 성실히 답변 올려드리겠습니다!" 

Thanks,
Austin Kim(austindh.kim@gmail.com)


[부록 A] GCC 지시어
   * inline    
   * noinline    
   * __noreturn   
   * unused   
[부록 B] 리눅스 커널 실력을 키우는 방법
[부록 C] 리눅스 커널 프로젝트에 기여하기  
C.1 리눅스 커널 오픈소스 프로젝트 소개 
   * 용어  
C.2 설정 방법 
C.3 패치 코드를 작성한 후 이메일로 보내기  
C.5 리눅스 커널 오픈소스 프로젝트로 얻는 지식 


# Reference: For more information on 'Linux Kernel';

디버깅을 통해 배우는 리눅스 커널의 구조와 원리. 1

디버깅을 통해 배우는 리눅스 커널의 구조와 원리. 2


 


핑백

덧글

댓글 입력 영역