in reply to Re^4: Perl script to mount iso file
in thread Perl script to mount iso file

mount /tmp/vdrv0iso or
mount /tmp/vdrv0

should both work on linux at least. In any case you probably must specify the device or the entry point as it's mentioned in your /etc/fstab.

Replies are listed 'Best First'.
Re^6: Perl script to mount iso file
by BerSerK (Initiate) on Dec 17, 2007 at 20:48 UTC
    Ok, I managed to get it to work. I put my symlink in /home/user/public_html/tmp/ I modified my /etc/fstab with /home/user/public_html/tmp/symlink /media/vdrv0 iso9660 user,loop 0 0 Then my perl script manage the umounting, mounting and symlinking. Thanks a lot, your help is really appreciated!