I have an R+M USB 3.0 that is no longer recognised by my PC (running Windows 10). The disk appears greyed out, 0 bytes available, as in this answer.
I don't mind about lost data, what I want to know is if I've done something wrong whilst backing up so I can prevent the same thing happening in the future. Here is the script I used to backup:
import subprocess
drive = subprocess.run(['sudo', 'mount', '-t', 'drvfs', 'D:', '/mnt/d'])
print(drive)
docs = subprocess.run(['sudo', 'rsync', '-av', '--progress', '/mnt/c/Users/sc/Documents/', '/mnt/d', '--exclude', '/mnt/c/Users/sc/Documents/my_data/data'])
print(docs)
unmount = subprocess.run(['sudo', 'umount', '/mnt/d/'])
print(unmount)
I ran this and it caused my USB to break. Is this a bad method of backing up? Could this have been avoided if I'd zipped my files before copying? Or could it simply be that I bought a cheap, dodgy USB?
Any help is much appreciated.