vault backup: 2025-07-18 11:06:15
This commit is contained in:
@ -1 +1,39 @@
|
||||
* Obsidian PATH to `/opt/homebrew/bin` for `git-lfs`
|
||||
* Obsidian PATH to `/opt/homebrew/bin` for `git-lfs`
|
||||
|
||||
## exfat disk mount slow
|
||||
|
||||
I tried this post here:
|
||||
|
||||
|
||||
|
||||
[https://apple.stackexchange.com/a/230712](https://apple.stackexchange.com/a/230712)
|
||||
|
||||
|
||||
|
||||
And it seems to have disabled the File System Check on this drive for now... Will post back if it starts happening again, still this should work properly, its a pretty basic thing, "most advanced OS ever", what a load of crud...
|
||||
|
||||
|
||||
|
||||
```
|
||||
#Get the disk identifier of the ExFAT partition
|
||||
diskutil list
|
||||
#Get the UUID of the ExFAT volume with diskXsY being its disk identifier
|
||||
diskutil info /dev/diskXsY
|
||||
#Create and edit /etc/fstab
|
||||
sudo vifs
|
||||
```
|
||||
|
||||
Add a line with the following content after activating _insert mode_ (e.g with I)
|
||||
|
||||
```
|
||||
#Replace the UUID below by the one found earlier!
|
||||
UUID=2FECDB7A-15F0-36F9-9A47-483B9669D6DC none exfat rw,auto 0 0
|
||||
```
|
||||
|
||||
Hit esc to leave insert mode. Enter :w! to write the file to disk and :q to quit vifs.
|
||||
|
||||
Reboot your Mac.
|
||||
|
||||
The last 0 should disable fsck.
|
||||
|
||||
https://discussions.apple.com/thread/255993216?sortBy=rank
|
||||
Reference in New Issue
Block a user