Knoppix: Kann FP nicht mounten!

  • #1
J

Jake666

Guest
Hallo!

Ich würde gerne auf mein ntfs-dateisystem zugreifen (lesen und schreiben!), da mein windoofxp pro nicht mehr booten mag, also probierte ich die wundercd knoppix aus...
funkt gleich alles gut, kann aber keine festplatten mounten! Weis jemand wie das geht hab schon mit captive microsoft windows drivers acqire aber da steht :

You can download the best available version of needed drivers from Microsoft. They can be found in Microsoft Windows XP Service Pack 1 Checked Build.
URL:
Legal: In some countries you need to have valid Microsoft Windows XP license to use it.
It is needed to download approx 29MB of data right now out of the 144MB file size. You can also download the file separately and load it in the previous screen if some problems occur.

ok download ich - aber bei 90% kommt eine fehlermeldung: Error scanning sub-tree of file://ramdisk/home/knoppix/tmp/xpsp1a_en_x86_CHK.exe: Not a directory

Wie kann ich auf die NTFS-Partitionen zugreifen bzw die festplatten mounten? bin recht unerfahren in linux :-[
hab 2 ide festplatten drin von maxtor(je 80GB) in raid 0 verbund, und dann in 3 partitionen aufgeteilt (C,D,E) und alle in ntfs :'(

danke im vorraus
lg jake666!
 
  • #2
Hi,

als root auf die Konsole: sudo su
dann mal eingeben: df (listet die vorhanden Dateisysteme auf)
Wenn das Windows C als hda1 bezeichnet wird, lautet der Befehl:
mount /dev/hda1 /windows/C
Sollte Windows C anders lauten, entsprechend eingeben.

Mit man mount kann man alle Optionen ansehen.
 
  • #3
Hallo,

- Der Checked-Build ist NUR auf englisch verfügbar (IMHO, ich hab zumindest keine deutsche Version gefunden)
- keine mir bekannte Linux-Distribution darf einen Kernel mit NTFS Write ausliefern. Alle Kernel sind so erstellt, das nur Read möglich ist. Um schreibend auf NTFS Partitionen zugreifen zu können, musst du einen neuen Kernel erstellen.
- Partitionen mounten mit: mount -t ntfs /dev/hdx /mnt (wobei hdX davon abhängt, welche Partition deine Windowspartition ist - 1 Festplatte 1 Partition: hda1, 1 Festplatte 2 Partition: hda2... usw.)

Gruß
Sven
 
  • #4
Hallo!

@Clio:
seh leider kein hda1 usw

knoppix@ttyp0[knoppix]$ sudo su
root@ttyp0[knoppix]# df
Filesystem 1K-blocks Used Available Use% Mounted on
/dev/root 2971 1964 1007 67% /
/dev/cdrom 689312 689312 0 100% /cdrom
/dev/cloop 1552800 1552800 0 100% /KNOPPIX
/ramdisk 405636 9308 396328 3% /ramdisk
root@ttyp0[knoppix]#

@RavensMetaller: Wie finde ich herraus welche partition meine Windowspartition ist bzw ich glaub die existieren gar nicht im knoppix?

P.S.: Ich benutze die bitdefenderlive version

lg jake666!
 
  • #5
Hi,

poste mal die Ausgabe von cat /etc/fstab bzw. cat /proc/partitions
Dann sehn' wir, ob Knoppix deine Festplatte gefunden hat.

Gruß
Sven
 
  • #6
Hallo!

root@ttyp0[knoppix]# cat /etc/fstab
/proc /proc proc defaults 0 0
/sys /sys sysfs noauto 0 0
/dev/pts /dev/pts devpts mode=0622 0 0
/dev/fd0 /mnt/auto/floppy auto user,noauto,exec,umask=000 0 0
/dev/cdrom /mnt/auto/cdrom auto user,noauto,exec,ro 0 0
/dev/cdrom1 /mnt/auto/cdrom1 auto users,noauto,exec,ro 0 0
# Added by KNOPPIX
/dev/hde1 /mnt/hde1 auto noauto,users,exec 0 0
# Added by KNOPPIX
/dev/hdg /mnt/hdg auto noauto,users,exec 0 0
root@ttyp0[knoppix]# cat /proc/partitions
major minor #blocks name

114 0 156354816 ataraid/d0
114 1 10241406 ataraid/d0p1
114 2 1 ataraid/d0p2
114 5 81923436 ataraid/d0p5
114 6 64179643 ataraid/d0p6
34 0 78177792 hdg
33 0 78177792 hde
33 1 10241406 hde1
33 2 1 hde2

wie kann ich jetzt meine festplatte mounten?

lg jake666
 
  • #7
jake666 schrieb:
/dev/hde1 /mnt/hde1 auto noauto,users,exec 0 0

Code:
mount -t ntfs -o user /dev/hde1 /mnt/hde1

Normalerweise müsste das aber Knoppix schon für dich übernommen haben ;)

