#1 Le 04/10/2005, à 16:27
- jolatouf
probleme de montage partition ntfs
Bonjour je suis nouveau dans la communaute depuis dimanche en fait.
Voila j ai deux disque dur mon pricipale en ide ou marche ubuntu hoary
et mon deuxieme en ide aussi partitionner en ntfs sans systeme d exploitation.
Sur mon deuxieme disque ce trouve tous mes travaux et bordel donc j aurais aime reussir a le monter.
Le deuxieme disque dur a pour lecteur hdc1 et hdc2
quand je fait la commande
mount -t ntfs -o uid=1000 /dev/hdc1 /mnt/windows
il me dit
mount: périphérique spécial /dev/hdc1 n'existe pas
apres quelque recherche j ai pu me rendre compte que dans le repertoire dev le lecteur est present comme hdc et non pas comme hdc1 et hdc2
donc j ai essayer ceci
mount -t ntfs -o uid=1000 /dev/hdc /mnt/windows
il me dit:
mount: /dev/hdc est déjà monté ou /mnt/windows est occupé
J ai suivie les wiki et les aides sans rien reussir si quelqu un a une idee je suis preneur.
PS: J ai essayer aussi en changeant les droits directement sur le lecteur dans dev sans resultat suplementaire.
merci pour votre aide
Jolatouf
Hors ligne
#2 Le 04/10/2005, à 22:47
- sksbir
Re : probleme de montage partition ntfs
salut
je crois bien que tes soucis viennent de ce que hdc, c'est le lecteur de CDROM (ou le 3eme disque quand il y a 3 disques)
d'habitude ,les 2 1ers DD d'une bécane s'appellent hda et hdb...enfin, ça a toujours été ça pour moi.
pour le vérifier : ls -l /dev/cdrom
chez moi, ça donne ça:
$ls -al /dev/cdrom
lrwxrwxrwx 1 root root 3 2005-10-04 20:07 /dev/cdrom -> hdc
$
et la commande qui te permettra de découvrir vraiment ce qu'il en est :dmesg|grep hd[a-z]:
Dernière modification par sksbir (Le 04/10/2005, à 22:49)
Hors ligne
#3 Le 04/10/2005, à 23:23
- DPRaV
Re : probleme de montage partition ntfs
idem en fait j'ai le même problème que toi
Hors ligne
#4 Le 04/10/2005, à 23:29
- Kitty
Re : probleme de montage partition ntfs
As-tu vu ceci :
http://wiki.ubuntu-fr.org/installation/ … ns_windows ?
Hors ligne
#5 Le 05/10/2005, à 06:58
- Kagou
Re : probleme de montage partition ntfs
Tu as l'air de t'embrouiller.
Apparemment tu essayes de monter une partition windows en ntfs, et tu dit aussi que ton lecteur de cd est hdc. Cela m'étonnerai donc que /dev/hdc1 soit une partition en ntfs.
Pour rappel :
/dev/hda 1° disque dur sur le port IDE n°1
/dev/hdb 2° périphérique sur le port IDE n°1
/dev/hdc 1° périphérique sur le port IDE n°2
/dev/hdd 2° périphérique sur le port IDE n°2
Généralement sur /dev/hdc c'est le lecteur de cd (mais vraiment pas toujours )
Il te faut savoir où est ta partition en ntfs, premier disque dur; etc ?
Ensuite lorsque tu as le disque dur (par exemple /dev/hdb), il est partagé en partitions (primaires ou étendues). Dans le cas de partitions primaires, au max il y en a 4 (hdb1,hdb2,hdb3,hdb4) , tu peux connaitre tes partitions avec :
sudo fdisk -l /dev/le_peripherique_qui_t_interresse
tu peux savoir aussi ce qui est déja monté dans ton système de fichier avec:
df
Hors ligne
#6 Le 05/10/2005, à 07:57
- cep_
Re : probleme de montage partition ntfs
J ai suivie les wiki et les aides sans rien reussir si quelqu un a une idee je suis preneur.
Comme te l'a conseillé Kitty, voir le wiki à cette adresse :
http://wiki.ubuntu-fr.org/installation/partitions_windows
Tu y verras que la commande
$ sudo fdisk -l
sans plus de paramètres liste toutes les partitions présentes sur le système.
Tu y verras leur désignation et enfonction de cela tu pourras les monter avec les options qui sont expliquées, dans les répertoires créés auparavant.
C'est une adresse indispensable pour un débutant qui a un dual boot
#7 Le 05/10/2005, à 10:04
- jolatouf
Re : probleme de montage partition ntfs
Bonjour
merci pour vos reponses.
En faite j ai installer mes deux disque dur en principal donc le premier disque est hda (normal)
et le deuxieme n est pas l esclave du premier mais le maitre de la deuxieme nappe donc hdc
mais si vous pensez que le probleme peut etre du a cela je peux le mettre en esclave du premier disque dur sans trop de galere
voici ce que me donne un fdisk -l
Périphérique Amorce Début Fin Blocs Id Système
/dev/hda1 * 1 261 2096451 6 FAT16
/dev/hda2 262 9987 78124095 83 Linux
/dev/hda3 9988 19929 79859115 83 LinuxDisque /dev/hdc: 163.9 Go, 163928604672 octets
255 têtes, 63 secteurs/piste, 19929 cylindres
Unités = cylindres de 16065 * 512 = 8225280 octetsPériphérique Amorce Début Fin Blocs Id Système
/dev/hdc1 1 9306 74750413+ 7 HPFS/NTFS
/dev/hdc2 9307 19929 85329247+ 7 HPFS/NTFS
donc partition ntfs sur hdc1 et hdc2
pour info mon cdrom est en esclave du deuxieme disque dur donc hdd
merci encore pour votre aide
jolatouf
Hors ligne
#8 Le 05/10/2005, à 10:09
- cep_
Re : probleme de montage partition ntfs
Si /mnt/windows existe, la commande :
sudo mount /dev/hdc1 /mnt/windows/ -t ntfs -o nls=utf8,umask=0222
devrait aboutir.
Si tu veux monter aussi hdc2, il faudra le faire dans un répertoire différent. Donc créer par mkdir un windows2 par exemple.
#9 Le 05/10/2005, à 10:14
- jolatouf
Re : probleme de montage partition ntfs
quand je fait ta commande il me dit
mount: périphérique spécial /dev/hdc1 n'existe pas
merci quand meme
Dernière modification par jolatouf (Le 05/10/2005, à 10:15)
Hors ligne
#10 Le 05/10/2005, à 10:16
- cep_
Re : probleme de montage partition ntfs
Que dit un :
cat /proc/partitions
passé dans un terminal ?
#11 Le 05/10/2005, à 10:21
- jolatouf
Re : probleme de montage partition ntfs
bonjour j ai du nouveau
Dans racourcie poste de travail j ai mes deux repertoire windows1 et windows2 qui corresponde respectivement a hdc1 et hdc2 seulement quand je veux y acceder
il me dit que c est impossible de monter le volume selectionner
[mntent]: warning: no final newline at the end of /etc/fstab
mount: special device /dev/hdc1 does not exist
merci
Hors ligne
#12 Le 05/10/2005, à 10:22
- jolatouf
Re : probleme de montage partition ntfs
pour ta commnde cep_
cat /proc/partitions
il me dit
cat: proc/partitions: Aucun fichier ou répertoire de ce type
Hors ligne
#13 Le 05/10/2005, à 10:23
- cep_
Re : probleme de montage partition ntfs
Et tu peux montrer ton fstab ?
Il n'y a pas de retour à la ligne ?
#14 Le 05/10/2005, à 10:24
- jolatouf
Re : probleme de montage partition ntfs
voici mon fstab
# /etc/fstab: static file system information.
#
# <file system> <mount point> <type> <options> <dump> <pass>
proc /proc proc defaults 0 0
/dev/hda2 / ext3 defaults,errors=remount-ro 0 1
/dev/hda3 /home ext3 defaults 0 2
/dev/hdd /media/cdrom0 udf,iso9660 ro,user,noauto 0 0
/dev/fd0 /media/floppy0 auto rw,user,noauto 0 0
/dev/hdc1 /mnt/windows1 ntfs ro,user,auto,gid=100,umask=002 0 0
/dev/hdc2 /mnt/windows2 ntfs ro,user,auto,gid=100,umask=002 0 0
Hors ligne
#15 Le 05/10/2005, à 10:25
- cep_
Re : probleme de montage partition ntfs
pour ta commnde cep_
cat /proc/partitionsil me dit
cat: proc/partitions: Aucun fichier ou répertoire de ce type
cat /proc/partitions
Par la même occasion, fais un :
cat /etc/fstab
#16 Le 05/10/2005, à 10:28
- jolatouf
Re : probleme de montage partition ntfs
pour le cat /proc/fstab
j ai
# /etc/fstab: static file system information.
#
# <file system> <mount point> <type> <options> <dump> <pass>
proc /proc proc defaults 0 0
/dev/hda2 / ext3 defaults,errors=remount-ro 0 1
/dev/hda3 /home ext3 defaults 0 2
/dev/hdd /media/cdrom0 udf,iso9660 ro,user,noauto 0 0
/dev/fd0 /media/floppy0 auto rw,user,noauto 0 0
/dev/hdc1 /mnt/windows1 ntfs ro,user,auto,gid=100,umask=002 0 0
/dev/hdc2 /mnt/windows2 ntfs ro,user,auto,gid=100,umask=002 0 0
pour la cat /proc/partitions
j ai
3 0 160086528 hda
3 1 2096451 hda1
3 2 78124095 hda2
3 3 79859115 hda3
22 0 160086528 hdc
254 0 2096451 dm-0
254 1 78124095 dm-1
254 2 79859115 dm-2
254 3 74750413 dm-3
254 4 85329247 dm-4
Hors ligne
#17 Le 05/10/2005, à 10:36
- cep_
Re : probleme de montage partition ntfs
Tu pourrais essayer de faire un :
sudo mount -a -o remount
puis un :
mount
pour voir ce qu'il te dit.
Si rien de satisfaisant, tu rebootes et ensuite tu feras un :
dmesg
dans un terminal pour voir ce que dit le système pendant le boot.
hdc est affiché dans /proc/partitions, mais pas les hdc1 et hdc2.
Ton fstab semble normal.
Peut-être le rééditer avec gedit pour voir comment sont les lignes, mais je n'y crois pas beaucoup.
Enfin tu pourrais faire un :
cd /mnt/windows
ls -al
pour lister les fichiers voir s'il lit.
#18 Le 05/10/2005, à 10:47
- jolatouf
Re : probleme de montage partition ntfs
sudo mount -a -o remount
[mntent]: AVERTISSEMENT: aucun nouvelle ligne finale à la fin de /etc/fstab
mount: /mnt/windows1 n'est pas déjà monté ou option erronée
mount: /mnt/windows2 n'est pas déjà monté ou option erronée
pour mount
/dev/hda2 on / type ext3 (rw,errors=remount-ro)
proc on /proc type proc (rw)
sysfs on /sys type sysfs (rw)
devpts on /dev/pts type devpts (rw,gid=5,mode=620)
tmpfs on /dev/shm type tmpfs (rw)
/dev/hda3 on /home type ext3 (rw)
/dev on /.dev type unknown (rw,bind)
none on /dev type tmpfs (rw,size=5M,mode=0755)
usbfs on /proc/bus/usb type usbfs (rw)
/dev/hdd on /media/cdrom0 type udf (ro,noexec,nosuid,nodev,user=jonas)
desmsg
se key=0x02)
(reserved error code) -- (asc=0x30, ascq=0x02)
The failed "Read Subchannel" packet command was:
"42 02 40 01 00 00 00 00 10 00 00 00 00 00 00 00 "
VFS: busy inodes on changed media.
ATAPI device hdd:
Error: Not ready -- (Sense key=0x02)
(reserved error code) -- (asc=0x30, ascq=0x02)
The failed "Read Subchannel" packet command was:
"42 02 40 01 00 00 00 00 10 00 00 00 00 00 00 00 "
ATAPI device hdd:
Error: Not ready -- (Sense key=0x02)
(reserved error code) -- (asc=0x30, ascq=0x02)
The failed "Read Subchannel" packet command was:
"42 02 40 01 00 00 00 00 10 00 00 00 00 00 00 00 "
VFS: busy inodes on changed media.
ATAPI device hdd:
Error: Not ready -- (Sense key=0x02)
(reserved error code) -- (asc=0x30, ascq=0x02)
The failed "Read Subchannel" packet command was:
"42 02 40 01 00 00 00 00 10 00 00 00 00 00 00 00 "
ATAPI device hdd:
Error: Not ready -- (Sense key=0x02)
(reserved error code) -- (asc=0x30, ascq=0x02)
The failed "Read Subchannel" packet command was:
"42 02 40 01 00 00 00 00 10 00 00 00 00 00 00 00 "
VFS: busy inodes on changed media.
ATAPI device hdd:
Error: Not ready -- (Sense key=0x02)
(reserved error code) -- (asc=0x30, ascq=0x02)
The failed "Read Subchannel" packet command was:
"42 02 40 01 00 00 00 00 10 00 00 00 00 00 00 00 "
ATAPI device hdd:
Error: Not ready -- (Sense key=0x02)
(reserved error code) -- (asc=0x30, ascq=0x02)
The failed "Read Subchannel" packet command was:
"42 02 40 01 00 00 00 00 10 00 00 00 00 00 00 00 "
VFS: busy inodes on changed media.
ATAPI device hdd:
Error: Not ready -- (Sense key=0x02)
(reserved error code) -- (asc=0x30, ascq=0x02)
The failed "Read Subchannel" packet command was:
"42 02 40 01 00 00 00 00 10 00 00 00 00 00 00 00 "
ATAPI device hdd:
Error: Not ready -- (Sense key=0x02)
(reserved error code) -- (asc=0x30, ascq=0x02)
The failed "Read Subchannel" packet command was:
"42 02 40 01 00 00 00 00 10 00 00 00 00 00 00 00 "
VFS: busy inodes on changed media.
ATAPI device hdd:
Error: Not ready -- (Sense key=0x02)
(reserved error code) -- (asc=0x30, ascq=0x02)
The failed "Read Subchannel" packet command was:
"42 02 40 01 00 00 00 00 10 00 00 00 00 00 00 00 "
ATAPI device hdd:
Error: Not ready -- (Sense key=0x02)
(reserved error code) -- (asc=0x30, ascq=0x02)
The failed "Read Subchannel" packet command was:
"42 02 40 01 00 00 00 00 10 00 00 00 00 00 00 00 "
VFS: busy inodes on changed media.
ATAPI device hdd:
Error: Not ready -- (Sense key=0x02)
(reserved error code) -- (asc=0x30, ascq=0x02)
The failed "Read Subchannel" packet command was:
"42 02 40 01 00 00 00 00 10 00 00 00 00 00 00 00 "
ATAPI device hdd:
Error: Not ready -- (Sense key=0x02)
(reserved error code) -- (asc=0x30, ascq=0x02)
The failed "Read Subchannel" packet command was:
"42 02 40 01 00 00 00 00 10 00 00 00 00 00 00 00 "
VFS: busy inodes on changed media.
ATAPI device hdd:
Error: Not ready -- (Sense key=0x02)
(reserved error code) -- (asc=0x30, ascq=0x02)
The failed "Read Subchannel" packet command was:
"42 02 40 01 00 00 00 00 10 00 00 00 00 00 00 00 "
ATAPI device hdd:
Error: Not ready -- (Sense key=0x02)
(reserved error code) -- (asc=0x30, ascq=0x02)
The failed "Read Subchannel" packet command was:
"42 02 40 01 00 00 00 00 10 00 00 00 00 00 00 00 "
VFS: busy inodes on changed media.
ATAPI device hdd:
Error: Not ready -- (Sense key=0x02)
(reserved error code) -- (asc=0x30, ascq=0x02)
The failed "Read Subchannel" packet command was:
"42 02 40 01 00 00 00 00 10 00 00 00 00 00 00 00 "
ATAPI device hdd:
Error: Not ready -- (Sense key=0x02)
(reserved error code) -- (asc=0x30, ascq=0x02)
The failed "Read Subchannel" packet command was:
"42 02 40 01 00 00 00 00 10 00 00 00 00 00 00 00 "
VFS: busy inodes on changed media.
ATAPI device hdd:
Error: Not ready -- (Sense key=0x02)
(reserved error code) -- (asc=0x30, ascq=0x02)
The failed "Read Subchannel" packet command was:
"42 02 40 01 00 00 00 00 10 00 00 00 00 00 00 00 "
ATAPI device hdd:
Error: Not ready -- (Sense key=0x02)
(reserved error code) -- (asc=0x30, ascq=0x02)
The failed "Read Subchannel" packet command was:
"42 02 40 01 00 00 00 00 10 00 00 00 00 00 00 00 "
VFS: busy inodes on changed media.
ATAPI device hdd:
Error: Not ready -- (Sense key=0x02)
(reserved error code) -- (asc=0x30, ascq=0x02)
The failed "Read Subchannel" packet command was:
"42 02 40 01 00 00 00 00 10 00 00 00 00 00 00 00 "
ATAPI device hdd:
Error: Not ready -- (Sense key=0x02)
(reserved error code) -- (asc=0x30, ascq=0x02)
The failed "Read Subchannel" packet command was:
"42 02 40 01 00 00 00 00 10 00 00 00 00 00 00 00 "
VFS: busy inodes on changed media.
ATAPI device hdd:
Error: Not ready -- (Sense key=0x02)
(reserved error code) -- (asc=0x30, ascq=0x02)
The failed "Read Subchannel" packet command was:
"42 02 40 01 00 00 00 00 10 00 00 00 00 00 00 00 "
ATAPI device hdd:
Error: Not ready -- (Sense key=0x02)
(reserved error code) -- (asc=0x30, ascq=0x02)
The failed "Read Subchannel" packet command was:
"42 02 40 01 00 00 00 00 10 00 00 00 00 00 00 00 "
VFS: busy inodes on changed media.
ATAPI device hdd:
Error: Not ready -- (Sense key=0x02)
(reserved error code) -- (asc=0x30, ascq=0x02)
The failed "Read Subchannel" packet command was:
"42 02 40 01 00 00 00 00 10 00 00 00 00 00 00 00 "
ATAPI device hdd:
Error: Not ready -- (Sense key=0x02)
(reserved error code) -- (asc=0x30, ascq=0x02)
The failed "Read Subchannel" packet command was:
"42 02 40 01 00 00 00 00 10 00 00 00 00 00 00 00 "
VFS: busy inodes on changed media.
ATAPI device hdd:
Error: Not ready -- (Sense key=0x02)
(reserved error code) -- (asc=0x30, ascq=0x02)
The failed "Read Subchannel" packet command was:
"42 02 40 01 00 00 00 00 10 00 00 00 00 00 00 00 "
ATAPI device hdd:
Error: Not ready -- (Sense key=0x02)
(reserved error code) -- (asc=0x30, ascq=0x02)
The failed "Read Subchannel" packet command was:
"42 02 40 01 00 00 00 00 10 00 00 00 00 00 00 00 "
VFS: busy inodes on changed media.
ATAPI device hdd:
Error: Not ready -- (Sense key=0x02)
(reserved error code) -- (asc=0x30, ascq=0x02)
The failed "Read Subchannel" packet command was:
"42 02 40 01 00 00 00 00 10 00 00 00 00 00 00 00 "
ATAPI device hdd:
Error: Not ready -- (Sense key=0x02)
(reserved error code) -- (asc=0x30, ascq=0x02)
The failed "Read Subchannel" packet command was:
"42 02 40 01 00 00 00 00 10 00 00 00 00 00 00 00 "
VFS: busy inodes on changed media.
ATAPI device hdd:
Error: Not ready -- (Sense key=0x02)
(reserved error code) -- (asc=0x30, ascq=0x02)
The failed "Read Subchannel" packet command was:
"42 02 40 01 00 00 00 00 10 00 00 00 00 00 00 00 "
ATAPI device hdd:
Error: Not ready -- (Sense key=0x02)
(reserved error code) -- (asc=0x30, ascq=0x02)
The failed "Read Subchannel" packet command was:
"42 02 40 01 00 00 00 00 10 00 00 00 00 00 00 00 "
VFS: busy inodes on changed media.
ATAPI device hdd:
Error: Not ready -- (Sense key=0x02)
(reserved error code) -- (asc=0x30, ascq=0x02)
The failed "Read Subchannel" packet command was:
"42 02 40 01 00 00 00 00 10 00 00 00 00 00 00 00 "
ATAPI device hdd:
Error: Not ready -- (Sense key=0x02)
(reserved error code) -- (asc=0x30, ascq=0x02)
The failed "Read Subchannel" packet command was:
"42 02 40 01 00 00 00 00 10 00 00 00 00 00 00 00 "
VFS: busy inodes on changed media.
ATAPI device hdd:
Error: Not ready -- (Sense key=0x02)
(reserved error code) -- (asc=0x30, ascq=0x02)
The failed "Read Subchannel" packet command was:
"42 02 40 01 00 00 00 00 10 00 00 00 00 00 00 00 "
ATAPI device hdd:
Error: Not ready -- (Sense key=0x02)
(reserved error code) -- (asc=0x30, ascq=0x02)
The failed "Read Subchannel" packet command was:
"42 02 40 01 00 00 00 00 10 00 00 00 00 00 00 00 "
VFS: busy inodes on changed media.
ATAPI device hdd:
Error: Not ready -- (Sense key=0x02)
(reserved error code) -- (asc=0x30, ascq=0x02)
The failed "Read Subchannel" packet command was:
"42 02 40 01 00 00 00 00 10 00 00 00 00 00 00 00 "
ATAPI device hdd:
Error: Not ready -- (Sense key=0x02)
(reserved error code) -- (asc=0x30, ascq=0x02)
The failed "Read Subchannel" packet command was:
"42 02 40 01 00 00 00 00 10 00 00 00 00 00 00 00 "
VFS: busy inodes on changed media.
ATAPI device hdd:
Error: Not ready -- (Sense key=0x02)
(reserved error code) -- (asc=0x30, ascq=0x02)
The failed "Read Subchannel" packet command was:
"42 02 40 01 00 00 00 00 10 00 00 00 00 00 00 00 "
ATAPI device hdd:
Error: Not ready -- (Sense key=0x02)
(reserved error code) -- (asc=0x30, ascq=0x02)
The failed "Read Subchannel" packet command was:
"42 02 40 01 00 00 00 00 10 00 00 00 00 00 00 00 "
VFS: busy inodes on changed media.
ATAPI device hdd:
Error: Not ready -- (Sense key=0x02)
(reserved error code) -- (asc=0x30, ascq=0x02)
The failed "Read Subchannel" packet command was:
"42 02 40 01 00 00 00 00 10 00 00 00 00 00 00 00 "
ATAPI device hdd:
Error: Not ready -- (Sense key=0x02)
(reserved error code) -- (asc=0x30, ascq=0x02)
The failed "Read Subchannel" packet command was:
"42 02 40 01 00 00 00 00 10 00 00 00 00 00 00 00 "
VFS: busy inodes on changed media.
ATAPI device hdd:
Error: Not ready -- (Sense key=0x02)
(reserved error code) -- (asc=0x30, ascq=0x02)
The failed "Read Subchannel" packet command was:
"42 02 40 01 00 00 00 00 10 00 00 00 00 00 00 00 "
ATAPI device hdd:
Error: Not ready -- (Sense key=0x02)
(reserved error code) -- (asc=0x30, ascq=0x02)
The failed "Read Subchannel" packet command was:
"42 02 40 01 00 00 00 00 10 00 00 00 00 00 00 00 "
VFS: busy inodes on changed media.
ATAPI device hdd:
Error: Not ready -- (Sense key=0x02)
(reserved error code) -- (asc=0x30, ascq=0x02)
The failed "Read Subchannel" packet command was:
"42 02 40 01 00 00 00 00 10 00 00 00 00 00 00 00 "
ATAPI device hdd:
Error: Not ready -- (Sense key=0x02)
(reserved error code) -- (asc=0x30, ascq=0x02)
The failed "Read Subchannel" packet command was:
"42 02 40 01 00 00 00 00 10 00 00 00 00 00 00 00 "
VFS: busy inodes on changed media.
ATAPI device hdd:
Error: Not ready -- (Sense key=0x02)
(reserved error code) -- (asc=0x30, ascq=0x02)
The failed "Read Subchannel" packet command was:
"42 02 40 01 00 00 00 00 10 00 00 00 00 00 00 00 "
ATAPI device hdd:
Error: Not ready -- (Sense key=0x02)
(reserved error code) -- (asc=0x30, ascq=0x02)
The failed "Read Subchannel" packet command was:
"42 02 40 01 00 00 00 00 10 00 00 00 00 00 00 00 "
VFS: busy inodes on changed media.
ATAPI device hdd:
Error: Not ready -- (Sense key=0x02)
(reserved error code) -- (asc=0x30, ascq=0x02)
The failed "Read Subchannel" packet command was:
"42 02 40 01 00 00 00 00 10 00 00 00 00 00 00 00 "
ATAPI device hdd:
Error: Not ready -- (Sense key=0x02)
(reserved error code) -- (asc=0x30, ascq=0x02)
The failed "Read Subchannel" packet command was:
"42 02 40 01 00 00 00 00 10 00 00 00 00 00 00 00 "
VFS: busy inodes on changed media.
ATAPI device hdd:
Error: Not ready -- (Sense key=0x02)
(reserved error code) -- (asc=0x30, ascq=0x02)
The failed "Read Subchannel" packet command was:
"42 02 40 01 00 00 00 00 10 00 00 00 00 00 00 00 "
ATAPI device hdd:
Error: Not ready -- (Sense key=0x02)
(reserved error code) -- (asc=0x30, ascq=0x02)
The failed "Read Subchannel" packet command was:
"42 02 40 01 00 00 00 00 10 00 00 00 00 00 00 00 "
VFS: busy inodes on changed media.
ATAPI device hdd:
Error: Not ready -- (Sense key=0x02)
(reserved error code) -- (asc=0x30, ascq=0x02)
The failed "Read Subchannel" packet command was:
"42 02 40 01 00 00 00 00 10 00 00 00 00 00 00 00 "
ATAPI device hdd:
Error: Not ready -- (Sense key=0x02)
(reserved error code) -- (asc=0x30, ascq=0x02)
The failed "Read Subchannel" packet command was:
"42 02 40 01 00 00 00 00 10 00 00 00 00 00 00 00 "
VFS: busy inodes on changed media.
ATAPI device hdd:
Error: Not ready -- (Sense key=0x02)
(reserved error code) -- (asc=0x30, ascq=0x02)
The failed "Read Subchannel" packet command was:
"42 02 40 01 00 00 00 00 10 00 00 00 00 00 00 00 "
ATAPI device hdd:
Error: Not ready -- (Sense key=0x02)
(reserved error code) -- (asc=0x30, ascq=0x02)
The failed "Read Subchannel" packet command was:
"42 02 40 01 00 00 00 00 10 00 00 00 00 00 00 00 "
VFS: busy inodes on changed media.
ATAPI device hdd:
Error: Not ready -- (Sense key=0x02)
(reserved error code) -- (asc=0x30, ascq=0x02)
The failed "Read Subchannel" packet command was:
"42 02 40 01 00 00 00 00 10 00 00 00 00 00 00 00 "
ATAPI device hdd:
Error: Not ready -- (Sense key=0x02)
(reserved error code) -- (asc=0x30, ascq=0x02)
The failed "Read Subchannel" packet command was:
"42 02 40 01 00 00 00 00 10 00 00 00 00 00 00 00 "
VFS: busy inodes on changed media.
ATAPI device hdd:
Error: Not ready -- (Sense key=0x02)
(reserved error code) -- (asc=0x30, ascq=0x02)
The failed "Read Subchannel" packet command was:
"42 02 40 01 00 00 00 00 10 00 00 00 00 00 00 00 "
ATAPI device hdd:
Error: Not ready -- (Sense key=0x02)
(reserved error code) -- (asc=0x30, ascq=0x02)
The failed "Read Subchannel" packet command was:
"42 02 40 01 00 00 00 00 10 00 00 00 00 00 00 00 "
VFS: busy inodes on changed media.
ATAPI device hdd:
Error: Not ready -- (Sense key=0x02)
(reserved error code) -- (asc=0x30, ascq=0x02)
The failed "Read Subchannel" packet command was:
"42 02 40 01 00 00 00 00 10 00 00 00 00 00 00 00 "
ATAPI device hdd:
Error: Not ready -- (Sense key=0x02)
(reserved error code) -- (asc=0x30, ascq=0x02)
The failed "Read Subchannel" packet command was:
"42 02 40 01 00 00 00 00 10 00 00 00 00 00 00 00 "
VFS: busy inodes on changed media.
ATAPI device hdd:
Error: Not ready -- (Sense key=0x02)
(reserved error code) -- (asc=0x30, ascq=0x02)
The failed "Read Subchannel" packet command was:
"42 02 40 01 00 00 00 00 10 00 00 00 00 00 00 00 "
ATAPI device hdd:
Error: Not ready -- (Sense key=0x02)
(reserved error code) -- (asc=0x30, ascq=0x02)
The failed "Read Subchannel" packet command was:
"42 02 40 01 00 00 00 00 10 00 00 00 00 00 00 00 "
VFS: busy inodes on changed media.
ATAPI device hdd:
Error: Not ready -- (Sense key=0x02)
(reserved error code) -- (asc=0x30, ascq=0x02)
The failed "Read Subchannel" packet command was:
"42 02 40 01 00 00 00 00 10 00 00 00 00 00 00 00 "
ATAPI device hdd:
Error: Not ready -- (Sense key=0x02)
(reserved error code) -- (asc=0x30, ascq=0x02)
The failed "Read Subchannel" packet command was:
"42 02 40 01 00 00 00 00 10 00 00 00 00 00 00 00 "
VFS: busy inodes on changed media.
ATAPI device hdd:
Error: Not ready -- (Sense key=0x02)
(reserved error code) -- (asc=0x30, ascq=0x02)
The failed "Read Subchannel" packet command was:
"42 02 40 01 00 00 00 00 10 00 00 00 00 00 00 00 "
ATAPI device hdd:
Error: Not ready -- (Sense key=0x02)
(reserved error code) -- (asc=0x30, ascq=0x02)
The failed "Read Subchannel" packet command was:
"42 02 40 01 00 00 00 00 10 00 00 00 00 00 00 00 "
VFS: busy inodes on changed media.
et sinon avec le ls -al dans windows j ai
drwxr-xr-x 2 root root 4096 2005-10-05 11:08 .
drwxr-xr-x 4 root root 4096 2005-10-05 11:08 ..
j ai reediter mon /etc/fstab avec gedit et je n est pas de passage a la ligne en fin de fichier
merci pour tous les efforts que tu fait pour moi
Hors ligne
#19 Le 05/10/2005, à 11:03
- cep_
Re : probleme de montage partition ntfs
Curieux. Comme s'il essayait de lire sur un cdrom corrompu.
Ce disque est bien accessible depuis windows ?
pas d'erreurs dans la configuration des cavaliers à l'arrière ?
Et si tu supprimes les lignes concernant hdc1 et hdc2 dans fstab, puis tu rebootes pour être certain et enfin tu essayes de le monter dans un terminal evac la commande donnée plus haut ?
Enfin, en dernier ressort voir s'il ne fonctionne pas mieux en le mettant en esclave du cdrom avec les cavaliers bien configurés.
Enfin peut-être faire un contrôle du disque sous windows.
Au fait tu es sous breezy ou hoary ?
Bon courage pour les prochains tests, mais là je ne vois pas.
cep
#20 Le 05/10/2005, à 11:09
- jolatouf
Re : probleme de montage partition ntfs
meric pour tous tes conseils je suis sous hoary
un controle sous windows ne sera pas possible car je n ai plus de windows mais ca au pire je le passerai sur un autre ordi pour ce test
je vais tester tous ca merci encore cep
passe une bonne journee
jolatouf
Hors ligne
#21 Le 05/10/2005, à 11:15
- jolatouf
Re : probleme de montage partition ntfs
apres rebootage et supression des deux lignes dans le /etc/fstab
la commande dmesg me donne
K.
ACPI: Looking for DSDT in initrd... not found!
ENABLING IO-APIC IRQs
..TIMER: vector=0x31 pin1=0 pin2=-1
checking if image is initramfs...it isn't (bad gzip magic numbers); looks like an initrd
Freeing initrd memory: 4300k freed
NET: Registered protocol family 16
EISA bus registered
PCI: PCI BIOS revision 2.10 entry at 0xfa090, last bus=2
PCI: Using configuration type 1
mtrr: v2.0 (20020519)
ACPI: Subsystem revision 20050211
ACPI: Interpreter enabled
ACPI: Using IOAPIC for interrupt routing
ACPI: PCI Root Bridge [PCI0] (00:00)
PCI: Probing PCI hardware (bus 00)
ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.HUB0._PRT]
ACPI: Power Resource [ISAV] (on)
ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.AGPB._PRT]
ACPI: PCI Interrupt Link [LNK1] (IRQs 3 4 5 6 7 10 11 12 14 15) *0, disabled.
ACPI: PCI Interrupt Link [LNK2] (IRQs 3 4 *5 6 7 10 11 12 14 15)
ACPI: PCI Interrupt Link [LNK3] (IRQs 3 4 5 6 7 10 11 12 14 15) *0, disabled.
ACPI: PCI Interrupt Link [LNK4] (IRQs 3 4 5 6 7 *10 11 12 14 15)
ACPI: PCI Interrupt Link [LNK5] (IRQs *3 4 5 6 7 10 11 12 14 15)
ACPI: PCI Interrupt Link [LUBA] (IRQs 3 4 5 6 7 10 *11 12 14 15)
ACPI: PCI Interrupt Link [LUBB] (IRQs *3 4 5 6 7 10 11 12 14 15)
ACPI: PCI Interrupt Link [LMAC] (IRQs 3 4 5 6 7 *10 11 12 14 15)
ACPI: PCI Interrupt Link [LAPU] (IRQs 3 4 5 6 7 10 11 12 14 15) *0, disabled.
ACPI: PCI Interrupt Link [LACI] (IRQs 3 4 5 6 7 10 *11 12 14 15)
ACPI: PCI Interrupt Link [LMCI] (IRQs 3 4 5 6 7 *10 11 12 14 15)
ACPI: PCI Interrupt Link [LSMB] (IRQs 3 4 5 6 7 *10 11 12 14 15)
ACPI: PCI Interrupt Link [LUB2] (IRQs 3 4 *5 6 7 10 11 12 14 15)
ACPI: PCI Interrupt Link [LFIR] (IRQs 3 4 5 6 7 10 11 12 14 15) *0, disabled.
ACPI: PCI Interrupt Link [L3CM] (IRQs 3 4 5 6 7 10 11 12 14 15) *0, disabled.
ACPI: PCI Interrupt Link [LIDE] (IRQs 3 4 5 6 7 10 11 12 14 15) *0, disabled.
ACPI: PCI Interrupt Link [LSID] (IRQs 3 4 5 6 7 10 11 12 14 15) *0, disabled.
ACPI: PCI Interrupt Link [LFID] (IRQs 3 4 5 6 7 10 *11 12 14 15)
ACPI: PCI Interrupt Link [APC1] (IRQs *16), disabled.
ACPI: PCI Interrupt Link [APC2] (IRQs *17), disabled.
ACPI: PCI Interrupt Link [APC3] (IRQs *18), disabled.
ACPI: PCI Interrupt Link [APC4] (IRQs *19), disabled.
ACPI: PCI Interrupt Link [APC5] (IRQs *16), disabled.
ACPI: PCI Interrupt Link [APCF] (IRQs 20 21 22 23) *0, disabled.
ACPI: PCI Interrupt Link [APCG] (IRQs 20 21 22 23) *0, disabled.
ACPI: PCI Interrupt Link [APCH] (IRQs 20 21 22 23) *0, disabled.
ACPI: PCI Interrupt Link [APCI] (IRQs 20 21 22 23) *0, disabled.
ACPI: PCI Interrupt Link [APCJ] (IRQs 20 21 22 23) *0, disabled.
ACPI: PCI Interrupt Link [APCK] (IRQs 20 21 22 23) *0, disabled.
ACPI: PCI Interrupt Link [APCS] (IRQs 20 21 22 23) *0, disabled.
ACPI: PCI Interrupt Link [APCL] (IRQs 20 21 22 23) *0, disabled.
ACPI: PCI Interrupt Link [APCM] (IRQs 20 21 22 23) *0, disabled.
ACPI: PCI Interrupt Link [AP3C] (IRQs 20 21 22 23) *0, disabled.
ACPI: PCI Interrupt Link [APCZ] (IRQs 20 21 22 23) *0, disabled.
ACPI: PCI Interrupt Link [APSI] (IRQs 20 21 22 23) *0, disabled.
ACPI: PCI Interrupt Link [APSJ] (IRQs 20 21 22 23) *0, disabled.
Linux Plug and Play Support v0.97 (c) Adam Belay
pnp: PnP ACPI init
pnp: PnP ACPI: found 12 devices
PnPBIOS: Disabled by ACPI PNP
PCI: Using ACPI for IRQ routing
** PCI interrupts are no longer routed automatically. If this
** causes a device to stop working, it is probably because the
** driver failed to call pci_enable_device(). As a temporary
** workaround, the "pci=routeirq" argument restores the old
** behavior. If this argument makes the device work again,
** please email the output of "lspci" to bjorn.helgaas@hp.com
** so I can fix the driver.
pnp: 00:00: ioport range 0x4000-0x407f could not be reserved
pnp: 00:00: ioport range 0x4080-0x40ff has been reserved
pnp: 00:00: ioport range 0x4400-0x447f has been reserved
pnp: 00:00: ioport range 0x4480-0x44ff could not be reserved
pnp: 00:00: ioport range 0x4800-0x487f has been reserved
pnp: 00:00: ioport range 0x4880-0x48ff has been reserved
audit: initializing netlink socket (disabled)
audit(1128507076.649:0): initialized
VFS: Disk quotas dquot_6.5.1
Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
devfs: 2004-01-31 Richard Gooch (rgooch@atnf.csiro.au)
devfs: boot_options: 0x0
Initializing Cryptographic API
isapnp: Scanning for PnP cards...
isapnp: No Plug & Play device found
serio: i8042 AUX port at 0x60,0x64 irq 12
serio: i8042 KBD port at 0x60,0x64 irq 1
Serial: 8250/16550 driver $Revision: 1.90 $ 54 ports, IRQ sharing enabled
ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
io scheduler noop registered
io scheduler anticipatory registered
io scheduler deadline registered
io scheduler cfq registered
RAMDISK driver initialized: 16 RAM disks of 8192K size 1024 blocksize
input: AT Translated Set 2 keyboard on isa0060/serio0
EISA: Probing bus 0 at eisa0
Cannot allocate resource for EISA slot 4
EISA: Detected 0 cards.
NET: Registered protocol family 2
IP: routing cache hash table of 8192 buckets, 64Kbytes
TCP: Hash tables configured (established 262144 bind 65536)
NET: Registered protocol family 8
NET: Registered protocol family 20
Restarting tasks...<6> Strange, kswapd0 not stopped
Strange, kseriod not stopped
done
ACPI wakeup devices:
HUB0 HUB1 USB0 USB1 USB2 F139 MMAC MMCI UAR1
ACPI: (supports S0 S3 S4 S5)
RAMDISK: cramfs filesystem found at block 0
RAMDISK: Loading 4300KiB [1 disk] into ram disk... done.
VFS: Mounted root (cramfs filesystem) readonly.
Freeing unused kernel memory: 224k freed
ACPI: Fan [FAN] (on)
ACPI: Thermal Zone [THRM] (57 C)
NET: Registered protocol family 1
Uniform Multi-Platform E-IDE driver Revision: 7.00alpha2
ide: Assuming 33MHz system bus speed for PIO modes; override with idebus=xx
NFORCE3-250: IDE controller at PCI slot 0000:00:08.0
NFORCE3-250: chipset revision 162
NFORCE3-250: not 100% native mode: will probe irqs later
NFORCE3-250: BIOS didn't set cable bits correctly. Enabling workaround.
NFORCE3-250: BIOS didn't set cable bits correctly. Enabling workaround.
NFORCE3-250: 0000:00:08.0 (rev a2) UDMA133 controller
ide0: BM-DMA at 0xf700-0xf707, BIOS settings: hda:DMA, hdb:DMA
ide1: BM-DMA at 0xf708-0xf70f, BIOS settings: hdc:DMA, hdd:DMA
Probing IDE interface ide0...
hda: Maxtor 6Y160P0, ATA DISK drive
elevator: using anticipatory as default io scheduler
ide0 at 0x1f0-0x1f7,0x3f6 on irq 14
hda: max request size: 1024KiB
hda: 320173056 sectors (163928 MB) w/7936KiB Cache, CHS=19929/255/63, UDMA(133)
hda: cache flushes supported
/dev/ide/host0/bus0/target0/lun0: p1 p2 p3
Probing IDE interface ide1...
hdc: Maxtor 6Y160P0, ATA DISK drive
hdd: _NEC DVD_RW ND-3520A, ATAPI CD/DVD-ROM drive
ide1 at 0x170-0x177,0x376 on irq 15
hdc: max request size: 1024KiB
hdc: 320173056 sectors (163928 MB) w/7936KiB Cache, CHS=19929/255/63, UDMA(133)
hdc: cache flushes supported
/dev/ide/host0/bus1/target0/lun0:hdc: dma_intr: status=0x51 { DriveReady SeekComplete Error }
hdc: dma_intr: error=0x84 { DriveStatusError BadCRC }
ide: failed opcode was: unknown
hdc: dma_intr: status=0x51 { DriveReady SeekComplete Error }
hdc: dma_intr: error=0x84 { DriveStatusError BadCRC }
ide: failed opcode was: unknown
hdc: dma_intr: status=0x51 { DriveReady SeekComplete Error }
hdc: dma_intr: error=0x84 { DriveStatusError BadCRC }
ide: failed opcode was: unknown
hdc: dma_intr: status=0x51 { DriveReady SeekComplete Error }
hdc: dma_intr: error=0x84 { DriveStatusError BadCRC }
ide: failed opcode was: unknown
ide1: reset: success
hdc: dma_intr: status=0x51 { DriveReady SeekComplete Error }
hdc: dma_intr: error=0x84 { DriveStatusError BadCRC }
ide: failed opcode was: unknown
hdc: dma_intr: status=0x51 { DriveReady SeekComplete Error }
hdc: dma_intr: error=0x84 { DriveStatusError BadCRC }
ide: failed opcode was: unknown
hdc: dma_intr: status=0x51 { DriveReady SeekComplete Error }
hdc: dma_intr: error=0x84 { DriveStatusError BadCRC }
ide: failed opcode was: unknown
hdc: dma_intr: status=0x51 { DriveReady SeekComplete Error }
hdc: dma_intr: error=0x84 { DriveStatusError BadCRC }
ide: failed opcode was: unknown
ide1: reset: success
hdc: dma_intr: status=0x51 { DriveReady SeekComplete Error }
hdc: dma_intr: error=0x84 { DriveStatusError BadCRC }
ide: failed opcode was: unknown
end_request: I/O error, dev hdc, sector 0
Buffer I/O error on device hdc, logical block 0
hdc: dma_intr: status=0x51 { DriveReady SeekComplete Error }
hdc: dma_intr: error=0x84 { DriveStatusError BadCRC }
ide: failed opcode was: unknown
hdc: dma_intr: status=0x51 { DriveReady SeekComplete Error }
hdc: dma_intr: error=0x84 { DriveStatusError BadCRC }
ide: failed opcode was: unknown
hdc: dma_intr: status=0x51 { DriveReady SeekComplete Error }
hdc: dma_intr: error=0x84 { DriveStatusError BadCRC }
ide: failed opcode was: unknown
hdc: dma_intr: status=0x51 { DriveReady SeekComplete Error }
hdc: dma_intr: error=0x84 { DriveStatusError BadCRC }
ide: failed opcode was: unknown
ide1: reset: success
unable to read partition table
Probing IDE interface ide2...
Probing IDE interface ide3...
Probing IDE interface ide4...
Probing IDE interface ide5...
EXT3-fs: mounted filesystem with ordered data mode.
kjournald starting. Commit interval 5 seconds
EXT3 FS on hda2, internal journal
hdd: ATAPI 48X DVD-ROM DVD-R CD-R/RW drive, 2048kB Cache
Uniform CD-ROM driver Revision: 3.20
parport: PnPBIOS parport detected.
parport0: PC-style at 0x378, irq 7 [PCSPP,TRISTATE]
lp0: using parport0 (interrupt-driven).
mice: PS/2 mouse device common for all mice
input: ImPS/2 Generic Wheel Mouse on isa0060/serio1
ieee1394: Initialized config rom entry `ip1394'
SCSI subsystem initialized
sbp2: $Rev: 1219 $ Ben Collins <bcollins@debian.org>
NTFS driver 2.1.22 [Flags: R/O MODULE].
Capability LSM initialized
ts: Compaq touchscreen protocol output
device-mapper: 4.3.0-ioctl (2004-09-30) initialised: dm-devel@redhat.com
md: md driver 0.90.1 MAX_MD_DEVS=256, MD_SB_DISKS=27
cdrom: open failed.
kjournald starting. Commit interval 5 seconds
EXT3 FS on hda3, internal journal
EXT3-fs: mounted filesystem with ordered data mode.
Real Time Clock Driver v1.12
input: PC Speaker
inserting floppy driver for 2.6.10-5-386
Floppy drive(s): fd0 is 1.44M
FDC 0 is a post-1991 82077
Linux agpgart interface v0.100 (c) Dave Jones
agpgart: Detected AGP bridge 0
agpgart: Setting up Nforce3 AGP.
agpgart: Maximum main memory to use for agp memory: 816M
agpgart: AGP aperture is 256M @ 0xe0000000
usbcore: registered new driver usbfs
usbcore: registered new driver hub
ohci_hcd: 2004 Nov 08 USB 1.1 'Open' Host Controller (OHCI) Driver (PCI)
ACPI: PCI Interrupt Link [APCF] enabled at IRQ 23
ACPI: PCI interrupt 0000:00:02.0[A] -> GSI 23 (level, high) -> IRQ 23
ohci_hcd 0000:00:02.0: PCI device 10de:00e7 (nVidia Corporation)
PCI: Setting latency timer of device 0000:00:02.0 to 64
ohci_hcd 0000:00:02.0: irq 23, pci mem 0xfdfff000
ohci_hcd 0000:00:02.0: new USB bus registered, assigned bus number 1
hub 1-0:1.0: USB hub found
hub 1-0:1.0: 4 ports detected
ACPI: PCI Interrupt Link [APCG] enabled at IRQ 22
ACPI: PCI interrupt 0000:00:02.1[b] -> GSI 22 (level, high) -> IRQ 22
ohci_hcd 0000:00:02.1: PCI device 10de:00e7 (nVidia Corporation)
PCI: Setting latency timer of device 0000:00:02.1 to 64
ohci_hcd 0000:00:02.1: irq 22, pci mem 0xfdffe000
ohci_hcd 0000:00:02.1: new USB bus registered, assigned bus number 2
hub 2-0:1.0: USB hub found
hub 2-0:1.0: 4 ports detected
ACPI: PCI Interrupt Link [APCL] enabled at IRQ 21
ACPI: PCI interrupt 0000:00:02.2[C] -> GSI 21 (level, high) -> IRQ 21
ehci_hcd 0000:00:02.2: PCI device 10de:00e8 (nVidia Corporation)
PCI: Setting latency timer of device 0000:00:02.2 to 64
ehci_hcd 0000:00:02.2: irq 21, pci mem 0xfdffd000
ehci_hcd 0000:00:02.2: new USB bus registered, assigned bus number 3
PCI: cache line size of 64 is not supported by device 0000:00:02.2
ehci_hcd 0000:00:02.2: USB 2.0 initialized, EHCI 1.00, driver 26 Oct 2004
hub 3-0:1.0: USB hub found
hub 3-0:1.0: 8 ports detected
forcedeth.c: Reverse Engineered nForce ethernet driver. Version 0.30.
ACPI: PCI Interrupt Link [APCH] enabled at IRQ 20
ACPI: PCI interrupt 0000:00:05.0[A] -> GSI 20 (level, high) -> IRQ 20
PCI: Setting latency timer of device 0000:00:05.0 to 64
eth0: forcedeth.c: subsystem: 0147b:1c0b bound to 0000:00:05.0
eth0: no link during initialization.
ACPI: PCI Interrupt Link [APCJ] enabled at IRQ 23
ACPI: PCI interrupt 0000:00:06.0[A] -> GSI 23 (level, high) -> IRQ 23
PCI: Setting latency timer of device 0000:00:06.0 to 64
intel8x0_measure_ac97_clock: measured 49685 usecs
intel8x0: clocking to 46762
libata version 1.10 loaded.
sata_nv version 0.5
ACPI: PCI Interrupt Link [APSJ] enabled at IRQ 22
ACPI: PCI interrupt 0000:00:0a.0[A] -> GSI 22 (level, high) -> IRQ 22
PCI: Setting latency timer of device 0000:00:0a.0 to 64
ata1: SATA max UDMA/133 cmd 0x9F0 ctl 0xBF2 bmdma 0xF200 irq 22
ata2: SATA max UDMA/133 cmd 0x970 ctl 0xB72 bmdma 0xF208 irq 22
ata1: no device found (phy stat 00000000)
scsi0 : sata_nv
ata2: no device found (phy stat 00000000)
scsi1 : sata_nv
NET: Registered protocol family 17
eth0: link up.
cpci_hotplug: CompactPCI Hot Plug Core version: 0.2
pci_hotplug: PCI Hot Plug PCI Core version: 0.5
shpchp: shpc_init : shpc_cap_offset == 0
shpchp: shpc_init : shpc_cap_offset == 0
shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
Evaluate _OSC Set fails. Status = 0x0005
pciehp: add_host_bridge: status 5
pciehp: Fails to gain control of native hot-plug
Evaluate _OSC Set fails. Status = 0x0005
pciehp: add_host_bridge: status 5
pciehp: Fails to gain control of native hot-plug
via-rhine.c:v1.10-LK1.2.0-2.6 June-10-2004 Written by Donald Becker
ACPI: PCI Interrupt Link [APC2] enabled at IRQ 17
ACPI: PCI interrupt 0000:02:09.0[A] -> GSI 17 (level, low) -> IRQ 17
eth1: VIA Rhine III at 0xdf00, 00:0f:3d:f6:bd:f0, IRQ 17.
eth1: MII PHY found at address 1, status 0x7849 advertising 05e1 Link 0000.
ohci1394: $Rev: 1223 $ Ben Collins <bcollins@debian.org>
ACPI: PCI Interrupt Link [APC4] enabled at IRQ 19
ACPI: PCI interrupt 0000:02:0b.0[A] -> GSI 19 (level, low) -> IRQ 19
ohci1394: fw-host0: OHCI-1394 1.0 (PCI): IRQ=[19] MMIO=[fdefe000-fdefe7ff] Max Packet=[2048]
ieee1394: Host added: ID:BUS[0-00:1023] GUID[00508d0000ee6105]
NET: Registered protocol family 10
Disabled Privacy Extensions on device c02f0500(lo)
IPv6 over IPv4 tunneling driver
ACPI: Power Button (FF) [PWRF]
ibm_acpi: ec object not found
apm: BIOS version 1.2 Flags 0x07 (Driver version 1.16ac)
apm: overridden by ACPI.
powernow-k8: Found 1 AMD Athlon 64 / Opteron processors (version 1.00.09e)
powernow-k8: 0 : fid 0xe (2200 MHz), vid 0x2 (1500 mV)
powernow-k8: 1 : fid 0xc (2000 MHz), vid 0x6 (1400 mV)
powernow-k8: 2 : fid 0xa (1800 MHz), vid 0xa (1300 mV)
powernow-k8: 3 : fid 0x2 (1000 MHz), vid 0x12 (1100 mV)
cpu_init done, current fid 0xe, vid 0x2
eth0: no IPv6 routers present
est ce mieux ?
merci
Hors ligne
#22 Le 05/10/2005, à 11:22
- cep_
Re : probleme de montage partition ntfs
pas vraiment Le disque semble avoir un problème.
Problème de table de partitions ? problème avec le ntfs ?
Un mount depuis un terminal n'a certainement rien donné.
Tu devrais voire si ce disque peut être lu depuis un poste avec windows, ou le mettre en slave sur le câble.
#23 Le 05/10/2005, à 11:40
- jolatouf
Re : probleme de montage partition ntfs
ok merci pour tous
Hors ligne
#24 Le 05/10/2005, à 12:21
- cep_
Re : probleme de montage partition ntfs
De rien.
D'avance merci de bien vouloir informer des suites de ce problème.
Cordialement.
cep
#25 Le 05/10/2005, à 13:05
- Kagou
Re : probleme de montage partition ntfs
J'édite certain messages pour raccourcir la longueur.
Il vaut mieux utiliser la balise code que quote
Hors ligne