본문 바로가기
반응형

전체 글47

Skincare Secrets from the Pros: How to Get Celebrity-Quality Skin! Meet MediCube: Your New BFF for Skincare!Hey there, beauty enthusiasts! 🌟 If you’re on the hunt for the next big thing in skincare, let me introduce you to the game-changer that is A.P.S. Mediheal’s MediCube line. This Korean skincare brand is all about innovation, and trust me, you’re going to want to add these products to your routine!What’s the Hype About MediCube?MediCube isn’t your average.. 2025. 4. 4.
7 Vegan Korean Dishes That Will Change Your Life! 7 Vegan Korean Dishes That Will Change Your Life!Korean food is totally taking over the culinary scene, and guess what? Vegan Korean dishes are leading the pack! With bold flavors and eye-catching presentations, these plant-based options are a must-try. Let's check out some delicious vegan Korean eats that everyone will love!1. Gimbap (김밥)Gimbap, or Korean sushi, is super fun to eat! These rolls.. 2025. 4. 4.
[Git] 2. 작업 되돌리는 방법 (git restore) 그 동안은 git add / commit / log / status 를 주로 사용하였는데 이번에는 작업 되돌리는 restore 를 써보려고한다.나는 주로 작업 트리에서 백업을 해놓고 수정을 항상 하였기 때문에 restore 은 써보질 않았다... 스테이징을 하기 전에 (git add 를 하기 전) 수정하고 싶다면 사용하는 명령은 아래와 같다. git restore # ex) git restore test.txt  스테이징이 되어있는 상태를 스테이징 전으로 되돌리려면 명령은 아래와 같다.git restore --staged # ex) git restore --staged test.txt  커밋이 된 상태를 되돌리려면 명령은 아래와 같다.git reset HEAD^이 명령어는 가장 최신의 커밋된 상태로 돌.. 2024. 12. 10.
[Git] 1. 저장소 (Repository) 그 동안 대충 사용하던 Git 을 깊이 있게 공부하려 한다.하루 왠종일 공부할 것은 아니고 빈 시간에 조금씩 해보려 한다.책은 "Do it! 5일 만에 끝내는 깃&깃허브" 입문 을 ebook 으로 구매하였다. 일단 Git Bash 를 설치하였다. 설치 방법은 단순하게 Git Page 에서 받아서 거의 Next 만 눌렀다. https://git-scm.com/downloads/win Git - Downloading PackageDownload for Windows Click here to download the latest (2.47.1) 64-bit version of Git for Windows. This is the most recent maintained build. It was released o.. 2024. 12. 9.
failure: repodata/repomd.xml from pgdg-common: [Errno 256] No more mirrors to try. 해결 방법 찾기 OS 정보 : CentOS 7.9 Version발생 에러 : yum 으로 설치 시 발생하였음...에러명 : Errno 256 No more mirrors to try ChatGPT 에 물어봤을 때 나오는 결과"[Errno 256] No more mirrors to try"는 패키지 관리자가 설치할 수 있는 미러 서버를 모두 시도했지만, 원하는 패키지를 다운로드할 수 없을 때 발생하는 오류입니다. 이 오류는 보통 미러 서버의 문제, 패키지의 경로가 잘못되었거나, 패키지가 서버에서 제거되었을 때 발생합니다. 해결책으로는 레포지토리 설정을 확인하고, 다른 미러 사이트를 사용하거나, 사전 유효성을 확인하는 것이 있습니다. 중요한 정보는 다시 확인하시기 바랍니다. 보통은 yum 캐시가 손상되는데, 필자는 그래도 .. 2024. 12. 4.
kubernetes 설치 (rocky linux) kubernetes 설치를 해보았다. 총 3가지 방법이 있다. 1. kubeadm 2. kubespray 3. kops 3가지의 차이 https://github.com/kubernetes-sigs/kubespray/blob/master/docs/comparisons.md kubespray/docs/comparisons.md at master · kubernetes-sigs/kubespray Deploy a Production Ready Kubernetes Cluster. Contribute to kubernetes-sigs/kubespray development by creating an account on GitHub. github.com 이전에는 kubeadm 으로 설치를 많이 해왔다. 그러나 최근에.. 2024. 3. 28.