Gruß
Sven
 
  • #8
Hallo!

@RavensMetaller: Danke erstmal für deine Hilfe!

root@ttyp0[knoppix]# mount -t ntfs -o user /dev/hde1 /mnt/hde1
mount: wrong fs type, bad option, bad superblock on /dev/hde1,
or too many mounted file systems
root@ttyp0[knoppix]#

irgendwie funkt das nicht...

lg Jake666
 
  • #9
Jake666 schrieb:
Hallo!

@RavensMetaller: Danke erstmal für deine Hilfe!

root@ttyp0[knoppix]# mount -t ntfs -o user /dev/hde1 /mnt/hde1
mount: wrong fs type, bad option, bad superblock on /dev/hde1,
       or too many mounted file systems
root@ttyp0[knoppix]#

irgendwie funkt das nicht...

lg Jake666

Hallo,

Probier zuerst das NTFS Modul zu laden

modprobe ntfs

Gruß
Sven
 
  • #10
Hallo!

root@ttyp0[knoppix]# modprobe ntfs
root@ttyp0[knoppix]# mount -t ntfs -o user /dev/hde1 /mnt/hde1
mount: wrong fs type, bad option, bad superblock on /dev/hde1,
or too many mounted file systems
 
  • #11
Achja,

ntfs modul ist geladen(glaub ich):
root@ttyp0[knoppix]# lsmod |grep ntfs
ntfs 50944 0 (autoclean)

ich weis nicht wie ich die verdammte ntfs-partitionen mounten kann. immer derselbe fehler:
mount: wrong fs type, bad option, bad superblock on /dev/hde1,
or too many mounted file system

lg Jake666!
 
  • #12
hast du überhaupt schonma in das Verzeichnis reingeschaut?

ls -la /mnt/hde1

???
 
  • #13
hallo alle zusammen, ich konnte aus dem was ihr geschrieben habt nicht viel entnehmen (bin absoluter Anfänger).
Könnte mir mal einer eine wirklich einfache Erklärung schreiben wie ich meine Festplatte mounten kann?
Wäre echt nett....
Vielen Dank Cajo
 
  • #14
Hallo,

da deine Festplatten im RAID Verbund sind solltest du auch versuchen diese zu mounten.

der Mountpunkt /mnt/d0p1
muß existieren
dann mit
mount -t ntfs /dev/ataraid/d0p1 /mnt/d0p1
oder eben d0p5 oder 6

Wobei
ataraid/d0
der RAID-Verbund
erste Primäre Partititon des RAID 114 1 10241406 ataraid/d0p1
zweite/erweiterte Partition des RAID 114 2 1 ataraid/d0p2
erste logische in der erweiterten 114 5 81923436 ataraid/d0p5
zweite logische in der erweiterten 114 6 64179643 ataraid/d0p6
 
Thema:

Knoppix: Kann FP nicht mounten!

ANGEBOTE & SPONSOREN

Statistik des Forums

Themen
113.840
Beiträge
707.963
Mitglieder
51.494
Neuestes Mitglied
Flensburg45
Oben