본문 바로가기

분류 전체보기423

[SSL] OpenSSL 설치 1. openssl 설치 http://slproweb.com/products/Win32OpenSSL.html Win32/Win64 OpenSSL Installer for Windows - Shining Light Productions Minimum system requirements: Windows XP or later 32MB RAM 200MHz CPU 30MB hard drive space Recommended system requirements: Windows XP or later 128MB RAM 500MHz CPU 50MB hard drive space April 21, 2020 - All users and applications should be using the OpenS slproweb.c.. 2021. 7. 22.
adb 명령어 cmd 창에서 기본적으로 앞에 adb shell을 추가로 입력하거나 adb shell을 입력하여 adb shell로 진입한 후 명령어를 작성하여야한다. 명령어 기능 비고 adb shell adb 명령어를 입력할수있는 창 진입 input tap [x] [y] 기기의 [x], [y] 좌표 터치 input swipe [x1] [y1] [x2] [y2] [time] [x1,y1]에서 [x2,y2]까지 time동안 슬라이드 time의 단위는 ms (100ms = 0.1초) adb -s [디바이스 넘버] shell [실행할 명령] 여러개가 연결 되어있을때 해당 디바이스에 명령 실행 옵션 am start -a android.intent.action.VIEW http://www.naver.com 네이버에 브라우저로 접.. 2021. 7. 22.
[scrcpy] 안드로이드 디바이스 PC 화면에 미러링 scrcpy라는 툴을 이용하여 실제 안드로이드 디바이스 화면을 PC에 미러링 할 것이다. 1. ADB 설치 https://developer.android.com/studio/releases/platform-tools SDK 플랫폼 도구 출시 노트 | Android 개발자 | Android Developers Android SDK 플랫폼 도구는 Android SDK의 구성요소입니다. developer.android.com 위 사이트에서 ADB를 설치한다. 필자는 압출을 푼 platform-tools 폴더 이름을 adb로 변경 한 후에 진행하였습니다. 1-1 압축풀기 'C:\Users\컴퓨터이름'에 adb폴더(platform-tools폴더)를 옮긴다. -> 폴더명과 경로는 굳이 동일할 필요는 없다. C:\U.. 2021. 7. 22.
세마포어와 뮤텍스의 차이 - 세마포어(Semaphore) : 공유된 자원의 데이터 혹은 임계영역(Critical Section) 등에 여러 Process 혹은 Thread가 접근하는 것을 막아줌(즉, 동기화 대상이 하나 이상) - 뮤텍스(Mutex) : 공유된 자원의 데이터 혹은 임계영역(Critical Section) 등에 하나의 Process 혹은 Thread가 접근하는 것을 막아줌(즉, 동기화 대상이 하나) 2021. 7. 13.