On Wed, 23 Mar 2016 21:26:09 -0500, Wildman <
best...@yahoo.com> wrote for
message
06adnbvMouHczW7L...@giganews.com
> To mount the iso:
>
> sudo fuseiso /path/to/dvd.iso /mount/point -o allow_other
>
> To unmount the iso:
>
> sudo umount /mount/point
>
> If fuseiso is not install:
>
> sudo apt-get install fuseiso
Thanks for the pointer to fuseiso.
I didn't have fuseiso installed so I installed it:
$ sudo apt-get fuseiso
Then I made a mount point:
$ mkdir /tmp/mount
Then I mounted the ISO file:
$ sudo fuseiso /media/usr/FF884A33816B3AFF/movie.iso /tmp/mount -o allow_other
$ cd /tmp/mount; ls
AUDIO_TS VIDEO_TS
$ vlc
VLC: Media > Open Disc > Disc > Browse > /tmp/mount/VIDEO_TS > OK > Play
And the movie played!
Thanks for the simple solution!