Mac

From Alessandro's Wiki
Revision as of 17:51, 6 April 2012 by Xunil (talk | contribs) (→‎DNS)

Apple tricks


Time machine

  • enable network volumes:
defaults write com.apple.systempreferences TMShowUnsupportedNetworkVolumes 1
  • create file on shared directory
touch .com.apple.timemachine.supported
  • avaho notification for bonjour:

write a file named afpd.service in: /etc/avahi/services

<?xml version="1.0" standalone='no'?><!--*-nxml-*-->
<!DOCTYPE service-group SYSTEM "avahi-service.dtd">
<service-group>
<!-- Customize this to get a different name for your server in the Finder. -->
<name replace-wildcards="yes">%h server</name>
<service>
<type>_device-info._tcp</type>
<port>0</port>
<!-- Customize this to get a different icon in the Finder. -->
<txt-record>model=PowerMac11,2,Quad</txt-record>
<!-- <txt-record>model=RackMac</txt-record> -->
</service>
<service>
<type>_afpovertcp._tcp</type>
<port>548</port>
</service>

</service-group>

  • icons for bonjour, check in this file (better with xcode)
strings /System/Library/CoreServices/CoreTypes.bundle/Contents/Info.plist|less

Bonjour

  • list AFP hosts in network
dns-sd -B _afpovertcp._tcp .
  • list SSH available hosts
dns-sd -B _ssh._tcp .

example

  • ssh to a bonjour host
mac1:~ user$ dns-sd -B _ssh._tcp .
Browsing for _ssh._tcp
Timestamp     A/R Flags if Domain                    Service Type              Instance Name
10:21:16.447  Add     2  4 local.                    _ssh._tcp.                xsysadmin
10:21:16.452  Add     2  4 local.                    _ssh._tcp.                v2_ video edit
10:21:16.458  Add     2  4 local.                    _ssh._tcp.                x’s Mac Pro
  • remove spaces with '-' and add .local at the end
mac1:~ user$ ssh v2-video-edit.local

network behavior

  • prevent creating files (like .DS_store apple double atc.) in network mounted shares.
defaults write com.apple.desktopservices DSDontWriteNetworkStores true

name servers

  • Purge dns cache ( or empty dns history, clear dns cache)
Leopard
dscacheutil -flushcache
Tiger
lookupd -flushcache

un-hide Library folder

chflags nohidden ~/Library

Routes

route add 192.168.100.0/24 192.168.0.1

disks

  • show disk partitions
 sudo diskutil list
/dev/disk0
   #:                       TYPE NAME                    SIZE       IDENTIFIER
   0:      GUID_partition_scheme                        *121.3 GB   disk0
   1:                        EFI                         209.7 MB   disk0s1
   2:                  Apple_HFS Macintosh HD            121.0 GB   disk0s2