PDA

Archiv verlassen und diese Seite im Standarddesign anzeigen : Warum kann ich die ISO nicht mounten?



PatrickBuhr
23.01.05, 21:46
Hi,

folgendes Problem:

linux:/home/pabu # mount -o /home/pabu/uplink-linux.iso /mnt/iso
mount: Konnte /mnt/iso nicht in /etc/fstab oder /etc/mtab finden
linux:/home/pabu #

Kann ich das auch einfach auf was mounten was in der fstab steht?
Wenn nein, hat mal jemand ein Beispiel wie ich es anstelle?
Und...ich kenne man fstab....aber bekomm es trotzdem nicht hin :(


Patrick

carnil
23.01.05, 21:50
Aus der manpage zu mount gibt es ein Beispiel: Hier die Syntax des Beispiels:


mount /tmp/fdimage /mnt -t msdos -o loop=/dev/loop3,blocksize=1024

In deinem Fall also etwas in der Art:


mount /pfad/zum/iso /mnt/iso -o loop=dev/loop3

wobei der Mountpoint /mnt/iso existieren muss.

hth,

MfG carnil

Tomek
23.01.05, 21:51
Richtig geht es so:

mount -o loop /home/pabu/uplink-linux.iso /mnt/iso

PatrickBuhr
23.01.05, 21:56
Mh, nun hab ich aber das Problem, dass /mnt/iso nicht exestiert.
Wie leg ich den an?

EDIT:

Hab ihn angelegt aber nun das, was mir gar nichts sagt:

linux:/home/pabu # mount -o loop /home/pabu/uplink-linux.iso /mnt/iso
linux:/home/pabu # cp /mnt/iso /home/pabu/up
cp: Verzeichnis „/mnt/iso“ ausgelassen


Gruß
Patrick

towo2099
23.01.05, 21:59
Mh, nun hab ich aber das Problem, dass /mnt/iso nicht exestiert.
Wie leg ich den an?

mkdir /mnt/iso

m0L
23.01.05, 22:01
probiers mal mit cp -R ...

~eli

PatrickBuhr
23.01.05, 22:03
THX! mit -R gehts nun.

Gruß
Patrick