festplatten problm 7025

    • festplatten problm 7025

      ich habe scho einmal versucht mein problem mit der festplatte zu erläutern aber ich mich nichrt richtig ausgedrückt,meine festplatte ob usb oder intern wird erkannt,ie lässt sich nicht initallisieen es kommt die meldund (mount failed)
      ich bitte um hilfe was mache ich falsch bzw.was muß ich dateimäßig ändern.
    • Benutzt du cf zum booten ?
      Dann ist dein mount-punkt bereits eingehängt /hdd
      Irgendwo gibt es eine Einstellung wo cf als Festplatten-Ersatz gemountet wird.
      Schau mal die Menüs durch.
    • festplattenproblem

      ich hatte auch das problem.ein programmierer erklärte .das programm paragon runterladen(demo),die partition löschen wichtig,nicht formantiren nur l ö s c h e n,einbauen uned initialisiren alles läuft wieder
    • Telnet to your box and login as root.
      Give next command

      Quellcode

      1. fdisk -l

      Should give an output like this

      Quellcode

      1. Disk /dev/hdc: 4009 MB, 4009549824 bytes
      2. 128 heads, 63 sectors/track, 971 cylinders
      3. Units = cylinders of 8064 * 512 = 4128768 bytes
      4. Device Boot Start End Blocks Id System
      5. /dev/hdc1 1 971 3915040+ 83 Linux
      6. Disk /dev/hda: 120.0 GB, 120034123776 bytes
      7. 255 heads, 63 sectors/track, 14593 cylinders
      8. Units = cylinders of 16065 * 512 = 8225280 bytes
      9. Device Boot Start End Blocks Id System
      10. /dev/hda1 1 14593 117218272 83 Linux
      Alles anzeigen

      With above example you can see that i have a HD and a CF installed and seen by the box.

      To get a view of your fstab, all auto mounted drives enter next command

      Quellcode

      1. cat /etc/fstab

      Your output could look like this

      Quellcode

      1. rootfs / auto defaults 1 1
      2. proc /proc proc defaults 0 0
      3. devpts /dev/pts devpts mode=0620,gid=5 0 0
      4. usbdevfs /proc/bus/usb usbfs defaults 0 0
      5. /dev/root /boot jffs2 ro 0 0
      6. tmpfs /var tmpfs defaults 0 0
      7. tmpfs /tmp tmpfs defaults 0 0

      Possible cause of drive with mount problems give the command

      Quellcode

      1. mount -a

      This wil perfrom a mount on all items displayed in the fstab file.