목록IT이야기 (354)
준호씨의 블로그
pkill -f my_pattern ps -ef | grep myProcessName | grep -v grep | awk '{print $2}' | xargs kill -9 참고 https://stackoverflow.com/questions/8987037/how-to-kill-all-processes-with-a-given-partial-name
집에서 사용하는 모니터중 한대가 Dell P2415Q 이다. 4K 해상도 모델이다. 맥북과 연결할 젠더를 찾아 보는 중이다. 아직 썩 마음에 드는 모델은 찾지 못했다. 모니터 스펙 확인 http://accessories.ap.dell.com/sna/productdetail.aspx?c=kr&l=ko&s=dhs&cs=krdhs1&sku=210-ANFO 여긴 영문 사이트에 비해 정보가 부족한 편이다. http://www.dell.com/en-us/work/shop/dell-24-ultra-hd-4k-monitor-p2415q/apd/210-agnk/monitors-monitor-accessories 4K UHD (2160p) 3840 x 2160 (DisplayPort: 60 Hz, HDMI: 30 Hz) ..
어느날 부터 인가 iCloud 여유 용량이 없어져서 iCloud 기능을 제대로 활용하지 못하게 되었다. 추측하기로는 새 맥북을 세팅 하면서 Desktop, Documents 영역이 iCloud 동기화를 시작하면서 용량이 부족한 상태가 되었는데 동기화가 덜 되었을 때 Desktop, Documents 동기화를 끊었는데 동기화가 덜 된 상태의 파일들 작업에 Lock 이 걸린 상태로 이도 저도 진행 되지 않는 상태가 된 게 아닐까 싶다. 확실하지는 않은데 충분히 가능성이 있는 상태이다. AS 요청 상태인데 아마 다음주 즈음에는 뭔가 해결 되지 않을까 기대 하고 있다. 관련 내용을 좀 더 정리해 본다. iCloud Documents 영역이 99% 차지하다 아래는 맥에서 Preferences 의 iCloud 들어..
You can see stderr "No such file or directory" when you 'cat' none exists file $ cat nonexistent_file cat: nonexistent_file: No such file or directory If you want to hide stderr, attach 2>/dev/null after command cat nonexistent_file 2>/dev/null Tip 'grep' command has '-s' option to hide error message about nonexistent or unreadable files. -s, --no-messages Suppress error messages about nonexiste..
2024.04.17 Currently, the methods below may not work. Rewritten it to work now. https://junho85.pe.kr/2219 Install wireshark with GUI brew cask install wireshark brew install wireshark --with-qt Install wireshark only command line util tshark brew install wireshark Uninstall brew uninstall wireshark References Install Wireshark on MacOS X via brew