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
- Clean Code
- cicd
- vm
- github
- kubernetes
- Google Cloud Platform
- devops
- cloud
- docker
- interconnect
- 우테캠
- 자격증
- CentOS
- MIG
- 보안 규칙
- vpc peering
- Java
- Terraform Cloud
- gcp
- VAGRANT
- cloud armor
- AWS
- pub/sub
- direnv
- 후기
- IAM
- Uptime Check
- cloud function
- Python
- terraform
Archives
- Today
- Total
목록Linux (2)
EMD Blog
VM Disk mount 해제되고 같은 위치에 mount 되지 않는 경우
/etc/fstab 내 재부팅 시 자동으로 마운트 되도록 설정했으나 정상작동하지 않으며 해당 위치에 똑같이 마운트 시도해도 마운트가 되지 않는 문제가 발생함 GCP의 Ubuntu20.04 환경이며 보조 디스크를 마운트하는 상황 확인해보니 mount option 중 nobootwait이 deprecated 돼서 문제가 발생한 것이였음 UUID= /mnt/disks/sdb ext4 discard,defaults,nobootwait 0 2 에서 UUID= /mnt/disks/sdb ext4 discard,defaults,nofail 0 2 로 변경
Linux
2022. 9. 3. 11:16
direnv 적용
direnv 이용한 디렉토리별 환경설정 direnv 설치 및 설정 : 각 디렉토리별 환경변수 설정을 다르게 할 수 있어 편리함. https://www.44bits.io/ko/post/direnv_for_managing_directory_environment brew install direnv# sudo apt-get install direnv touch ~/.gitignore_global git config --global core.excludesfile ~/.gitignore_global echo '.envrc' > ~/.gitignore_global echo '.direnv' >> ~/.gitignore_global
Linux
2022. 9. 3. 10:14