D'un oui ou d'un non

Letinch Messages postés 458 Statut Membre -  
mamiemando Messages postés 33228 Date d'inscription   Statut Modérateur Dernière intervention   -
Bonjour les Nuxs

Pour un jeuns comme moi la question se pose : dois-je considérer que le journal système reporte ici toutes les partitions présentes et montées sur le système ?

Sep 15 15:37:27 localhost diskdrake[7431]: found mounted partition on hda7 with
Sep 15 15:37:27 localhost diskdrake[7431]: found mounted partition on hda6 with /
Sep 15 15:37:27 localhost diskdrake[7431]: found mounted partition on none with /proc
Sep 15 15:37:27 localhost diskdrake[7431]: found mounted partition on hda8 with /home
Sep 15 15:37:27 localhost diskdrake[7431]: found mounted partition on hda5 with /media/hd2
Sep 15 15:37:27 localhost diskdrake[7431]: found mounted partition on none with /proc/sys/fs/binfmt_misc
Sep 15 15:37:27 localhost diskdrake[7431]: found mounted partition on rootfs with /
Sep 15 15:37:27 localhost diskdrake[7431]: found mounted partition on /dev with /dev
Sep 15 15:37:27 localhost diskdrake[7431]: found mounted partition on root with /
Sep 15 15:37:27 localhost diskdrake[7431]: found mounted partition on /proc with /proc
Sep 15 15:37:27 localhost diskdrake[7431]: found mounted partition on /sys with /sys
Sep 15 15:37:27 localhost diskdrake[7431]: found mounted partition on none with /dev/pts
Sep 15 15:37:27 localhost diskdrake[7431]: found mounted partition on none with /dev/shm
Sep 15 15:37:27 localhost diskdrake[7431]: found mounted partition on none with /proc/bus/usb
Sep 15 15:37:27 localhost diskdrake[7431]: found mounted partition on hda8 with /home
Sep 15 15:37:27 localhost diskdrake[7431]: found mounted partition on hda5 with /media/hd2
Sep 15 15:37:27 localhost diskdrake[7431]: found mounted partition on none with /proc/sys/fs/binfmt_misc
Configuration: Linux Mandriva
Firefox 2.0.0.16

1 réponse

  1. mamiemando Messages postés 33228 Date d'inscription   Statut Modérateur Dernière intervention   7 944
     
    Pas vraiment en fait les partitions d'un disque ont un nom qui commence par /dev/sd* ou /dev/hd*. Dans l'exemple qui suit seules les lignes en gras correspondent donc à des partitions de disque dur à proprement parler :
    (mando@aldur) (~) $ mount
    /dev/hda2 on / type ext3 (rw,errors=remount-ro)
    tmpfs on /lib/init/rw type tmpfs (rw,nosuid,mode=0755)
    proc on /proc type proc (rw,noexec,nosuid,nodev)
    sysfs on /sys type sysfs (rw,noexec,nosuid,nodev)
    procbususb on /proc/bus/usb type usbfs (rw)
    udev on /dev type tmpfs (rw,mode=0755)
    tmpfs on /dev/shm type tmpfs (rw,nosuid,nodev)
    devpts on /dev/pts type devpts (rw,noexec,nosuid,gid=5,mode=620)
    /dev/hda1 on /mnt/ntfs type ntfs (rw,nosuid,nodev,uid=1000)
    /dev/hdb1 on /mnt/vfat type vfat (rw,nosuid,nodev,uid=1000,quiet)
    /mnt/vfat/ftp on /home/ftp type none (rw,bind)

    En plus il manque la swap (sur /dev/hda3 chez moi). En fait si tu veux voir tes partitions :
    (root@aldur) (~) # fdisk -l
    
    Disk /dev/hda: 40.0 GB, 40020664320 bytes
    255 heads, 63 sectors/track, 4865 cylinders
    Units = cylinders of 16065 * 512 = 8225280 bytes
    Disk identifier: 0x802b81ca
    
       Device Boot      Start         End      Blocks   Id  System
    /dev/hda1   *           1        1275    10241406    7  HPFS/NTFS
    /dev/hda2            1276        4740    27832612+  83  Linux
    /dev/hda3            4741        4865     1004062+  82  Linux swap / Solaris
    
    Disk /dev/hdb: 82.3 GB, 82348277760 bytes
    255 heads, 63 sectors/track, 10011 cylinders
    Units = cylinders of 16065 * 512 = 8225280 bytes
    Disk identifier: 0x4707841a
    
       Device Boot      Start         End      Blocks   Id  System
    /dev/hdb1   *           1       10011    80413326    b  W95 FAT32
    

    Bonne chance
    0