Thanks for the suggestions. Turns out after I recorded about 45 minutes worth of tape and saved it as a WAV file, there is some drive error near the beginning of the file which is NOT allowing me to:
a) copy it in full
b) edit the full thing in Audacity
c) compress it
Out of a 460 MB file it will only let me read through the first 47 MB !!!!!
The input/output error (5) is only at that point.... If I use VLC and jump over that mark I can hear the rest of the file ok. How do I copy this file and have it skip over the error? I don't care about the error part, as I can figure out where it is and just copy over that portion of the tape again and splice it in. As it is, I'll be editing the audio because I had to stop it periodically to wipe the iron oxide dust off the head while I kept recording.
I've tried dd, rsync, cp.... nothing seems to let me just copy the entire file. Or is there some way I can "tail" the file and have it just seek (like VLC does) over the bad part (which I know exactly where it is) and just try to copy the remaining file from there?
EDIT:I just Googled a bit more this morning (after being frustrated last night to no end) and have yet to try this command, maybe it will do the trick:
dd if=/home/file/input.mkv of=/home/output.mkv conv=noerror,sync bs=4M; sync
... and perhaps instead of bs=4M, using the parameter iflag=fullblock. I will have to check on the exact syntax and parameters to use but those seem to be it. The last "sync" after the semicolon seems to be to sync memory cache/disk writes. Not sure if I need it or not. Another example:
dd if=/home/in.mkv of=/home/out.mkv status=progress conv=sync,noerror iflag=fullblock