This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo tmutil disablelocal |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo ln -s /Quelle/foo /Ziel/foo | |
sudo ln -s /Volumes/Daten/Benutzer /Users/Benutzer |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
open $TMPDIR../C/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
EDIT: Also under Get Info be sure the file isn't locked. | |
If that's so launch Applications/Utilities/Terminal and at the prompt copy & paste this command… | |
mkdir ~/.Trash | |
If you get a message that the folder already exists, copy & paste these commands... | |
sudo chown $UID ~/.Trash | |
Press return Enter your admin password (it will be invisible) Press return | |
chmod u+rwx ~/.Trash | |
Press return. Log out and back in, or restart. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* diskutil list shows you the partitions currently connected to your unit | |
**/ | |
imac:~ user$ diskutil list | |
/dev/disk0 | |
#: TYPE NAME SIZE IDENTIFIER | |
0: GUID_partition_scheme *1.0 TB disk0 | |
1: EFI 209.7 MB disk0s1 | |
2: Apple_HFS Macintosh HD 987.2 GB disk0s2 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Since 10.8.4 you may receive the following error messages in the konsole.app | |
* May 13 23:56:41 alluminium coreaudiod[238]: Enabled automatic stack shots because audio IO is inactive | |
* May 13 23:56:42 alluminium coreaudiod[238]: Disabled automatic stack shots because audio IO is active | |
* | |
* To avoid that Create /Library/Preferences/Audio/com.apple.audio.ServerSettings.plist with the following content | |
**/ | |
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# rolling a w6 dice on the terminal | |
echo $[RANDOM%6+1] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
networksetup -listallnetworkservices | |
#To disable IPv6 for wireless, issue the following command: | |
networksetup -setv6off Wi-Fi | |
#to disable IPv6 for Ethernet, issue the following command: | |
networksetup -setv6off Ethernet | |
#To re-enable IPv6, use | |
-setv6automatic instead |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# turns off the startup chime | |
sudo nvram SystemAudioVolume=%80 | |
# turn on the startup chime | |
sudo nvram SystemAudioVolume=&@ |
NewerOlder