Du fait des noms des fichiers qui sont sur le CD, celui-ci n'a pas été
gravé avec le
format iso9660 (les noms des fichiers ne sont pas en 8+3 caractères).
Il semble avoir été gravé sous Windows, donc il utilise le format
"Joliet"
Utilises donc la commande:
mount -t auto /dev/cdrom /mnt/cdrom
ou plus simple encore:
mount /dev/cdrom /mnt/cdrom
man mount pour plus d'info, ou:
http://www.linux-kheops.com/doc/man/manfr/man-html-0.9/man/manfr.php?ptd=man8/index.html
> lancement automatique ou commande en ligne c'est pareil:
>
> mount -t iso9660 /dev/cdrom /mnt/cdrom
>
> [root@localhost 30janv]# cd /mnt/cdrom/
> [-r-xr-xr-x 1 root root 46080000 Jan 30 20:16 30jan_tgz.tar
> -r-xr-xr-x 1 root root 2087424 Jan 28 00:22 Partie_Yves3.doc
> -r-xr-xr-x 1 root root 17920 Jan 27 12:46 distance_arg.xls
> [root@localhost 30janv]# cp distance_arg.xls /data/tmp/
> [root@localhost 30janv]# cp Partie_Yves3.doc /data/tmp/
> cp: reading `Partie_Yves3.doc':Input/output error
> [root@localhost 30janv]# cp 30jan_tgz.tar /data/tmp/
> cp: reading `30jan_tgz.tar': Input/output error
Que dit le fichier /var/log/messages ?
Olivier