<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<atom:link href="https://dev1galaxy.org/extern.php?action=feed&amp;tid=6401&amp;type=rss" rel="self" type="application/rss+xml" />
		<title><![CDATA[Dev1 Galaxy Forum / [SOLVED] second SSD always demands root password]]></title>
		<link>https://dev1galaxy.org/viewtopic.php?id=6401</link>
		<description><![CDATA[The most recent posts in [SOLVED] second SSD always demands root password.]]></description>
		<lastBuildDate>Thu, 08 Feb 2024 17:54:21 +0000</lastBuildDate>
		<generator>FluxBB</generator>
		<item>
			<title><![CDATA[Re: [SOLVED] second SSD always demands root password]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=47945#p47945</link>
			<description><![CDATA[<p>Thanks to Dutch_Master (I think I saw you on a box of cigars) and aluma. Learning a new system is always interesting and it helps to know how to find help.</p>]]></description>
			<author><![CDATA[dummy@example.com (rankbeginner)]]></author>
			<pubDate>Thu, 08 Feb 2024 17:54:21 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=47945#p47945</guid>
		</item>
		<item>
			<title><![CDATA[Re: [SOLVED] second SSD always demands root password]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=47904#p47904</link>
			<description><![CDATA[<p>I&#039;ll add a little.<br /> For almost every command, it is possible to call the built-in help using keys </p><div class="codebox"><pre><code>&lt;command&gt; -h</code></pre></div><p> or </p><div class="codebox"><pre><code>&lt;command&gt; --help</code></pre></div><p>Here&#039;s an example for </p><div class="codebox"><pre><code>chown --help</code></pre></div><div class="codebox"><pre><code>Usage: chown [OPTION]... [OWNER][:[GROUP]] FILE...
  or:  chown [OPTION]... --reference=RFILE FILE...
Change the owner and/or group of each FILE to OWNER and/or GROUP.
With --reference, change the owner and group of each FILE to those of RFILE.

  -c, --changes          like verbose but report only when a change is made
  -f, --silent, --quiet  suppress most error messages
  -v, --verbose          output a diagnostic for every file processed
      --dereference      affect the referent of each symbolic link (this is
                         the default), rather than the symbolic link itself
  -h, --no-dereference   affect symbolic links instead of any referenced file
                         (useful only on systems that can change the
                         ownership of a symlink)
      --from=CURRENT_OWNER:CURRENT_GROUP
                         change the owner and/or group of each file only if
                         its current owner and/or group match those specified
                         here.  Either may be omitted, in which case a match
                         is not required for the omitted attribute
      --no-preserve-root  do not treat &#039;/&#039; specially (the default)
      --preserve-root    fail to operate recursively on &#039;/&#039;
 </code></pre></div><p>And secondly, some file managers, Konqueror for example, display man pages if you insert # &lt;command&gt; in their address bar, it’s more convenient to read.</p>]]></description>
			<author><![CDATA[dummy@example.com (aluma)]]></author>
			<pubDate>Tue, 06 Feb 2024 08:19:52 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=47904#p47904</guid>
		</item>
		<item>
			<title><![CDATA[Re: [SOLVED] second SSD always demands root password]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=47903#p47903</link>
			<description><![CDATA[<p>There&#039;s build-in help in pretty much every Linux distro, in form of the man-pages.</p><div class="codebox"><pre><code>man &lt;command&gt;</code></pre></div><p>Short cut to an online version:<br /><a href="https://ss64.com/bash/" rel="nofollow">https://ss64.com/bash/</a></p><p>HTH!</p>]]></description>
			<author><![CDATA[dummy@example.com (Dutch_Master)]]></author>
			<pubDate>Tue, 06 Feb 2024 04:33:13 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=47903#p47903</guid>
		</item>
		<item>
			<title><![CDATA[Re: [SOLVED] second SSD always demands root password]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=47898#p47898</link>
			<description><![CDATA[<p>@Dutch_Master</p><p>Thanks a bunch for the specifics. I was wondering about chown/chgrp, but I did not mention it. I&#039;ll try that.</p>]]></description>
			<author><![CDATA[dummy@example.com (rankbeginner)]]></author>
			<pubDate>Mon, 05 Feb 2024 23:51:36 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=47898#p47898</guid>
		</item>
		<item>
			<title><![CDATA[Re: [SOLVED] second SSD always demands root password]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=47897#p47897</link>
			<description><![CDATA[<p>This is the line you need to add to /etc/fstab:</p><div class="codebox"><pre><code>UUID=uuid-string-goes-here   /path/to/directory fs-type defaults 0 0</code></pre></div><p>You&#039;re advised to mount the SSD in /media, but being Linux, you&#039;re free to mount it anywhere in the tree you&#039;d like <img src="https://dev1galaxy.org/img/smilies/smile.png" width="15" height="15" alt="smile" /> The fs-type is what you&#039;ve used to format the drive in. If you formatted with ext4, just substitute ext4 instead of fs-type.</p><p>Assuming you mount the drive in /media/fast-storage, you&#039;d need to set access rights to that directory to allow you access w/o any passwords at all:</p><div class="codebox"><pre><code>chown &lt;user&gt;,&lt;group&gt; /media/fast-storage #as root</code></pre></div><p>In this &lt;user&gt; is your user name and &lt;group&gt; is the name of the group your user is a member of (on Devuan, usually user- and group names are the same).<br />For instance, say your username is rank, the command would look like:</p><div class="codebox"><pre><code>chown rank,rank /media/fast-storage</code></pre></div><p>There&#039;s more to it, but this&#039;ll get you started <img src="https://dev1galaxy.org/img/smilies/smile.png" width="15" height="15" alt="smile" /></p>]]></description>
			<author><![CDATA[dummy@example.com (Dutch_Master)]]></author>
			<pubDate>Mon, 05 Feb 2024 22:22:58 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=47897#p47897</guid>
		</item>
		<item>
			<title><![CDATA[[SOLVED] second SSD always demands root password]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=47896#p47896</link>
			<description><![CDATA[<p>I have a system -- Intel NUC, I5, 16 GB RAM, 512 GB Samsung NVMe SSD system drive -- with a new installation of Devuan MATE. In the system is a second SSD, a SATA one. The problem is that the first time I want to use the SATA drive, per boot, I must enter the root password. I looked at fstab and there is no entry for that drive. I think I can muddle through entering the entry, given that I have the UUID from gnome-disk-utility. My question is, where should I mount it? If I enter the root password upon request, it is listed under Devices on the left side of Caja, which is acceptable. The fstab entry after manually mounting it is</p><p>/dev/disk/by-uuid/here-is-the-uuid /mnt/here-is-the-uuid auto nosuid,nodev,nofail,x-gvfs-show 0 0</p><p>Should I just add that entry to fstab? Is there anything else to do?</p>]]></description>
			<author><![CDATA[dummy@example.com (rankbeginner)]]></author>
			<pubDate>Mon, 05 Feb 2024 21:53:31 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=47896#p47896</guid>
		</item>
	</channel>
</rss>
