권한 거부됨: /dev/null을 생성할 수 없습니다.

권한 거부됨: /dev/null을 생성할 수 없습니다.

나는 지금 약 일주일 동안 github 커밋 차트 해킹을 작동시키려고 노력해 왔습니다.

이것https://github.com/mavrk/github-graffiti

https://github.com/gelstudios/gitfiti

https://github.com/NunoPinheiro/github-contributions-drawer

다른 분들도 계시는데...

둘 다 bash 파일을 실행해야 하지만 나는 그런 일을 해본 적이 없고 어떻게 해야 할지 모르겠습니다. 다음과 같습니다.

#!/usr/bin/env bash
REPO=Gitfiti
git init $REPO
cd $REPO
touch README.md
git add README.md
touch gitfiti
git add gitfiti
GIT_AUTHOR_DATE=2017-10-24T12:00:00 GIT_COMMITTER_DATE=2017-10-24T12:00:00 git commit --allow-empty -m "gitfiti" > /dev/null
... bunch more commits here ...
git remote add origin [email protected]:MarynaLongnickel/$REPO.git
git pull origin master
git push -u origin master

현재 bash 파일을 실행하면 오류가 발생합니다.

: Permission deniedgitfiti.sh: cannot create /dev/null
: Permission deniedgitfiti.sh: cannot create /dev/null
: Permission deniedgitfiti.sh: cannot create /dev/null
: Permission deniedgitfiti.sh: cannot create /dev/null
: Permission deniedgitfiti.sh: cannot create /dev/null

그래서 한 번에 한 줄씩 실행하면서 어디가 끊어지는지 살펴보았습니다. 오류가 발생 하기 시작했습니다 git pull origin master.

fatal: remote origin already exists.
fatal: Invalid refspec 'master?'
[email protected]: Permission denied (publickey).
fatal: Could not read from remote repository.

그래서 조사하러 갔는데...이 페이지를 발견했습니다https://help.github.com/articles/error-permission-denied-publickey/이는 다음과 같이 말합니다.

"올바른 도메인에 연결되어 있는지 확인하려면 다음 명령을 입력하세요."ssh -vT [email protected]

잘 안 되서 여기까지 왔어요.

이게 전부 오류야

OpenSSH_7.6p1 Ubuntu-4, OpenSSL 1.0.2n  7 Dec 2017
debug1: Reading configuration data /etc/ssh/ssh_config
debug1: /etc/ssh/ssh_config line 19: Applying options for *
debug1: Connecting to github.com [192.30.253.112] port 22.
debug1: Connection established.
debug1: key_load_public: No such file or directory
debug1: identity file /home/solarmew/.ssh/id_rsa type -1
debug1: key_load_public: No such file or directory
debug1: identity file /home/solarmew/.ssh/id_rsa-cert type -1
debug1: key_load_public: No such file or directory
debug1: identity file /home/solarmew/.ssh/id_dsa type -1
debug1: key_load_public: No such file or directory
debug1: identity file /home/solarmew/.ssh/id_dsa-cert type -1
debug1: key_load_public: No such file or directory
debug1: identity file /home/solarmew/.ssh/id_ecdsa type -1
debug1: key_load_public: No such file or directory
debug1: identity file /home/solarmew/.ssh/id_ecdsa-cert type -1
debug1: key_load_public: No such file or directory
debug1: identity file /home/solarmew/.ssh/id_ed25519 type -1
debug1: key_load_public: No such file or directory
debug1: identity file /home/solarmew/.ssh/id_ed25519-cert type -1
debug1: Local version string SSH-2.0-OpenSSH_7.6p1 Ubuntu-4
debug1: Remote protocol version 2.0, remote software version libssh_0.7.0
debug1: no match: libssh_0.7.0
debug1: Authenticating to github.com:22 as 'git'
debug1: SSH2_MSG_KEXINIT sent
debug1: SSH2_MSG_KEXINIT received
debug1: kex: algorithm: [email protected]
debug1: kex: host key algorithm: ssh-rsa
debug1: kex: server->client cipher: [email protected] MAC: <implicit> compression: none
debug1: kex: client->server cipher: [email protected] MAC: <implicit> compression: none
debug1: expecting SSH2_MSG_KEX_ECDH_REPLY
debug1: Server host key: ssh-rsa SHA256:secretkeyhereorsomething
debug1: Host 'github.com' is known and matches the RSA host key.
debug1: Found key in /home/solarmew/.ssh/known_hosts:1
debug1: rekey after 134217728 blocks
debug1: SSH2_MSG_NEWKEYS sent
debug1: expecting SSH2_MSG_NEWKEYS
debug1: SSH2_MSG_NEWKEYS received
debug1: rekey after 134217728 blocks
debug1: SSH2_MSG_SERVICE_ACCEPT received
debug1: Authentications that can continue: publickey
debug1: Next authentication method: publickey
debug1: Trying private key: /home/solarmew/.ssh/id_rsa
debug1: Trying private key: /home/solarmew/.ssh/id_dsa
debug1: Trying private key: /home/solarmew/.ssh/id_ecdsa
debug1: Trying private key: /home/solarmew/.ssh/id_ed25519
debug1: No more authentication methods to try.
[email protected]: Permission denied (publickey).

답변1

다른 문제는 GitHub에 인증되지 않았고 로그인된 계정 없이 커밋을 시도하는 것 같습니다. 이 가이드를 따라해보세요:https://help.github.com/articles/connecting-to-github-with-ssh/, 이것은 비밀번호 없는 로그인을 추가하는 방법을 보여줍니다.

주요 문제는 git commit --allow-empty -m "gitfiti" > /dev/null대부분의 배포판/운영 체제에서 기본적으로 생성되어야 하는 /dev/null을 참조하는 유일한 줄인 것 같습니다. 현재 어떤 Linux/Unix를 실행하고 있나요? OS가 호환되지 않거나 /dev/에 액세스할 수 있는 권한이 충분하지 않을 수 있습니다. 이 경우 OS는 형편없습니다.

관련 정보