<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[OnionOS user]]></title><description><![CDATA[<p dir="auto">Hi Community,</p>
<p dir="auto">Has anybody figured out if it is possible to grand the access to the OnionOS to another user (other than root)?</p>
<p dir="auto">Thanks,</p>
<p dir="auto">MK</p>
]]></description><link>http://community.onion.io/topic/5084/onionos-user</link><generator>RSS for Node</generator><lastBuildDate>Fri, 17 Apr 2026 02:57:07 GMT</lastBuildDate><atom:link href="http://community.onion.io/topic/5084.rss" rel="self" type="application/rss+xml"/><pubDate>Wed, 09 Oct 2024 13:45:32 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to OnionOS user on Wed, 09 Oct 2024 13:45:32 GMT]]></title><description><![CDATA[<p dir="auto">Hi Community,</p>
<p dir="auto">Has anybody figured out if it is possible to grand the access to the OnionOS to another user (other than root)?</p>
<p dir="auto">Thanks,</p>
<p dir="auto">MK</p>
]]></description><link>http://community.onion.io/post/26121</link><guid isPermaLink="true">http://community.onion.io/post/26121</guid><dc:creator><![CDATA[MK]]></dc:creator><pubDate>Wed, 09 Oct 2024 13:45:32 GMT</pubDate></item><item><title><![CDATA[Reply to OnionOS user on Sun, 13 Oct 2024 16:00:00 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="http://community.onion.io/uid/9007">@MK</a> OnionOS / OpenWrt is a single user system, you can install a package to permit creation of users ad groups. So then it comes down to the permissions you create on whatever package you want to use. I haven't used the OnionOS stuff for a few years but as I recall it uses the the ubus acls ( <a class="plugin-mentions-user plugin-mentions-a" href="http://community.onion.io/uid/95">@Lazar-Demin</a> might correct me ). I use it with mod-ubus, here are my steps to create a user named admin:</p>
<pre><code># Setting up for mod-ubus (php configuration)
cd /usr/share/rpcd/acl.d/
vi adminuser.json

{
        "adminuser": {
                "description": "Administrative user access role",
                "read": {
                        "ubus": {
                                "session": [
                                        "access",
                                        "login"
                                ]
                        },
                        "uci": {
                                        "system": ["timezone", "zonename"],
					"wireless":["*"]
			
			}
                },
                "write": {
                        "ubus": {
                                "*": [ "*" ]
                        },
                        "uci": {
					"system": ["*"],
					"wireless": ["*"]
                	}
		}
        }
}

#add entry to /etc/config/rpcd
config login
        option username 'admin'
        option password '$p$admin'
        list read adminuser
        list write adminuser

#update /etc/passwd
admin:x:200:200:admin:/var:/bin/ash

#update /etc/shadow
admin:$1$6Foyv2Pv$G/P624gFKZWld7YZkpQdP1:18278:0:99999:7:::

#set the admin user password using passwd command


/etc/init.d/rpcd restart

</code></pre>
<p dir="auto">Take a look at these files on your system and see how it's currently being used.</p>
]]></description><link>http://community.onion.io/post/26122</link><guid isPermaLink="true">http://community.onion.io/post/26122</guid><dc:creator><![CDATA[crispyoz]]></dc:creator><pubDate>Sun, 13 Oct 2024 16:00:00 GMT</pubDate></item><item><title><![CDATA[Reply to OnionOS user on Thu, 17 Oct 2024 19:52:37 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="http://community.onion.io/uid/6184">@crispyoz</a> this is a great example on creating a new user for ubus use! You beat us to the punch! Could you make a new FAQ?</p>
<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="http://community.onion.io/uid/6184">@crispyoz</a> said in <a href="/post/26122">OnionOS user</a>:</p>
<blockquote>
<p dir="auto">I haven't used the OnionOS stuff for a few years but as I recall it uses the the ubus acls</p>
</blockquote>
<p dir="auto">That's right! We use the <code>root</code> user though!</p>
]]></description><link>http://community.onion.io/post/26123</link><guid isPermaLink="true">http://community.onion.io/post/26123</guid><dc:creator><![CDATA[Lazar Demin]]></dc:creator><pubDate>Thu, 17 Oct 2024 19:52:37 GMT</pubDate></item><item><title><![CDATA[Reply to OnionOS user on Fri, 18 Oct 2024 00:49:09 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="http://community.onion.io/uid/95">@Lazar-Demin</a> I'll put something together as a FAQ. Might take a few days to have the time.</p>
]]></description><link>http://community.onion.io/post/26125</link><guid isPermaLink="true">http://community.onion.io/post/26125</guid><dc:creator><![CDATA[crispyoz]]></dc:creator><pubDate>Fri, 18 Oct 2024 00:49:09 GMT</pubDate></item><item><title><![CDATA[Reply to OnionOS user on Wed, 23 Oct 2024 05:14:38 GMT]]></title><description><![CDATA[<p dir="auto"><a href="https://tinyurl.com/OnionOSUser" rel="nofollow">Added  a FAQ</a></p>
]]></description><link>http://community.onion.io/post/26127</link><guid isPermaLink="true">http://community.onion.io/post/26127</guid><dc:creator><![CDATA[crispyoz]]></dc:creator><pubDate>Wed, 23 Oct 2024 05:14:38 GMT</pubDate></item><item><title><![CDATA[Reply to OnionOS user on Tue, 05 Nov 2024 14:44:33 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="http://community.onion.io/uid/6184">@crispyoz</a> : Great! Thanks a lot!</p>
]]></description><link>http://community.onion.io/post/26131</link><guid isPermaLink="true">http://community.onion.io/post/26131</guid><dc:creator><![CDATA[MK]]></dc:creator><pubDate>Tue, 05 Nov 2024 14:44:33 GMT</pubDate></item></channel></rss>