Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- Python
- C
- 기타 연주
- Linux
- Docker
- LIST
- label
- windows forms
- JSON
- pandas
- mysql
- 채보
- 명령어
- OpenCV
- VS Code
- C++
- error
- Visual Studio
- SSH
- C#
- 오류
- pip
- paramiko
- pytorch
- 핑거스타일
- 프로그래머스
- YOLO
- Numpy
- Selenium
- ubuntu
Archives
- Today
- Total
기계는 거짓말하지 않는다
Linux SSH .bashrc 적용 불가 본문
직접 로그인하면 문제없지만 SSH 접속 시 환경변수를 포함한 .bashrc 적용이 안되는 경우가 있다.
대화식 쉘로 실행이 되지 않는 경우이다.
- stack overflow 관련 링크
1. Why does an SSH remote command get fewer environment variables then when run manually?
여러 방법들이 있지만 아래와 같은 .bashrc 일부분을 주석처리하는 방법이 있다.
# If not running interactively, don't do anything
case $- in
*i*) ;;
*) return;;
esac
'Linux' 카테고리의 다른 글
Ubuntu SSH 설치, 설정 (0) | 2023.02.10 |
---|---|
Ubuntu hostname 변경 (0) | 2023.02.10 |
Linux Bash Shell 반복문 (0) | 2022.12.16 |
FFPROBE RTSP stream 정보 확인 불가 (0) | 2022.11.18 |
FFMPEG CUDA 하드웨어 가속 (Hardware Acceleration) (0) | 2022.11.11 |
Comments