Use tar -xf file.tar
The -f argument specifies the tarfile to process. Without it, tar assumes you want to unpack from the tape drive, so it goes looking for the tape device in /dev.
tar -xvf file.tar (also adding the -v flag) will list each file as it's unpacked.