Windows의 라디클

5026 단어
Radicle은 웹 사이트에서 말했듯이 개발자가 Git에 구축된 P2P 네트워크를 통해 소프트웨어에 대해 안전하게 협업할 수 있도록 합니다. 검열을 위해 무료로 설계된 분산 제어 버전 시스템입니다.
Radicle을 사용하고 싶지만 Windows 사용자라면 당황하지 마세요! 개발자가 GNU/Linux 환경을 실행할 수 있게 해주는 Linux용 Windows 하위 시스템인 WSL을 통해 이를 수행할 수 있습니다.

1. Windows에 LINUX를 설치합니다.
Windows 10 버전 2004 이상 또는 Windows 11을 실행해야 합니다. 관리자 권한으로 Powershell 또는 CMD를 열고 다음 명령을 입력해야 합니다.
wsl --install
그런 다음 컴퓨터를 다시 시작해야 합니다.

2. 선택한 Linux 배포판을 설치합니다.
Ubuntu 22.04.1 LTS를 적극 권장합니다. 여기에서 다운로드할 수 있습니다.

Select “Get on the Microsoft Store”
You will be redirect to the Microsoft Store, select “Get”.
The first time you launch a newly installed Linux distribution, a console window will open and you'll be asked to wait for a minute or two for files to decompress and be stored on your PC. All future launches should take less than a second.

3. Set up the Linux distribution development environment:
At the same console set your User Name and your Password, these are specific to each separate Linux distribution that you install and have no bearing on your Windows user name. Please note that whilst entering the Password, nothing will appear on screen. This is called blind typing. You won't see what you are typing, this is completely normal.
Once you create a User Name and Password, the account will be your default user.

4. Install Git and Config
You can check your git version with the following command:

git --version

Make sure you are using Git 2.34.0 or later. If you haven’t already downloaded Git you have to do it for Windows too!
For the latest stable Git version in Ubuntu/Debian, enter the command:

sudo apt-get install git

To set up your Git config file, open a command line for the distribution you're working in and set your name with this command (replacing "Your Name" with your preferred username):

git config --global user.name "Your Name"

Then set your email with this command (replacing " [email protected] "선호하는 이메일로):
git config --global user.email "[email protected]"
5. ssh 키 생성:

ssh 키를 생성하려면 다음 명령을 작성하십시오.
ssh-keygen
다음 출력이 표시됩니다.

Generating public/private rsa key pair.
Enter file in which to save the key (/your_home/.ssh/id_rsa):
press ENTER to save the keys, then you will see:
Enter passphrase (empty for no passphrase):


암호를 사용하는 것이 좋습니다. 모든 것이 정상이면 콘솔에서 다음과 같은 것을 볼 수 있습니다.

Your identification has been saved in /your_home/.ssh/id_rsa
Your public key has been saved in /your_home/.ssh/id_rsa.pub
The key fingerprint is:
SHA256:/hk7MJ5n5aiqdfTVUZr+2Qt+qCiS7BIm5Iv0dxrc3ks user@host
The key's randomart image is:
+---[RSA 3072]----+
|                .|
|               + |
|              +  |
| .           o . |
|o       S   . o  |
| + o. .oo. ..  .o|
|o = oooooEo+ ...o|
|.. o *o+=.*+o....|
|    =+=ooB=o.... |
+----[SHA256]-----+


6. Radicle CLI 설치:
Radicle GitHub에서 읽을 수 있듯이 우분투에 대한 단계를 따릅니다.
먼저 패키지 서명 키를 다운로드합니다.
curl -fsSL https://europe-west6-apt.pkg.dev/doc/repo-signing-key.gpg | gpg --dearmor | sudo tee /usr/share/keyrings/radicle-archive-keyring.gpg > /dev/null
그런 다음 레지스트리 파일을 생성하여 radicle 리포지토리로 소스 목록을 업데이트합니다.
echo "deb [arch=amd64 signed-by=/usr/share/keyrings/radicle-archive-keyring.gpg] https://europe-west6-apt.pkg.dev/projects/radicle-services radicle-cli main" | sudo tee -a /etc/apt/sources.list.d/radicle-registry.list
그런 다음 패키지 목록을 업데이트하고 radicle-cli를 설치합니다.
sudo apt updatesudo apt install radicle-cli
사용자 이름과 암호도 만들어야 합니다.

7. ssh-agent에 radicle 키를 추가합니다.
Radicle을 사용하기 전에 ssh-agent를 추가하는 것이 좋습니다. 이것으로 향후 문제를 피할 수 있습니다. 다음 명령을 실행합니다.
eval "$(ssh-agent)"
그런 다음 다음을 실행하여 Radicle 계정을 연결할 수 있습니다.
rad auth
암호가 필요하며 Radicle 키를 ssh-agent에 추가합니다.

8. 새 리포지토리를 만듭니다.
Radicle을 테스트하려면 다음 명령을 따르십시오.
rad auth —-initgit init test-projectcd test-projectecho "test project" > READMEgit add READMEgit commit -a -m 'initial commit'rad init .rad push
코드를 호스팅할 노드를 선택할 수 있습니다.
모든 것이 괜찮다면 이제 코드가 Radicle에서 호스팅됩니다! 🎉 호스팅된 코드를 볼 수 있는 위치를 확인해야 합니다.

좋은 웹페이지 즐겨찾기