Created
May 16, 2018 23:18
-
-
Save TravisMullen/aabb66f05d731206c897f9fb687494ef to your computer and use it in GitHub Desktop.
Raspian Disk Support Drivers
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# Add Apple OS X HFS+ read/write support | |
sudo apt-get install hfsutils hfsprogs hfsutils | |
# sudo mkfs.hfsplus /dev/sda1 -v untitled # format | |
# Add Windows/DOS FAT32 read/write support | |
sudo apt-get install dosfstools | |
# Add Windows NTFS read/write support | |
sudo apt-get install ntfs-3g |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment