Custom Query (230 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (37 - 39 of 230)

3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
Ticket Owner Reporter Resolution Summary
#3 Antoine Martin Antoine Martin fixed shadow mode for VNC and NX sessions using nxagent -S
Description

The new connection is like a brand new session (re-use all the attributes), but it needs to hang off the one it is shadowing

#6 Antoine Martin Antoine Martin fixed avoid network sound on slow links
Description

When connecting to distant servers over a slow connection, just don't bother trying to tunnel the sound with PA, it will not work.

#7 Antoine Martin Antoine Martin fixed SMB support: must tell client or server what/how to mount stuff
Description

Windows clients can't mount a remote tunneled 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)
We need to find out the list of shares (pysamba?) and allow the user to configure what is mounted (read-only, password,...)

The actual mounting is the easy part:

mount.cifs //127.0.0.1/public ./guest -o port=21062 -o guest


But we have to make sure we always unmount stuff when the server goes down... Problem is that some files might still be open!

We should also deal with non-tunneled setups nicely: simply connect to SMB on client or server directly. This weighs in favour of supporting client-mounts-server option.


We can figure out what shares are available with (needs a bit of magic parsing... sigh):

smbclient -U guest -N -L localhost

or

smbclient -A /path/to/auth-file -L localhost

pysamba does not seem to help here, unless I am missing something.

See bug #91 for the next step.

3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
Note: See TracQuery for help on using queries.