I have a simple, possibly dumb, question on namespaces/import/mount etc
 
I've got a cpu/auth/file server box with a CD-ROM drive (/dev/sdC1) and a terminal box.
 
I'd like to make the files on the CD-ROM drive visible on the terminal
 
I achieved this using a rather convoluted set of commands and wondered, is there a simpler way to do this?
 
 
On the server I did
 
    9660srv -f /dev/sdC1/data
 
and on the terminal:
 
    import bootes / /tmp/mnt
 
    mount /tmp/mnt/srv/9660 /tmp/mnt2
 
and that works. Is there a simpler way to do this that I'm missing?
 
Thanks