Skip to content

Instantly share code, notes, and snippets.

View phtmgt's full-sized avatar

Ива Цилкова phtmgt

View GitHub Profile
@phtmgt
phtmgt / remount_ntfs.sh
Created August 25, 2025 18:37
NTFS read/write remount script for macOs 26 Tahoe (install macfuse and ntfs-3g-mac first)
#!/bin/bash
NTFS3G_BIN="/opt/homebrew/bin/ntfs-3g"
if [ ! -x "$NTFS3G_BIN" ]; then
echo "Error: ntfs-3g not found at $NTFS3G_BIN"
exit 1
fi
echo "Scanning for NTFS partitions..."