# Check which Drive Formats are Installed: dpkg --get-selections | grep -E 'ntfs|hfs|exfat|dos' # Add Windows NTFS read/write support sudo apt-get install ntfs-3g # Add macOS HFS+ read/write support sudo apt-get install hfsutils hfsprogs # Add Windows/macOS exFAT read/write support sudo apt-get install exfat-fuse exfat-utils # Add Windows/DOS FAT32 read/write support sudo apt-get install dosfstools