본문 바로가기

Computer/IT

(5)
Galaxy camera mute 1. enable development mode mobile info > software info > bulid number(click several times) 2. enable debugging development option > enable USB debugging 3. download ADB application, https://developer.android.com/tools/releases/platform-tools?hl=ko 4. run command by Admin mode 5. enable camera mute adb devices adb shell settings put system csc_pref_camera_forced_shuttersound_key 0
Raspberry Pi Zero W , wifi-connection issue in Korea Raspberry Pi Zero can not connect to Wifi 2.4GHz in case the router region is set as "Korea", To fix it, change the region to "Asia", then wifi will work.
Xiaomi LYWSD03MMC Bluetooth 샤오미 2세대 온습도기 읽기 LYWSD03MMC https://github.com/JsBergbau/MiTemperature2 sudo apt install python3 bluez python3-pip sudo pip3 install bluepy sudo git clone https://github.com/JsBergbau/MiTemperature2 #FIND MAC ADDRESSsudo hcitool lescan A4:C1:31:6R:B2:1E LYWSD03MMC #repeat sudo python3 LYWSD03MMC.py -d A4:C1:31:6R:B2:1E -r -b #or call it just 1 timesudo python3 LYWSD03MMC.py -d A4:C1:31:6R:B2:1E -c 1
Port number PORT NO. Commonly used for Remarks 20 FTP File Transfer Protocol 21 SFTP Secured Filter Transfer Protocal 22 SSH Secure Shell 23 TELNET 25 SMTP 53 DNS Domina Name System service 80 HTTP WWW 110 POP3 EMAIL 119 NNTP 123 NTP 143 IMAP EMAIL 161 SNMP 194 IRC 443 HTTPS WWW * 65535 is the maximum port number
WINDOWS RS4 설치 후 삼바서버가 작동치 않을때 Windows RS4 업데이트 후 보안상 이유로 SMBv1 을 막았다 command를 관리자권한으로 실행 후 아래 명령어 입력 상태확인Dism /online /Get-Features /format:table | find "SMB1Protocol" C:\Windows\system32>Dism /online /Get-Features /format:table | find "SMB1Protocol"SMB1Protocol | 사용 안 함SMB1Protocol-Client | 사용 안 함SMB1Protocol-Server | 사용 안 함 활성화Dism /online /Enable-Feature /FeatureName:"SMB1Protocol" -All 비활성화Dism /online /Disable-Feature /..