.bash_profile 또는 .profile 파일을 편집하는 방법. 사용자가 로그인할 때마다 이 두 명령이 실행되도록 다음 텍스트를 추가합니다.

.bash_profile 또는 .profile 파일을 편집하는 방법. 사용자가 로그인할 때마다 이 두 명령이 실행되도록 다음 텍스트를 추가합니다.

다음 기사에서https://www.linuxbabe.com/linux-server/setup-passwordless-ssh-login편집 .bash_profile또는 이라고 표시됩니다 .profile.

하지만 나는 다음 줄을 이해하지 못합니다.

그런 다음 .bash_profile 또는 .profile 파일을 편집하십시오. 사용자가 로그인할 때마다 이 두 명령이 실행되도록 다음 텍스트를 추가합니다.

/usr/bin/keychain $HOME/.ssh/id_rsa
source $HOME/.keychain/$HOSTNAME-sh

/root/.profile내용은 다음과 같습니다.

# ~/.profile: executed by Bourne-compatible login shells.

if [ “$BASH” ]; then
if [ -f ~/.bashrc ]; then
. ~/.bashrc
fi
fi

mesg n 2> /dev/null || true

그러면 수정된 파일을 제공하는 코드를 어디에 추가할 수 있나요?

감사해요

관련 정보