Dealing with hidden or ghost files - Printable Version +- Moode Forum (https://moodeaudio.org/forum) +-- Forum: moOde audio player (https://moodeaudio.org/forum/forumdisplay.php?fid=3) +--- Forum: Support (https://moodeaudio.org/forum/forumdisplay.php?fid=7) +--- Thread: Dealing with hidden or ghost files (/showthread.php?tid=4054) Pages:
1
2
|
RE: Dealing with hidden or ghost files - opikid - 02-12-2022 Is there any way of deleting (hidden) ._ files from an openmediavault share ? Copied the media to an ext4 drive from mac (with ExtFS) Tried ssh to the pi (raspianLite with OMV) but i'm not seeing the drive in media folder .. Or maybe deleting it from macos? anyway of doing it automatically for a big collection ? Thanks ! RE: Dealing with hidden or ghost files - TheOldPresbyope - 02-12-2022 @opikid Sounds like you need to read some documentation about OpenMediaVault and its storage strategy. Try looking somewhere like /srv/dev-disk-by-label-data Don't forget that it's a Linux system. To see "hidden" files or directories (leading dot in filename) you'll have to use commands like ls -a Have a look at online aids such as https://www.cyberciti.biz/faq/remove-hidden-files-in-linux/ ETA - Yes, if you can mount the share on another host (your macOS host, a Raspberry Pi OS host, etc) as a user with proper permissions you can edit the share contents from there. In the case of a moOde player, you'll find the share contents below /mnt/NAS/<sharename> Regards, Kent RE: Dealing with hidden or ghost files - Tim Curtis - 02-12-2022 (02-12-2022, 08:55 PM)opikid Wrote: Is there any way of deleting (hidden) ._ files from an openmediavault share ? Those osx dot files and dirs are really annoying. If you try to delete them on osx drives they will just come right back whenever the drive or folder is accessed by an app or Finder. I run the commands below on Linux to nuke em. First change to the root of the drive or folder tree. Code: sudo find . -name "._*" -exec rm -rf {} \; RE: Dealing with hidden or ghost files - opikid - 02-14-2022 Ok, doing it from ubuntu did the trick .. thank you ! Found a way to hide these files from OMV forums Hidden files visible. It seems to work. I hope it's ok to post a link to OMV forums ? Thanks again. |