/home/(사용자 이름)/.profile을 로드하는 동안 오류가 발견되었습니다.

/home/(사용자 이름)/.profile을 로드하는 동안 오류가 발견되었습니다.

로그인할 때 오류가 발생합니다.

Error found when loading /home/(username)/.profile:
/home/(username)/.bashrc: line 1: /bin/bash:: No such file or directory

따라서 세션이 올바르게 구성되지 않습니다. 가능한 한 빨리 이 문제를 해결해야 합니다.

다른 게시물을 확인했는데 아무도 똑같은 문제를 겪고있는 것 같습니다. 내 .bashrc 파일을 확인했는데 이것이 내용입니다.

/bin/bash: line 1: q: command not found
#see /usr/share/doc/bash/examples/startup-files (in the package bash-doc)
#for examples

#If not running interactively, don't do anything
case $- in
    *i*) ;;
      *) return;;
esac

#don't put duplicate lines or lines starting with space in the history.
#See bash(1) for more options
HISTCONTROL=ignoreboth

#append to the history file, don't overwrite it
shopt -s histappend

#for setting history length see HISTSIZE and HISTFILESIZE in bash(1)
HISTSIZE=1000
HISTFILESIZE=2000

로그인할 때마다 나타나는 오류 메시지 외에는 눈에 띄는 문제는 발생하지 않은 것 같습니다. 도움을 주셔서 감사합니다. 미리 감사드립니다.

답변1

다음 줄을 제거해야 합니다.

/bin/bash: line 1: q: command not found

오류가 발생했습니다.

/home/(username)/.profile: /home/(username)/.bashrc: line 1: /bin/bash::

이 두 가지 :(나에게 기회를 준)는 실행하려고 한다는 의미 /bin/bash:이므로 실제로 해당 라인을 실행하려고 한다는 점에 유의하세요.

관련 정보