View previous topic :: View next topic |
Author |
Message |
saxtro Apprentice
Joined: 28 Nov 2004 Posts: 153
|
Posted: Fri Apr 08, 2005 2:46 pm Post subject: loop Bug? [Risolto] |
|
|
ciao a tutti, oggi volevo montare una immagine iso ed ho avuto una sorpresina....
Code: |
bash-2.05b# mount -o loop /mnt/fat32/sparire/image.iso /mnt/disco
ioctl: LOOP_CLR_FD: Device or resource busy
mount: you must specify the filesystem type
bash-2.05b# lsof /dev/loop
bash-2.05b# lsof /dev/loop1
bash-2.05b# lsof /dev/loop2
bash-2.05b# lsof /dev/loop3
bash-2.05b# lsof /dev/loop4
bash-2.05b# lsof /dev/loop5
bash-2.05b# lsof /dev/loop6
bash-2.05b# lsof /dev/loop7
bash-2.05b# lsof /dev/psaux
COMMAND PID USER FD TYPE DEVICE SIZE NODE NAME
X 9292 root 6u CHR 10,1 658 /dev/misc/psaux
|
avete consigli?
Last edited by saxtro on Fri Apr 08, 2005 4:10 pm; edited 1 time in total |
|
Back to top |
|
|
ErniBrown Apprentice
Joined: 19 Jan 2005 Posts: 276 Location: Seconda stella a destra e poi dritto fino al mattino...
|
Posted: Fri Apr 08, 2005 2:50 pm Post subject: |
|
|
forse dico una ca****a, però mi sembra che ci sia qualcosa che non va nel comando... prova a dare un occhiata al man di mount, oppure da qualche parte nel forum... secondo me loop va messo in fondo _________________ There are 10 kind of people:
those who understand binaries and
those who don't. |
|
Back to top |
|
|
saxtro Apprentice
Joined: 28 Nov 2004 Posts: 153
|
Posted: Fri Apr 08, 2005 2:56 pm Post subject: |
|
|
Code: |
9499 root 0 -20 0 0 0 S 0.0 0.0 0:00.08 loop0
9563 root 0 -20 0 0 0 S 0.0 0.0 0:00.00 loop1
9570 root 0 -20 0 0 0 S 0.0 0.0 0:00.00 loop2
9575 root 0 -20 0 0 0 S 0.0 0.0 0:00.00 loop3
|
non so se può essere di aiuto ma per ogni tentativo mi trovo un loop in top....
@ErniBrown
si infatti lo sapevo infatti ho incollato il secondo tentativo con loop alla fine, ad onor di cronaca
Code: |
bash-2.05b# mount /mnt/fat32/sparire/image.iso /mnt/disco -o loop
ioctl: LOOP_CLR_FD: Device or resource busy
mount: you must specify the filesystem type
bash-2.05b#
|
|
|
Back to top |
|
|
randomaze Bodhisattva
Joined: 21 Oct 2003 Posts: 9985
|
Posted: Fri Apr 08, 2005 2:57 pm Post subject: |
|
|
saxtro wrote: | mount: you must specify the filesystem type |
Specificalo: "-t iso9660" _________________ Ciao da me! |
|
Back to top |
|
|
saxtro Apprentice
Joined: 28 Nov 2004 Posts: 153
|
Posted: Fri Apr 08, 2005 3:10 pm Post subject: |
|
|
Code: |
bash-2.05b# mount -t iso9660 /mnt/fat32/sparire/image.iso /mnt/disco -o loop
mount: wrong fs type, bad option, bad superblock on /dev/loop6,
or too many mounted file systems
(could this be the IDE device where you in fact use
ide-scsi so that sr0 or sda or so is needed?)
bash-2.05b# modprobe sg
bash-2.05b# mount -t iso9660 /mnt/fat32/sparire/image.iso /mnt/disco -o loop
mount: wrong fs type, bad option, bad superblock on /dev/loop6,
or too many mounted file systems
(could this be the IDE device where you in fact use
ide-scsi so that sr0 or sda or so is needed?)
bash-2.05b# mount -t auto /mnt/fat32/sparire/image.iso /mnt/disco -o loop
ioctl: LOOP_CLR_FD: Device or resource busy
mount: you must specify the filesystem type
bash-2.05b#
|
;(
edit:
dopo 8 tentativi...
Code: |
bash-2.05b# mount /mnt/fat32/sparire/image.iso /mnt/disco -o loop
mount: could not find any free loop device
|
non è un problema grave (almeno in questo caso) perchè mi basta masterizzare la iso e montarla su cd, però non capisco perchè per ogni tentativo mi blocchi un /dev/loopX visto che risultano occupate già da prima
edit2:
non mi picchiate ma la soluzione era la più facile e ovvia e sarebbe stata la prima da provare.......
la iso non funzionava |
|
Back to top |
|
|
|