Skip to content

Instantly share code, notes, and snippets.

@diegopacheco
Last active April 12, 2021 02:40
Show Gist options
  • Save diegopacheco/3cae476b089f67004f0aa203f8362cbf to your computer and use it in GitHub Desktop.
Save diegopacheco/3cae476b089f67004f0aa203f8362cbf to your computer and use it in GitHub Desktop.
Can't mount external HD in Linux?
# figure out where the HD is 
sudo fdisk -l 
# mount it - for me was /dev/sdc so had to add 1 
sudo mount /dev/sdc1 /mnt
# to un mount
sudo umount /dev/sdc1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment