#!/bin/bash # FSKit Module Manual Installation Script # Requires sudo password # # Date: 2026-05-26 # Version: 1.0 echo "=========================================" echo "FSKit Module Manual Installation" echo "=========================================" echo "" echo "This script will install MarkBaseFS FSKit Module to system directory" echo "" echo "Bundle location:" ls -lh "/Users/accusys/markbase/MarkBaseFS/build/Debug/MarkBaseFS FSKit Module.bundle" echo "" echo "Installation steps:" echo "1. Create /Library/Filesystems directory" echo "2. Copy FSKit Module bundle to system directory" echo "3. Set proper permissions" echo "" echo "Please run the following commands manually (requires sudo password):" echo "" echo "# Step 1: Create filesystems directory" echo "sudo mkdir -p /Library/Filesystems" echo "" echo "# Step 2: Copy FSKit Module bundle" echo "sudo cp -R '/Users/accusys/markbase/MarkBaseFS/build/Debug/MarkBaseFS FSKit Module.bundle' /Library/Filesystems/" echo "" echo "# Step 3: Set permissions" echo "sudo chmod 755 '/Library/Filesystems/MarkBaseFS FSKit Module.bundle'" echo "sudo chown root:wheel '/Library/Filesystems/MarkBaseFS FSKit Module.bundle'" echo "" echo "=========================================" echo "Manual Installation Instructions Complete" echo "========================================="