<?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=3681&amp;type=rss" rel="self" type="application/rss+xml" />
		<title><![CDATA[Dev1 Galaxy Forum / New forum member]]></title>
		<link>https://dev1galaxy.org/viewtopic.php?id=3681</link>
		<description><![CDATA[The most recent posts in New forum member.]]></description>
		<lastBuildDate>Mon, 20 Jul 2020 09:22:56 +0000</lastBuildDate>
		<generator>FluxBB</generator>
		<item>
			<title><![CDATA[Re: New forum member]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=23546#p23546</link>
			<description><![CDATA[<p>You can also use gtk-ssh-askpass from the repo of gnuinos. Add the following line to your sources.list:</p><div class="codebox"><pre><code>deb http://packages.gnuinos.org/merged beowulf main</code></pre></div><p>Download and install gnuinos-keyring:</p><div class="codebox"><pre><code>$ wget https://packages.gnuinos.org/gnuinos/pool/main/g/gnuinos-keyring/gnuinos-keyring_2020.05.03_all.deb
$ sudo dpkg -i gnuinos-keyring_2020.05.03_all.deb</code></pre></div><p>Update the repository and install the mentioned package afterwards:</p><div class="codebox"><pre><code>$ sudo apt-get update
$ sudo apt-get install gtk-ssh-askpass</code></pre></div><p>From there you&#039;ll be able to run graphical applications as root by typing (in this example, for the case of synaptic):</p><div class="codebox"><pre><code>$ gkt-askpass synaptic</code></pre></div><p>Keep in mind that <strong>/usr/bin/gtk-askpass</strong> restricts the use of <strong>/usr/sbin/gtk-ssh-askpass</strong> to a few applications. By default:</p><div class="codebox"><pre><code>case $1 in
	pcmanfm|thunar|synaptic|gparted|bleachbit)
		SUDO_ASKPASS=/usr/sbin/gtk-ssh-askpass sudo -A $1
		;;
	*) ;;
esac</code></pre></div><p>But you can edit this file as root and add/remove whatever you want. If you want to narrow it only to synaptic and gparted, for instance, then you may leave it as follows:</p><div class="codebox"><pre><code>case $1 in
	synaptic|gparted)
		SUDO_ASKPASS=/usr/sbin/gtk-ssh-askpass sudo -A $1
		;;
	*) ;;
