일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- plugin
- import
- Quartz
- web.xml
- maVen
- vscode
- ssh
- Source
- find
- tomcat
- Eclipse
- bash
- 줄바꿈 문자
- resource
- VirtualBox
- lsof
- IntelliJ
- Mac
- profile
- 단축키
- 네트워크
- port
- Windows 10
- Windows
- context
- grep
- xargs
- netsh
- GIT
- JavaScript
- Today
- Total
목록Dev (274)
develog
로컬 commit 메시지 수정 ## 가장 최근의 commit 메시지 수정 $ git commit --amend $ git commit --amend -m '수정할 메시지' github commit 메시지 수정 ## github 으로 push $ git push --force origin master
git config 기본 셋팅 # git 사용자 정보가 // user.name & user.email # 전역설정과 로컬설정 모두에 설정되어 있지 않은 경우 커밋되지 않도록 한다 $ git config --global user.useConfigOnly true git 메인 & 서브 사용자 등록 메인 사용자 등록 ## 메인 사용자 등록 $ git config --global user.name USERNAME $ git config --global user.email USERNAME@EMAIL.COM 서브 사용자 등록 ## 서브 사용자 등록 $ vi ~/.gitconfig-personal [user] name = personalID email = personalID@email.com 서브 사용자 연결 ## ..
git remote repository 를 생성한다 $ git init --bare 로컬 PC 에서 'git init --bare' 로 git 저장소를 만들고 'git push' 테스트 하기 ##----------------------------- ## 폴더 생성 ## - remote: git repository ## - local1: 로컬 작업영역 1 ## - local2: 로컬 작업영역 2 ##----------------------------- WORK_DIR=./ mkdir $WORK_DIR/remote mkdir $WORK_DIR/local1 mkdir $WORK_DIR/local2 ##----------------------------- ## Remote ## - git remote repos..
https://docs.docker.com/engine/reference/commandline/cli/ Use the Docker command line docs.docker.com
docker run --privileged docker 로 centos 8 로드시 systemctl 사용할 수 있게 실행 docker run -itd --name va-centos --privileged centos:8 /usr/sbin/init
도커로 centos:8 이미지 실행 후 # Dockerfile FROM centos:8 systemctl start ssh 실행시 오류 발생 [root@795fdf8be494 /]# systemctl start ssh System has not been booted with systemd as init system (PID 1). Can't operate. Failed to connect to bus: Host is down 해결 참고 https://blog.jojonari.dev/entry/ErrorSystem-has-not-been-booted-with-systemd-as-init-system-PID-1-Cant-operate [Error]System has not been booted with sy..