Difference between revisions of "Mac OSX"

From Wikicliki
Jump to: navigation, search
 
 
(3 intermediate revisions by the same user not shown)
Line 1: Line 1:
==
+
 
  
 
<pre>defaults write com.apple.finder AppleShowAllFiles TRUE
 
<pre>defaults write com.apple.finder AppleShowAllFiles TRUE
 
killall Finder</pre>
 
killall Finder</pre>
 +
 +
== Mount disk problem - exFAT ==
 +
 +
* go to terminal
 +
* diskutil list -- for list of disks
 +
* diskutil verifyVolume [disk_identifier]
 +
* diskutil repairVolume [disk_identifier]
 +
* diskutil mount [disk_identifier]
 +
 +
* eg: diskutil
 +
 +
THIS DID NOT SOLVE THINGS
 +
 +
Usually in scenarios where the disk won't mount and you get that error message the computer is trying to run a fsck in the background, check activity monitor for a fsck_hfs or similarly named process and kill it, the disk will mount for you if you're lucky.
 +
 +
there was fsck_exfat in activity monitor. killed it. mounted.
 +
 +
* use chkdsk in windows on the partition
 +
* chkdsk {drive}: /f
 +
 +
* sudo fsck_exfat -d disk2s2
 +
* d for debug - all the files will flash past

Latest revision as of 13:44, 9 December 2015


defaults write com.apple.finder AppleShowAllFiles TRUE
killall Finder

Mount disk problem - exFAT

  • go to terminal
  • diskutil list -- for list of disks
  • diskutil verifyVolume [disk_identifier]
  • diskutil repairVolume [disk_identifier]
  • diskutil mount [disk_identifier]
  • eg: diskutil

THIS DID NOT SOLVE THINGS

Usually in scenarios where the disk won't mount and you get that error message the computer is trying to run a fsck in the background, check activity monitor for a fsck_hfs or similarly named process and kill it, the disk will mount for you if you're lucky.

there was fsck_exfat in activity monitor. killed it. mounted.

  • use chkdsk in windows on the partition
  • chkdsk {drive}: /f
  • sudo fsck_exfat -d disk2s2
  • d for debug - all the files will flash past