- Install python27 # cd /usr/ports/lang/python27/ # make install clean Configuration # ln -s /usr/local/bin/python2.7 /usr/bin/python 설치된 모듈 확인 # python -c 'help("modules")' - Install py-pip # cd /usr/ports/devel/py-pip/ # make install clean # pip FLAVOR=py27 install clean Configuration # ln -s /usr/local/bin/pip-2.7 /usr/bin/pip requests 모듈 설치 # pip install requests pip를 통한 설치된 모듈 확인(기본 모듈은 제외)..
- Install bash # cd /usr/ports/shells/bash/ # make install clean - Configuration # ln -s /usr/local/bin/bash /bin/bash # chshShell: /usr/local/bin/bash # vi /root/.bashrc alias vi='vim' alias ls='ls -FG' # vi /root/.profilesource /root/.bashrcsource $HOME/.bashrc # bash(bash에서 make DISABLE_VULNERABILITY=yes 같은 옵션을 줄 경우, 명령줄에서 사용 가능)
로컬 저장소 생성 $ mkdir Code $ cd Code $ git init git config 명령어를 이용하여 설정 committer 정보 입력 (--global 옵션이 없을 경우 해당 로컬 저장소에만 적용, 정보는 자신의 정보 입력) $ git config --global user.name "do9dark" $ git config --global user.email "do9dark@gmail.com" 정보 확인 $ git config --global --list 다른 옵션들... $ git status $ git log $ git help ... 파일 생성 $ echo "# Code" >> README.md INDEX(stage)에 추가 (-f 옵션 사용 시 ignore 파일, 삭제한 파일 이력까..