Hi! discsox schrieb: > I have not been able to find a way to connect to regular windows / samba > shares in OTC. > Can anybody let me know how to access a simple network drive in the OTC > client.
Well, it is not an easy thing. Mounting has to be done as root user so it should be done either during boot or during logon while the scripts are still running under the root account. A global mount that is permantent, the same for all users and does not have to have a valid user would be the easiest to achieve. It would be sufficient to make a custom script under $installpath/openthinclient/server/default/data/nfs Create a "custom" folder there and put a bash script (something like that, not tested though) there: #!/bin/bash mkdir /mnt/share mount -t cifs -o username=dummy,password=xyz //$server/$share /mnt/share That would mount the share during boot using the user account for dummy on the server. But, when you need those share to be mounted on a per user basis using the credentials of that user, you will need a more complex mechanism. > Any help is greatly appreciated. That's all I can offer right now. -- Bye, Tobias Abt levigo systems gmbh ----------- ein unternehmen der levigo gruppe Max-Eyth-Strasse 30 Telefon: 07031 / 4161-10 D-71088 Holzgerlingen Telefax: 07031 / 4161-11 Geschäftsführer: Oliver Bausch http://systems.levigo.de/ Registergericht: Stuttgart HRB 245 180 USt-ID: DE813226078 ------------------------------------------------------------------------------ Crystal Reports - New Free Runtime and 30 Day Trial Check out the new simplified licensing option that enables unlimited royalty-free distribution of the report engine for externally facing server and web deployment. http://p.sf.net/sfu/businessobjects _______________________________________________ The Open Source Thin Client Solution http://openthinclient.org [email protected] https://lists.sourceforge.net/lists/listinfo/openthinclient-user
