Hello
I want occasionally connect a linux Notebook to the LAN of our school.
The server is a linux-server with samba for all the Windows clients within
the LAN, where each user has its own systemwide account.
When you have a windows client which is not part of the domain, you are able
to access to the server simply by using the url "\\server\share". Then you
are asked for authentication.
This behaviour is exactly what I want. But I expect it from a Linux Client.
And now the things get difficult.
I can use the url: "smb://user(

assword)@server/share" with konqueror or
dolphin which would be a very easy solution, but unfortunately, if I open a
document, I work only with a local copy in /var/tmp/run/.... and whether
changes are transmitted to the server depends on the application I use.
Openoffice only modifies the local copy, the original file on the server
remains unchanged :-)
The same happens when using "fish://server/path_to_directory".
So I have to mount the remote filesystem either via NFS or via
smbmount. NFS will not work (as far as I know) because of the user-ids.
(there are about 600 different users)
The only way I see is to use a script which asks the user for authentication
data and then smb-mounts //server/.
Are there other ways?