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