From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.33) id 1Cc9wv-0006FA-Ux for qemu-devel@nongnu.org; Wed, 08 Dec 2004 17:06:18 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.33) id 1Cc9wv-0006Ec-2b for qemu-devel@nongnu.org; Wed, 08 Dec 2004 17:06:17 -0500 Received: from [129.104.30.34] (helo=mx1.polytechnique.org) by monty-python.gnu.org with esmtp (Exim 4.34) id 1Cc9n0-00043Y-0c for qemu-devel@nongnu.org; Wed, 08 Dec 2004 16:56:02 -0500 Received: from localhost (localhost [127.0.0.1]) by djali.polytechnique.org (Postfix) with ESMTP id 236C5331BD for ; Wed, 8 Dec 2004 22:56:00 +0100 (CET) Received: from djali.polytechnique.org ([127.0.0.1]) by localhost (localhost [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 07453-09 for ; Wed, 8 Dec 2004 22:56:00 +0100 (CET) Received: from [84.99.204.54] (unknown [84.99.204.54]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by ssl.polytechnique.org (Postfix) with ESMTP id DD060331AD for ; Wed, 8 Dec 2004 22:55:59 +0100 (CET) Message-ID: <41B77888.5050009@bellard.org> Date: Wed, 08 Dec 2004 22:56:24 +0100 From: Fabrice Bellard MIME-Version: 1.0 Subject: Re: [Qemu-devel] SAMBA support in QEMU References: <413BA018.60601@bellard.org> <41B5C20A.6010807@kadu.net> <41B6C8D9.4090400@kadu.net> <41B6F539.5040703@kadu.net> <20041208135617.20fd5862.Jens.Arm@gmx.de> <20041208140409.11823050.Jens.Arm@gmx.de> In-Reply-To: <20041208140409.11823050.Jens.Arm@gmx.de> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Reply-To: qemu-devel@nongnu.org List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Jens Arm wrote: >>>>I can run it as root only. What files must be writable for user to run >>>>smbd via qemu? >>> >>>Should "ps" command show me smbd process when I'm using "qemu -smb"? >> >>yes > > > pstree shows for me: > > qemu---2*[smbd] > > The 2 is because I have rebooted the OS in Qemu > Fabrice is it OK that then there are two smbd ? No, but this is a known bug: when the socket connection to smbd is closed, the process is not killed. It could be a performance issue, but it does not prevent smbd from working correctly. Fabrice.