답변:
파인더를 다시 시작하십시오.
optionDock의 Finder 아이콘 + right click[또는 Ctrl+ Opt+ left click], 마지막 항목은 Relaunch입니다.
또는 모든 Finder / 모든 Finder 창을 새로 고치기 위해 StackOverflow Automator 명령에서 찾은 이것을 시도하십시오-Finder 창에서 작동하며 공유 항목을 테스트 할 수 없습니다.
tell application "Finder"
set theWindows to every window
repeat with i from 1 to number of items in theWindows
set this_item to item i of theWindows
set theView to current view of this_item
if theView is list view then
set current view of this_item to icon view
else
set current view of this_item to list view
end if
set current view of this_item to theView
end repeat
end tell
Finder 를 종료하거나 기기를 다시 시작 하지 않고 사이드 바에서 공유 컴퓨터 목록을 새로 고치는 방법 은 다음과 같습니다.
$ sudo ipconfig set en1 DHCP
( en1
시스템에서 활성화 된 인터페이스로 교체 )
나를 위해 작동하는 약간 더 파괴적인 또 다른 명령은 네트워크 인터페이스를 완전히 종료 ifconfig
한 다음 다시 켜는 것입니다.
$ sudo ifconfig en1 down; sleep 1; sudo ifconfig en1 up
이로 인해 활성 상태 / 연결 (가상 머신 트래픽 포함)을 종료하면 불행한 부작용이 있습니다. 따라서 첫 번째 명령이 일반적으로 선호됩니다. 나는 여전히이 정보를 캐싱하는 데몬을 새로 고치는 더 정확한 방법을 적극적으로 찾고 있습니다.