Whenever I copy larger files off of cdrom to hard drive, I get an error:
Code:
$ cp /mnt/cdrom/foo .
cp: reading `/mnt/cdrom/foo': Input/output error
It copies the file partially, but quits without completing. I know I have enough disk space (the following listing is with most of the file off the cdrom already on disk):
Code:
# df
Filesystem Size Used Avail Use% Mounted on
/dev/ide/host0/bus0/target0/lun0/part1
5.0G 2.6G 2.1G 56% /
/dev/ide/host0/bus0/target0/lun0/part6
3.1G 2.5G 634M 80% /home
/dev/ide/host0/bus1/target0/lun0/cd
414M 414M 0 100% /mnt/cdrom
and dmesg returns about 300 lines that look like the following:
Code:
hdc: rw=0, want=846756, limit=846748
Buffer I/O error on device hdc, logical block 211688
attempt to access beyond end of device
hdc: rw=0, want=846760, limit=846748
Buffer I/O error on device hdc, logical block 211689
attempt to access beyond end of device
hdc: rw=0, want=846764, limit=846748
Buffer I/O error on device hdc, logical block 211690
attempt to access beyond end of device
hdc: rw=0, want=846768, limit=846748
Buffer I/O error on device hdc, logical block 211691
attempt to access beyond end of device
hdc: rw=0, want=846772, limit=846748
Does this mean my cdrom is kaput? Is it having problems with reading the outer sectors of the cd especially? Any help will be appreciated.