From owner-freebsd-usb@freebsd.org Mon Sep 17 11:18:37 2018 Return-Path: Delivered-To: freebsd-usb@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 738E51099A35 for ; Mon, 17 Sep 2018 11:18:37 +0000 (UTC) (envelope-from timon@timon.net.nz) Received: from flare.plasmahost.ru (static.155.109.4.46.clients.your-server.de [46.4.109.155]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id EF65C77EA3 for ; Mon, 17 Sep 2018 11:18:34 +0000 (UTC) (envelope-from timon@timon.net.nz) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=timon.net.nz; s=dkim; h=Content-Transfer-Encoding:Content-Type:In-Reply-To: MIME-Version:Date:Message-ID:From:References:To:Subject:Sender:Reply-To:Cc: Content-ID:Content-Description:Resent-Date:Resent-From:Resent-Sender: Resent-To:Resent-Cc:Resent-Message-ID:List-Id:List-Help:List-Unsubscribe: List-Subscribe:List-Post:List-Owner:List-Archive; bh=4dBQqdLWJNapwSLtrxBV2p6CTXlMsM4sqUqxnHI13Y8=; b=KjgUevb0aV3zJspm7heKa19JRL Ivo3kTRIQ1PFOctYZ9r+JfOr6MIjx7KjFCbLxrhMQMtuO96A4SYix867Td8Ayyzp4vMw0x0DCqzZn W1WsnGbn0aJ6mxZQKWkjp3b/QNSuAjblcTkckJ86tIsbpzJbiIan7run6oCg4D4K0vK8=; Received: from [185.6.245.156] (helo=t510.timon.net.nz) by flare.plasmahost.ru with esmtpsa (TLSv1.2:ECDHE-RSA-AES128-GCM-SHA256:128) (Exim 4.90_1 (FreeBSD)) (envelope-from ) id 1g1qwk-0004Bd-09 for freebsd-usb@freebsd.org; Mon, 17 Sep 2018 11:40:02 +0100 Subject: Re: usbconfig lack of device or permission To: freebsd-usb@freebsd.org References: <9a50285b-44a7-d8c2-3c42-ed282b0a408d@selasky.org> From: Aleksander Matveev Message-ID: <84369042-e671-4612-b0af-98ab084b428f@timon.net.nz> Date: Mon, 17 Sep 2018 13:40:22 +0300 User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:60.0) Gecko/20100101 Thunderbird/60.0 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 8bit Content-Language: en-US X-BeenThere: freebsd-usb@freebsd.org X-Mailman-Version: 2.1.27 Precedence: list List-Id: FreeBSD support for USB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 17 Sep 2018 11:18:37 -0000 On 17/09/18 1:07 PM, shreyank amartya wrote: > ls -l /dev/usb output: > amd@amd-sham:~ % ls -l /dev/usb > total 0 > crw------- 1 root operator 0x2c Sep 17 10:01 0.1.0 > crw------- 1 root operator 0x34 Sep 17 10:01 0.1.1 > crw------- 1 root operator 0x46 Sep 17 15:31 0.2.0 > crw------- 1 root operator 0x59 Sep 17 15:31 0.2.1 > crw------- 1 root operator 0x4b Sep 17 15:31 0.3.0 > crw------- 1 root operator 0x4f Sep 17 15:31 0.3.1 > crw------- 1 root operator 0x50 Sep 17 15:31 0.3.2 > crw------- 1 root operator 0x51 Sep 17 15:31 0.3.3 > crw------- 1 root operator 0x52 Sep 17 15:31 0.4.0 > crw------- 1 root operator 0x54 Sep 17 15:31 0.4.1 > crw------- 1 root operator 0x57 Sep 17 15:31 0.5.0 > crw------- 1 root operator 0x5e Sep 17 15:31 0.5.1 > crw------- 1 root operator 0x5f Sep 17 15:31 0.5.2 > crw------- 1 root operator 0x60 Sep 17 15:31 0.5.3   Only root has read access to your usb devices. Try executing chmod 0666 /dev/usb*   as root. To make changes "persistent", create file /etc/devfs.rules with [devfsrules_common=7] add path 'usb/*' mode 0666   and add devfs_system_ruleset="devfsrules_common"   into your /etc/rc.conf -- Aleksandr Matveev