Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

You can also type directly in the File name input of the File Browser:

Code Block
langjavascript
\\renderbox

and your mytextures folder will appear in the list of shared folders. In this case it is not necessary to also move your textures to the same shared folder as the MXS.

...

Now, you can mount the shared resource \\MyServer\Share1 in the folder /MyServer/Share1 (pay attention to the particular back and forward slashes) using this command as root:

Code Block
langjavascript

mount \-t cifs //ip-of-the-server-MyServer/Share1 /MyServer/Share1 \-ousername=an-authorized-user,password=the-appropriate-password

If you have smbfs module loaded in your kernel, then you can do:

Code Block
langjavascript

mount \-t smbfs //Myserver/Share1 /Myserver/Share1

For example: if the IP of MyServer was 10.10.10.1, then:

Code Block
langjavascript

mount \-t cifs //10.10.10.1/Share1 /MyServer/Share1

This is a tricky hack, and you've got to adjust the write and read permissions, and be root to be able to mount the shared folders, but it works and can sometimes be the easiest solution.

...