Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/runeflobakk/myconfig
Personal config, scripts, utils, etc.
https://github.com/runeflobakk/myconfig
Last synced: 6 days ago
JSON representation
Personal config, scripts, utils, etc.
- Host: GitHub
- URL: https://github.com/runeflobakk/myconfig
- Owner: runeflobakk
- Created: 2013-11-17T20:49:10.000Z (about 11 years ago)
- Default Branch: main
- Last Pushed: 2024-12-16T22:58:00.000Z (22 days ago)
- Last Synced: 2024-12-16T23:56:46.248Z (22 days ago)
- Language: Shell
- Size: 99.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# My Configuration
## SMB Performance
### Disable writing .DS_Store on network volumes
```sh
defaults write com.apple.desktopservices DSDontWriteNetworkStores -bool TRUE
```See also [HT208209 at Apple][apple-disable-network-dsstore].
### Disable packet signing on SMB server
```sh
sudo defaults write /Library/Preferences/SystemConfiguration/com.apple.smb.server SigningRequired -bool FALSE
```Client packet signing disabling is configured by linking [nsmb.conf](smb/etc/nsmb.conf) to `/etc/nsmb.conf`.
See also [HT205926 at Apple][apple-disable-smb-signing] and [article at Promise][promise-disable-smb-signing].[promise-disable-smb-signing]: https://kb.promise.com/thread/disable-smb-signing-on-os-x-10-11-5-10-12-x/
[apple-disable-smb-signing]: https://support.apple.com/en-us/HT205926
[apple-disable-network-dsstore]: https://support.apple.com/en-my/HT208209