esac</code></pre></div><p>Gtk-ssh-askpass is installed by default in the images of gnuinos beowulf:</p><p><a href="https://www.gnuinos.org/Beowulf/" rel="nofollow">https://www.gnuinos.org/Beowulf/</a></p><p>Here you are a screenshot:</p><p><span class="postimg"><img src="https://www.gnuinos.org/screenshots/gtk-ssh-askpass.png" alt="gtk-ssh-askpass screenshot" /></span></p>]]></description>
			<author><![CDATA[dummy@example.com (aitor)]]></author>
			<pubDate>Mon, 20 Jul 2020 09:22:56 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=23546#p23546</guid>
		</item>
		<item>
			<title><![CDATA[Re: New forum member]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=23545#p23545</link>
			<description><![CDATA[<p>I now use lxqt-sudo as my replacement for gksu.</p><p>Geoff</p>]]></description>
			<author><![CDATA[dummy@example.com (Geoff 42)]]></author>
			<pubDate>Mon, 20 Jul 2020 08:06:04 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=23545#p23545</guid>
		</item>
		<item>
			<title><![CDATA[Re: New forum member]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=23544#p23544</link>
			<description><![CDATA[<div class="quotebox"><cite>golinux wrote:</cite><blockquote><div><p>golinux misses gksu&#160; . . .</p></div></blockquote></div><p><img src="https://dev1galaxy.org/img/smilies/big_smile.png" width="15" height="15" alt="big_smile" /></p><p>Despite so-called security issues, I have to agree.</p><p>So much for the KISS principle...</p><p><img src="https://dev1galaxy.org/img/smilies/tongue.png" width="15" height="15" alt="tongue" /></p>]]></description>
			<author><![CDATA[dummy@example.com (MiyoLinux)]]></author>
			<pubDate>Mon, 20 Jul 2020 06:52:37 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=23544#p23544</guid>
		</item>
		<item>
			<title><![CDATA[Re: New forum member]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=23538#p23538</link>
			<description><![CDATA[<div class="quotebox"><cite>golinux wrote:</cite><blockquote><div><p>golinux misses gksu&#160; . . .</p></div></blockquote></div><p>Amen.</p>]]></description>
			<author><![CDATA[dummy@example.com (Marjorie)]]></author>
			<pubDate>Sun, 19 Jul 2020 15:32:44 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=23538#p23538</guid>
		</item>
		<item>
			<title><![CDATA[Re: New forum member]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=23537#p23537</link>
			<description><![CDATA[<p>golinux misses gksu&#160; . . .</p>]]></description>
			<author><![CDATA[dummy@example.com (golinux)]]></author>
			<pubDate>Sun, 19 Jul 2020 15:18:44 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=23537#p23537</guid>
		</item>
		<item>
			<title><![CDATA[Re: New forum member]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=23534#p23534</link>
			<description><![CDATA[<p>There&#039;s obviously more than one way to skin a cat :-)</p><p>If I know exactly where a file I want to edit is:</p><div class="codebox"><pre><code>~$ sudoedit /full/path/to/file</code></pre></div><p>(having previously put </p><div class="codebox"><pre><code>export EDITOR=/usr/bin/gedit</code></pre></div><p> in my .bashrc).</p>]]></description>
			<author><![CDATA[dummy@example.com (Marjorie)]]></author>
			<pubDate>Sun, 19 Jul 2020 12:01:23 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=23534#p23534</guid>
		</item>
		<item>
			<title><![CDATA[Re: New forum member]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=23530#p23530</link>
			<description><![CDATA[<p>To edit system files with a GUI use the GVFS admin:// backend:</p><div class="codebox"><pre><code>gedit admin:///full/path/to/file</code></pre></div><p>^ That opens the GUI as the normal user and only invokes root privileges to actually save the file.</p>]]></description>
			<author><![CDATA[dummy@example.com (Head_on_a_Stick)]]></author>
			<pubDate>Sun, 19 Jul 2020 10:11:54 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=23530#p23530</guid>
		</item>
		<item>
			<title><![CDATA[Re: New forum member]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=23517#p23517</link>
			<description><![CDATA[<p>If you&#039;re a system admin and don&#039;t want to use/don&#039;t have a root login/ password (I don&#039;t) then open a user terminal and type:</p><p>~$ sudo nemo</p><p>or whatever&#039;s your graphical file manager and then at the prompt enter your user password.. <br />This work just as well.</p><p>nb. I use Cinnamon (I&#039;m another pre-systemd Mint refugee) so my main file manager is nemo and my file editor is gedit.</p><p>I find this a particularly useful way of finding my way around/editing system files when I&#039;ve ssh -X in order to work on a remote PC.</p>]]></description>
			<author><![CDATA[dummy@example.com (Marjorie)]]></author>
			<pubDate>Sat, 18 Jul 2020 22:42:02 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=23517#p23517</guid>
		</item>
		<item>
			<title><![CDATA[Re: New forum member]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=23463#p23463</link>
			<description><![CDATA[<p>If you want to use a &quot;root gui&quot; to edit files, etc. in Debian/Devuan you have two simple options,</p><p>1. Log into the root account at the log in screen.<br />- The root user has all the same programs as any other user, just with complete control to break anything your heart desires.</p><p>2. Open the file manager as root.<br />- In Xfce, the default GUI, Thunar is the file manager.<br />- When you open Thunar as root you will be able to edit any config file with Mousepad/gedit/whatever by clicking it.</p><p>Steps:<br />- Open terminal<br />- Type: su<br />- Type the password for the root account when prompted<br />- Type: thunar</p><p>A root enabled Thunar window will open, with a convenient banner telling you it&#039;s a root window rather than a normal user window.</p><p>I personally og into the root account on the terminal only rarely and close to never as full GUI. However, I will fire up Thunar as root sometimes, because using a &quot;root gui&quot; is, as you say, easy and convenient.</p><p>All that said, Debian/Devuan is not like Ubuntu or Mint, which themselves are similar to SUSE when it comes to being pre-configured for desktop users. There&#039;s plenty of terminal config I need to futz with to make my Devuan desktop similar to my old Mint desktop. I imagine you&#039;ll find the same with configuring it to be similar to how SUSE 11 worked for you. Not being heavily customized is kind of a feature of Debian and thus Devuan.</p>]]></description>
			<author><![CDATA[dummy@example.com (Tatwi)]]></author>
			<pubDate>Fri, 17 Jul 2020 16:51:45 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=23463#p23463</guid>
		</item>
		<item>
			<title><![CDATA[New forum member]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=23449#p23449</link>
			<description><![CDATA[<p>Hello devuan team,<br />I am a new registered member in the forums, although I have been lurking from the outside since early 2019.</p><p>I am currently using one of the best linux distributions for normal *gui* people: suse linux enterprise desktop 11 sp4 with gnome 2.28<br />This is the last version without systemd (by the way, I do only a few commands in the terminal, like installing rpms, converting files with ffmpeg, and a few more but that&#039;s it).<br />I also like that I can use root gui for some admin tasks. I am the only user in this laptop and access to gui root is essential.</p><p>Some history: began with computers as a savvy end user since the win3.1 days (1997), in those days quake1 and duke nukem 3d were huge hits.</p><p>I started timidly using linux back in 2004 with suse linux personal 9.1 and then dropped it after a few months and went back to windows.<br />When opensuse 10.3 appeared on the scene, I decided to return and check it out, and started using it more frequently; when SLED10 was released, I went ahead and installed it (around 2010), at this point I had moved definitely to linux, like 99.5% of the time consistently since that time. Later I installed SLED11 and stayed there until now.</p><p>Unfortunately, it&#039;s showing its age, I haven&#039;t updated any programs for more than 3 years (end of life); and even tough it&#039;s still performing great, I can&#039;t stay here forever; and since last year I&#039;m evaluating other linux options.<br />New distro versions are now coming with systemd, and I would rather continue with a proven init system and not use one that wants to become another svchost.exe</p><p>I evaluated recently opensuse 15.2 with mate desktop and it looks awesome, but the fact that systemd is inside doing its thing, it doesn&#039;t make me comfortable. Then I started checking more on devuan.</p><p>I evaluated initially devuan 3 beowulf with mate desktop inside virtualbox, but got no sound (I know, the release notes, yet remember that i am not not a command-line-interface individual so i did not know how to fix it neither I tried to venture. When I had issues like this, I used to go to root gui and open gedit, and make the modifications).</p><p>Then I installed devuan 2.1 ascii with mate and later cinnamon. These were better options for me, however, not having access as root in a gui, it&#039;s an important item to check on my list.</p><p>Then, I commenced to review derivatives, I probably tried like 6-8 of them, not finding one that I liked. Then other systemd-free distros, like pcLinuxOS, Alpine, Void and others.</p><p>Right before I gave up and went for opensuse again, recently came across with devuan virage linux 3.1. This one is based on beowulf with xfce, although with newer kernel; lots of music applications (audio is not my thing, but the desktop environment layout looks great) and I&#039;m able to sign in as root. Yay!</p><p>It has a weird way to install on disk yet it works great in virtualbox and I am happily evaluating it; I am trying to get around the synaptics package manager gui and customizing xfce, it&#039;s the first time i&#039;m using it after more than a decade with gnome.<br />I already installed firefox and removed chromium as practice.<br />So this might be the option I was looking for. I am trying to get more acquainted with it over the days. So you will be reading more from me asking questions since I don&#039;t have any devuan/debian background.</p><p>After this learning phase and later feeling more comfortable around it, I can go ahead and install devuan in 3 more family computers (my brother&#039;s [x2] and dad&#039;s; all using opensuse at the moment).</p><p>As a final comment, I am happy in finally joining the forums and&#160; participate whenever required.</p><p>Greetings from Colombia.</p><p>PS:<br />If you have any hints/tips in how to customize xfce desktop environment (plugins?) to look more like gnome 2.28/mate, your comments are more than welcome, since me, my brother and dad are used to this layout for years as well, we are 100% gui point-and-click people. Cheers everyone.</p>]]></description>
			<author><![CDATA[dummy@example.com (ofvergara)]]></author>
			<pubDate>Fri, 17 Jul 2020 04:40:55 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=23449#p23449</guid>
		</item>
	</channel>
</rss>
