From mint-bounce@lists.fishpool.fi Sat Jan 24 05:23:14 2009 X-Authenticated: #3273601 X-Provags-ID: V01U2FsdGVkX184cENLj0U4pMFa8lhUgrtkFi6iCYwEeJoSih+Nk1 4ZhDhdv6nqpi/X To: From: Lars Schmidbauer Subject: [MiNT] NFS server X-Mailer: MyMAIL Rev:1.91.13668 (Atari/(STiK/STinG/GlueSTiK)) X-Hardware: Atari Falcon/CT60 MIME-Version: 1.0 Date: Fri, 24 Jan 2009 10:50:12 +0200 (MET) Content-Type: text/plain; charset="iso-8859-2" X-Priority: 3 X-MSMail-Priority: Normal Message-Id: <000db788.015f429a9864@mail.gmx.net> X-Y-GMX-Trusted: 0 X-FuHaFi: 0.51 X-ecartis-version: Ecartis v1.0.0 Sender: mint-bounce@lists.fishpool.fi Errors-to: mint-bounce@lists.fishpool.fi X-original-sender: latzmaster@gmx.de Precedence: bulk List-help: List-unsubscribe: List-Id: X-List-ID: List-subscribe: List-owner: List-post: Content-Transfer-Encoding: 8bit X-MIME-Autoconverted: from quoted-printable to 8bit by mail.sparemint.org id n0OAN9I6015433 --EasyMinT 1.70, nfs-server-2.2beta47-2 Hello, once again i tried to install a NFS between my beloved Falcon/CT60 with MinT/XaAES/TeraDesk as NFS-server, an Ubuntu-Linux PC and my No.2-Falcon as clients. Connection established, the 'shared' directory (see /etc/exports below) is displayed correct with 'showmount -e ' on both clients, but there are two problems when copying files: -ID-mapping (squashing): If i copy a file from PC -> Server, the group-ID is mapped correct to '500' but the user-ID is set to '0' (root) instead of '301' (see /etc/exports). When copying files from No.2-Falcon -> Server, both UID and GID are mapped correct!!? Perhaps the server don't know about UIDs >= 1000 (on PC i'm logged in as a 'normal user', UID=1000 GID=1000; not as 'root', so option 'no_root_squash' isn't useful here). -Copying large files: There's no problem with 'downloading' large files from server to both clients, but when i try to copy a large file from any client to server, copy-operation aborts after ~10-20 seconds (no matter if copying was started on desktop or in bash; bash reports 'write failure'). I tried different values for 'rsize' and 'wsize' in /etc/fstab on PC (and for the fourth entry in /etc/fstab on No.2-Falcon) with always same result. What's going wrong here? Did i make a mistake? What are the best settings for 'rsize' and 'wsize'? Please help!! Regards, Lars ----------- # /etc/exports on Falcon/CT60 # # for PC: /test 192.168.1.3(rw,all_squash,anonuid=301,anongid=500) # and for No.2-Falcon: /test 192.168.1.2(rw,all_squash,anonuid=301,anongid=500) # ----------- ----------- # /etc/fstab on Ubuntu PC # 192.168.1.1:/test /home/schatznfs nfs rw,user,noauto,nosuid,rsize=1024,wsize=1024 0 0 # ----------- ----------- # /etc/fstab on No.2-Falcon # 192.168.1.1:/test /home/schatznfs nfs 1024 10 # -----------