Changes between Initial Version and Version 2 of Ticket #7


Ignore:
Timestamp:
10/25/09 10:19:51 (14 years ago)
Author:
Antoine Martin
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #7

    • Property Milestone changed from 0.9 to 0.10
    • Property Summary changed from re-instate param_config to command line so we can open config files to samba support: must tell client or server what/how to mount stuff
  • Ticket #7 – Description

    initial v2  
    1 This makes it much easier for people to connect to remote servers: just send them a config file. Double-click on it. Done!
     1Windows clients can't mount the server since we can't tell them what port to use (sigh). So maybe we should always do a reverse mount? (server mounts shares from the client)[[BR]]
     2We need to find out the list of shares (pysamba?) and allow the user to configure what is mounted (read-only, password,...)[[BR]]
     3[[BR]]
     4The actual mounting is the easy part:
     5
     6{{{
     7mount.cifs //127.0.0.1/public ./guest -o port=21062 -o guest
     8}}}
     9[[BR]]
     10But we have to make sure we always unmount stuff when the server goes down... Problem is that some files might still be open!