블로그
- Disable smart error for specific disk Proxmox We recently removed a disk from Proxmox and started receiving SMART errors with the info FailedReadSmartData. All that was required was to edit the smartd.conf
- 좌표값으로 요청시 발생에러 크롬 브라우저의 cors 체크 비활성화 # Windows chrome.exe --user-data-dir="C://chrome-dev-disabled-security" --disable-web-security --disable-site-isolation-trials access to xmlhttprequest at ' http://dapi.kakao.com/v2/local/geo/coord2address.json
- 외부 네트워크 사용자 접근을 위한 방화벽/Selinux 설정 해제 [ 방화벽 해제 ] $ systemctl stop firewalld $ systemctl disable firewalld 방화벽 상태 확인 $ firewall-cmd --state
- [Spring Boot] security Refused to display ~ X-Frame-Options, iframe 오류 여러 해결 방법이 있지만 .headers().disable()를 추가하는거로 해결을 했다. 아마 다른 문제가 생기면 해당 부분을 조금 더 보지 않을까 싶다.
- 플랫폼 독점 | 영어로? | 영어 말하기 앱 기능이 마비(disable)되면서 사람들은 국가가 멈추는(shut down) 게 아니냐고 농담 삼아 말했다(joke).
- MacOS 업데이트 실패 해결방법 (복사본 손상 에러) 알고보니 SIP가 disable 된 상태라 그런거였다ㅡㅡ 옛날에 SIP disable 할 일이 있.......
- 우클릭 드래그를 해보자 그리고 스크롤을 끝까지 내려서 Disable JavaScript 부분을 체크해 줍니다. 그러면 드래그가 될 거에요. 이렇게 숨겨 놓은 암호 도 맞출 수 있죠. 하지만 자바스크립트는 대부분의 인터넷에서 사용되기 때문에 이렇게 필요한 경우 이외에는 Disable JavaScript를 풀어주는 것이 좋습.......
- Disable SELinux or Put in in Permissive mode 인터넷에 연결된 리눅스라면 SELinux를 사용하는 게 좋다고 하지만, 설정이 어렵습니다. 위험을 감수하고서라도 편하게 사용하고 싶다면 SELinux를 끌 수 있습니다. SELinux를 끄는 두 가지 방법을 소개합니다. 다음과 같이 명령하면 SELinux가 꺼집니다. 재부팅하면 다시 S
- 투자노트 스터디 23주차 과제 #include #pragma warning(disable:4996) int main() { FILE* a; a = fopen("과제.txt", "w"); double x = 123.45
- puppeteer 크롤링 에러 - Failed to launch the browser process! 해결 1. launch안에 옵션으로 args: ['--no-sandbox', '--disable-setuid-sandbox'] 값을 넣어줍니다. 2.