엘레먼트는 리눅스 커널 개발자들이 많이 사용하는 IRC 클라이언트 중 하나이다. DebConf 뿐만 아니라 IRC 및 원격 화상 미팅을 위해서 Linux Plumber Conference 에서도 사용 중이다.
Download Element App
아래의 레포지토리에서 현재 데비안 메인테이너가 없는 패키지들을 볼 수 있다. 즉 데비안 업스트림 패키지에서는 오픈소스 버전 업데이트가 메인테이닝되지 않는 프로젝트이다.
Work-Needing and Prospective Packages
/join #_oftc_#debian-kernel
아키텍쳐 별로도 채널이 있다.
GNU PG 툴을 사용하여 키를 만들어야 한다.
맥 이라면,
brew install gnupg
리눅스 환경이라면
# Debian
apt install gnupg
# Redhat
dnf install gnupg
참고:
$ gpg --gen-key
gpg: /Users/yunseong/.gnupg/trustdb.gpg: trustdb created
gpg: directory '/Users/yunseong/.gnupg/openpgp-revocs.d' created
gpg: revocation certificate stored as '/Users/yunseong/.gnupg/openpgp-revocs.d/XXXXX.rev'
public and secret key created and signed.
pub ed25519 2024-08-14 [SC] [expires: 2027-08-14]
XXXXX
uid Yunseong Kim <yskelg@gmail.com>
sub ... 2024-08-14 [E] [expires: 2027-08-14]
Prophase
기억할 수 있는 문장을 넣어준다.
키가 잘 생성되었는지 아래의 커맨드로 확인한다.
# List private keys
gpg --list-secret-keys
# List public keys
gpg --list-keys
[keyboxd]
---------
pub ed25519 2024-08-14 [SC] [expires: 2027-08-14]
XXXXX
uid [ultimate] Yunseong Kim <yskelg@gmail.com>sub cv25519 2024-08-14 [E] [expires: 2027-08-14]
퍼블릭 키를 리모트 서버에 등록한다. 퍼블릭 키는 XXXXX.rev 로 $HOME/.gnupg/openpgp-revocs.d/ 경로에서도 파일 이름을 확인할 수 있다.
$ gpg --keyserver keyserver.ubuntu.com --send-key XXXXX
$ gpg --keyserver keyserver.ubuntu.com --recv-keys XXXXX
gpg: key 469051FB570A4E10: "Yunseong Kim <yskelg@gmail.com>" not changed
gpg: Total number processed: 1
gpg: unchanged: 1
로그인 아이디를 계정에 아이디를 PGP 를 등록한다.
다음과 같이 decrypt 요청을 하는 메일을 수신할 수 있다.
Hello Yunseong Kim,
to confirm your new entry at https://nm.debian.org/person/ysk/
you need to decrypt the following text. The result will be a URL, which you
then visit to make your entry confirmed.
-----BEGIN PGP MESSAGE-----
...
-----END PGP MESSAGE-----
You should not need instructions to decrypt this. If you do not know how to do
it, you can consider it a challenge. In that case, you can start from here:
https://www.gnupg.org/howtos/en/GPGMiniHowto.html
For any problem, feel free to contact Front Desk at nm@debian.org.
Regards,
the nm.debian.org robotic minion for Front Desk
아래에 메일에서 받은 PGP메시지를 넣어준다.
$ vi debian.nm
-----BEGIN PGP MESSAGE-----
...
-----END PGP MESSAGE-----
그 다음 decrypt 해준다.
$ gpg -d debian.nm
gpg: encrypted with ... key, ID XXXXX, created 2024-08-14
"Yunseong Kim <yskelg@gmail.com>"
Please visit https://nm.debian.org/public/newnm/confirm/--/ to confirm your application at https://nm.debian.org/person/ysk/
참고:
Debian Kernel Team
Debian Kernel Team Wiki
Comments