본문 바로가기

Tip48

linux terminal 깨진 한글 폴더 이름 변경하기 서버의 폴더이름이 한글이라 깨져서 접근할수 없을때 로케일 변경 작업을 하기 어려울수 있다. (서버니까..) 깨진 폴더명을 변경하는 스크립트 #!/bin/bash select x in *; do echo -n "new name : " read ASDF mv "$x" "$ASDF" exit done 2020. 4. 1.
tensorflow에 필요한 각종 라이브러리 버전 정보 ubuntu 18.04 LTS 텐서플로 설치안내문 :https://www.tensorflow.org/install/gpu 텐서플로와 gpu 1. nvidia_driver는 418버전으로 sudo apt-get install nvidia-driver-418 2. cuda 10.1 설치 https://developer.nvidia.com/cuda-toolkit-archive sudo ./cudnn10.1~~.run nvcc가 /usr/loca/cuda-10.1 에 설치되는데, 이 nvcc을 /usr/bin 같은데로 link 걸지말자. cudnn에서 nvcc 패스를 찾아서 설치하는데 잘못된 곳에 설치할수 있다 export PATH=$PATH:/usr/local/cuda/bin export LD_LIBRARY_.. 2020. 3. 27.
[Git] 명령어 - Git의 폴더 구조: \codespace\ 가 내가 일하고 싶은 root directory라고 하면 \codespace에서 각종 저장소들을 clon한다 - 저장소 클론 해오기 git clon http://~ - 특정 저장소를 클론해 오기 git clone -b {branch_name} --single-branch {저장소 URL} ex) git clone -b javajigi --single-branch https://github.com/javajigi/java-racingcar 은 해당 branch을 가져올때 내 local의 폴더 이름. - 리모트 저장소 update하기 git remote update : - 브랜치 목록보기 git branch - 원격 저장소의 브랜치 목록보기 Git branch .. 2020. 1. 13.
[Git] pull, push 할때 password 안물어보게 설정 Credential 정보 저장 #> git config credential.helper store 2020. 1. 13.