07-30-2024, 12:05 PM
1. MacOS creates annoying hidden file duplicates whenever you create, modify or access files on a drive. To fix this you need to run some commands to delete these very annoying hidden files and directories.
a. Menu, Configure, System
b. WebSSH ON
c. OPEN WebSSH terminal
d. Login using same userid and password you set in the Pi Imager
e. Paste each command below at the terminal prompt and press Enter or Return
Note the second command "sudo bash ..." should be copy/pasted as the entire block of lines.
2. Theres no support in moode for writing to native MacOS formatted disks but you should be able to write to Fat32 disks as long as the files on the disk have write permission.
a. Menu, Configure, System
b. WebSSH ON
c. OPEN WebSSH terminal
d. Login using same userid and password you set in the Pi Imager
e. Paste each command below at the terminal prompt and press Enter or Return
Note the second command "sudo bash ..." should be copy/pasted as the entire block of lines.
Code:
cd /media
sudo bash -c '
find . -name "._*" -exec rm -rf {} \;
find . -name ".Trashes" -exec rm -rf {} \;
find . -name "._.Trashes" -exec rm -rf {} \;
find . -name ".Spotlight*" -exec rm -rf {} \;
find . -name ".DS_Store" -exec rm -rf {} \;
find . -name "._.DS_Store" -exec rm -rf {} \;
find . -name ".fseventsd*" -exec rm -rf {} \;
find . -name "._.com.apple.timemachine.donotpresent" -exec rm -rf {} \;
find . -name ".com.apple.timemachine.donotpresent" -exec rm -rf {} \;
find . -name ".TemporaryItems" -exec rm -rf {} \;
find . -name "._.TemporaryItems" -exec rm -rf {} \;
find . -name "._moodecfg.txt" -exec rm -rf {} \;
find . -name "__MACOSX" -exec rm -rf {} \;'
2. Theres no support in moode for writing to native MacOS formatted disks but you should be able to write to Fat32 disks as long as the files on the disk have write permission.