How To Fix Safari Using https instead of http
For the Mac, you need to do three things in a row: 1. Quit Safari 2. Delete ~/Library/Cookies/HSTS.plist 3. Reboot
For the Mac, you need to do three things in a row: 1. Quit Safari 2. Delete ~/Library/Cookies/HSTS.plist 3. Reboot
sudo /usr/sbin/installer -pkg /path/to/yourFile.pkg -target /
MacOSX 10.6.8 Snow Leopard running on a Mac Pro 2009 8-way After a system crash, using the backup drive, this error started to appear: dyld: shared cached file was build against a different libSystem.dylib, ignoring cache To fix it, execute the following in Terminal: sudo update_dyld_shared_cache -force As always, YMMV!
As the root user, execute: “/Applications/Install OS X El Capitan.app/Contents/Resources/createinstallmedia” –volume /Volumes/{USB_DRIVE_NAME_HERE}/ –applicationpath “/Applications/Install OS X El Capitan.app” Be sure to include the required double-quotes, or use backslashes to escape the spaces in the path. Full instructions may be found on the Apple site: https://support.apple.com/en-us/HT201372 Turn on your Mac by pressing the power button Press […]
As always, YMMV…
1 2 3 4 5 6 7 8 9 |
#!/bin/bash # Usage: eject [fullpath to mount point] DISK="${1:-/Volumes/YourUSBFlashDriveName/}" df -h "$DISK" > /dev/null 2>&1 if [ $? -eq 0 ]; then diskutil unmountDIsk `diskutil list "$DISK" | grep ^/dev/` else echo Volume $DISK is not mounted...skipping. fi |
Quit Mail. Look for a file called MessageRules.plist under ~/Library/Mail. Depending on your Mail version it could be under ~/Library/Mail/V2/Maildata as well. Copy that file. It can be edited with vim or the PList editor. I find it much easier to work with as text in vim.
The Readline library has a bell-style variable that controls what happens when Readline wants to ring the terminal bell. If set to ‘none’, Readline never rings the bell. If set to ‘visible’, Readline uses a visible bell if one is available. If set to ‘audible’ (the default), Readline attempts to ring the terminal’s bell. Edit […]
1 |
sudo lsof | awk '{print $3}' | sort | uniq -c | sort -n -r | head -20 |
13137 erics 2421 root 330 _www 139 _mdnsresponder 56 _softwareupdate 34 _coreaudiod 33 _mysql 32 _networkd 23 _assetcache 21 _usbmuxd 21 _locationd 18 _spotlight 13 _nsurlsessiond 13 _netbios 13 _appleevents 10 _windowserver 10 _iconservices 10 _displaypolicyd 8 _nsurlstoraged 8 _distnote
1 2 |
defaults write com.apple.Terminal no-bouncing -bool TRUE killall Dock |
defaults write com.apple.finder InterfaceLevel standard