https://github.com/oneoffcoder/notes
Notes
https://github.com/oneoffcoder/notes
Last synced: 4 months ago
JSON representation
Notes
- Host: GitHub
- URL: https://github.com/oneoffcoder/notes
- Owner: oneoffcoder
- Created: 2023-06-14T20:12:58.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-06-14T21:13:53.000Z (almost 3 years ago)
- Last Synced: 2025-04-09T18:43:34.984Z (about 1 year ago)
- Size: 3.91 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Notes
## Settings
- Privacy & Security > Advanced > Logout after 15 minutes
- Lock Screen
- 20, 20, 1, Immediately
## Mount Network Drives
To mount.
```bash
mkdir ./me
mkdir ./all
mount_smbfs -t smbfs //[username]@192.168.0.5/Users/[username] ./me
mount_smbfs -t smbfs //[username]@192.168.0.5/All ./all
```
To unmount.
```bash
umount ./me
umount ./all
```
- [Mount Error when attempting to mount a network server](https://apple.stackexchange.com/questions/129753/mount-error-when-attempting-to-mount-a-network-server)
- [command line: unmount a smb network drive](https://apple.stackexchange.com/questions/256209/command-line-unmount-a-smb-network-drive)