Created
October 24, 2013 10:52
-
-
Save mmswiderski/7135031 to your computer and use it in GitHub Desktop.
Check USB Stick
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
| sudo fdisk -l | |
| sudo dosfsck -w -r -l -a -v -t /dev/... | |
| sudo e2fsck -f /dev/sdb1 | |
| sudo dumpe2fs -f /dev/sdb1 | grep -i superblock | |
| sudo mount -t vfat /dev/sdb1 /media/external -o uid=1000,gid=1000,utf8,dmask=027,fmask=137 | |
| sudo mount -t ntfs-3g /dev/sdb1 /media/external |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment