본문 바로가기

분류 전체보기171

[MAC] 터미널 adb 환경 변수 설정 안되는 이슈 이슈 : .bash_profile에 adb 경로가 설정되어 있지만 재부팅 하거나 터미널을 새로 만들면 adb 실행되지 않음. 해결 : zshrc 파일에 bash_profile 정보 추가 .zshrc 파일에 "source /Users/json/.bash_profile" 추가 $source .zshrc 실행 참고 : m.blog.naver.com/writer0713/221350489188 2021. 5. 3.
[MAC] VirtualBox Kernel driver not installed (rc=-1908) Error Kernel driver not installed (rc=-1908) Make sure the kernel module has been loaded successfully. where: suplibOsInit what: 3 VERR_VM_DRIVER_NOT_INSTALLED (-1908) - The support driver is not installed. On linux, open returned ENOENT. 가상 머신 Win10의 세션을 열 수 없습니다. The virtual machine 'Win10' has terminated unexpectedly during startup with exit code 1 (0x1). 결과 코드: NS_ERROR_FAILURE (0x80004005) 구성 요소:.. 2021. 4. 29.
[Wireshark] RTP Analysis Skew 값 의미 RTP Analysis Skew 값 의미 Delta 값 : 단순하게 이전 Packet과 현재 Packet의 수신 시간 간격 Jitter 값 : wiki.wireshark.org/RTP_statistics 지터값 계산 방법 참조 Skew 값 : 최초 RTP Packet과 현재 Packet이 얼마나 빠르거나 늦은지 수치 (빠르면 양수) 패킷 속도가 50pps에서 1000 번째 패킷이 1번째 패킷 이후 20.03초에 도착하면 해당 패킷의 스큐는 -30ms Skew 계산 코드 from: tap-rtp-common.c /* Calculate skew, i.e. absolute jitter that also catches clock drift * Skew is positive if TS (nominal) is to.. 2021. 4. 23.
[Android] Gradle NDK is missing a "platforms" directory. 버전 에러 해결 원인 : Gradle 빌드 버전으로 설정 맞지 않음. 수정 : Gradle 버전 변경 오류 메시지 > Configure project :app NDK is missing a "platforms" directory. If you are using NDK, verify the ndk.dir is set to a valid NDK directory. It is currently set to /Users/json/Library/Android/sdk/ndk-bundle. If you are not using NDK, unset the NDK variable from ANDROID_NDK_HOME or local.properties to remove this warning. FAILURE: Build failed .. 2021. 4. 12.