SOLUTION16 Android-에뮬레이터 설치 이슈 요약 - 안드로이드 스튜디오에서 프로젝트 실행 시 에뮬레이터 설치 실패 이슈가 발생 Error Installation did not succeed. The application could not be installed. Solution 1. 에뮬레이터 데이터를 삭제(우클릭 -> Wipe Data) 2. 에뮬레이터 안의 해당 앱을 삭제 2022. 9. 12. Docker - docker centos 설치 및 실행 # docker 버전 확인 docker -v # centos image pull ## default docker pull centos:{centos version} ## m1 docker pull --platform linux/x86_64 centos:{centos version} # docker container create & run docker run -d --name {container name} /bin/bash -c "while true; do echo hello world; sleep; done" # docker container execute docker exec -it {container name} /bin/bash 2022. 8. 14. CentOS6-yum install, update 이슈 요약 - centos6에서 yum을 활용하여 패키지를 설치 & 수정을 할 때 아키텍처 이슈가 발생한다. Error YumRepo Error: All mirror URLs are not using ftp, http[s] or file. Eg. Invalid release /repo/arch combination/ removing mirrorlist with no valid mirrors: /var/cache/yum/x86_64/6/extras/mirrorlist.txt Error: Cannot find a valid baseurl for repo: extras Solution # check CentOS bit getconf LONG_BIT # 32 bit echo "https://vault.centos.o.. 2022. 8. 13. shell script-curl 활용하여 REST API 요청 요약 - shell script에서 REST API 요청 Solution [GET] curl -H "Content-Type: application/json" -X GET http://localhost:3000 [POST] #linux curl -H "Content-Type: application/json" -d "{'key': 'value'}" -X POST http://localhost:3000 #windows curl -H "Content-Type: application/json" -d "{""key"": ""value""}" -X POST http://localhost:3000 2022. 8. 12. 이전 1 2 3 4 다음 반응형