<?xml version="1.0" encoding="ISO-8859-1"?>

<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/">
	<channel>
		<title>LinuxQuestions.org - Blogs - ondoho</title>
		<link>https://www.linuxquestions.org/questions/blog/ondoho-804260/</link>
		<description>LinuxQuestions.org offers a free Linux forum where Linux newbies can ask questions and Linux experts can offer advice. Topics include security, installation, networking and much more.</description>
		<language>en</language>
		<lastBuildDate>Tue, 21 Jul 2026 23:29:58 GMT</lastBuildDate>
		<generator>vBulletin</generator>
		<ttl>60</ttl>
		<image>
			<url>https://www.linuxquestions.org/questions/images/misc/rss.jpg</url>
			<title>LinuxQuestions.org - Blogs - ondoho</title>
			<link>https://www.linuxquestions.org/questions/blog/ondoho-804260/</link>
		</image>
		<item>
			<title>How to provide information about peripherals with dmesg</title>
			<link>https://www.linuxquestions.org/questions/blog/ondoho-804260/how-to-provide-information-about-peripherals-with-dmesg-38682/</link>
			<pubDate>Tue, 19 Oct 2021 05:51:00 GMT</pubDate>
			<description>You want to see how your Linux system reacts to a certain peripheral being plugged in (smartphone, monitor, USB stick etc.). 
dmesg can provide that...</description>
			<content:encoded><![CDATA[<div>You want to see how your Linux system reacts to a certain peripheral being plugged in (smartphone, monitor, USB stick etc.).<br />
<font color="red"><font face="monospace">dmesg</font></font> can provide that information, but one needs to separate it from previous messages.<br />
Here's how:<br />
<ul><li>Make sure the device in question is unplugged.</li>
<li>Open a terminal, maximise it.</li>
<li>Enter <font color="red"><font face="monospace">dmesg -Tw</font></font> (wait for new messages).</li>
<li>Some systems require elevated privileges for <font color="red"><font face="monospace">dmesg</font></font>, if so prepend <font color="red"><font face="monospace">sudo</font></font> or become superuser first.</li>
<li>After <font color="red"><font face="monospace">dmesg -Tw</font></font> spat out lots of stuff and has hopefully settled down (if it hasn't that could point to a different problem), press &lt;Enter&gt; until your terminal window is blank.</li>
<li>Now insert the peripheral you want information about and wait - depending on the deivce, up to a full minute.</li>
<li>Copy all the <i>new</i> output that is visible now.</li>
</ul><br />
This can also be insightful when removing peripherals and in many other situations.</div>

]]></content:encoded>
			<dc:creator>ondoho</dc:creator>
			<guid isPermaLink="true">https://www.linuxquestions.org/questions/blog/ondoho-804260/how-to-provide-information-about-peripherals-with-dmesg-38682/</guid>
		</item>
		<item>
			<title>How to use CODE Tags for Code and Command Output</title>
			<link>https://www.linuxquestions.org/questions/blog/ondoho-804260/how-to-use-code-tags-for-code-and-command-output-38639/</link>
			<pubDate>Mon, 23 Aug 2021 05:54:30 GMT</pubDate>
			<description><![CDATA[Let's say you have this output: 
 
$ df -h 
Filesystem      Size  Used Avail Use% Mounted on 
udev            3.9G     0  3.9G   0% /dev 
tmpfs      ...]]></description>
			<content:encoded><![CDATA[<div>Let's say you have this output:<br />
<br />
$ df -h<br />
Filesystem      Size  Used Avail Use% Mounted on<br />
udev            3.9G     0  3.9G   0% /dev<br />
tmpfs           789M  2.7M  787M   1% /run<br />
/dev/sda8       9.8G  6.9G  2.5G  74% /<br />
<br />
You will notice that the formatting is messed up, it looked much nicer in your terminal!<br />
<br />
Instead, you should surround the text with code tags:<br />
<br />
&#91;CODE&#93;<br />
$ df -h<br />
Filesystem      Size  Used Avail Use% Mounted on<br />
udev            3.9G     0  3.9G   0% /dev<br />
tmpfs           789M  2.7M  787M   1% /run<br />
/dev/sda8       9.8G  6.9G  2.5G  74% /<br />
&#91;/CODE&#93;<br />
<br />
The end result will then look like this:<br />
<div style="margin:20px; margin-top:5px">
	<div class="smallfont" style="margin-bottom:2px">Code:</div>
	<pre class="bbcodeblock" dir="ltr" style="
		margin: 0px;
		margin-right: -99999px;
		padding: 3px;
		border: 1px inset;
		width: 98%;
		height: 98px;
		text-align: left;
		overflow: auto">$ df -h
Filesystem      Size  Used Avail Use% Mounted on
udev            3.9G     0  3.9G   0% /dev
tmpfs           789M  2.7M  787M   1% /run
/dev/sda8       9.8G  6.9G  2.5G  74% /</pre>
</div>This increases readability by <b>a lot</b> for everyone, especially people trying to interpret it for you, so please take this advice seriously.<br />
<br />
The tags are case insensitive - you can use <b>&#91;code&#93; bla bla &#91;/code&#93;</b> just as well.<br />
<br />
You do not have to type it all out, either: in the advanced post editor you will find this sign: <b>#</b> in the toolbar, clicking it once will output a pair of empty code tags. Try it.<br />
<br />
If you have already posted some code without tags, you can go back to the post in question, click the <b>[ Edit ]</b> button (bottom right), and edit your post accordingly.<br />
<br />
Thank You.</div>

]]></content:encoded>
			<dc:creator>ondoho</dc:creator>
			<guid isPermaLink="true">https://www.linuxquestions.org/questions/blog/ondoho-804260/how-to-use-code-tags-for-code-and-command-output-38639/</guid>
		</item>
		<item>
			<title>How to search the WWW for solutions to Linux problems</title>
			<link>https://www.linuxquestions.org/questions/blog/ondoho-804260/how-to-search-the-www-for-solutions-to-linux-problems-38393/</link>
			<pubDate>Mon, 30 Nov 2020 05:53:07 GMT</pubDate>
			<description><![CDATA[---Quote--- 
I'm a relative newbie here, and would need elementary instructions in order to fix anything you suggested. 
---End Quote--- 
 
* Open...]]></description>
			<content:encoded><![CDATA[<div><div style="margin:20px; margin-top:5px; ">
	<div class="smallfont" style="margin-bottom:2px">Quote:</div>
	<table cellpadding="3" cellspacing="0" border="0" width="100%">
	<tr>
		<td class="bbcodeblock" style="border:1px inset">
			
				I'm a relative newbie here, and would need elementary instructions in order to fix anything you suggested.
			
		</td>
	</tr>
	</table>
</div><ul><li>Open the web page of a search engine that does not wrap you in a bubble. For now, <a href="https://duckduckgo.com/" target="_blank" rel="nofollow">https://duckduckgo.com/</a> will do<br /></li>
<li>Enter relevant parts of the error message received (*), usually prepended by &quot;linux&quot; or the name of the distro (for Mint, you can prepend Ubuntu) - in this case, I would choose <a href="https://duckduckgo.com/?q=Ubuntu+The+following+signatures+couldn&#39;t+be+verified+because+the+public+key+is+not+available" target="_blank" rel="nofollow">Ubuntu The following signatures couldn't be verified because the public key is not available</a>.<br />
(*) I also remove special characters like []:-+&quot;&quot;.<br /></li>
<li>If you don't get good results, change the search phrase to be either more general or more specific.<br />
If a certain term <i>must</i> appear in the results, put it in double quotes, e.g.:<br />
<a href="https://duckduckgo.com/?q=install+linux+on+Acer+Chromebook+&quot; title=&quot;315" target="_blank" rel="nofollow">install linux on Acer Chromebook &quot;315&quot;</a>.<br /></li>
<li>Choose the best results. In this case, the very first askubuntu result seems good.<br /></li>
<li>Keep in mind that the chosen article could still be outdated, answers might be contradicting themselves, answers might be plain wrong, or there's no completely fitting answer at all. However in this case it looks like the <a href="https://askubuntu.com/a/20763" target="_blank" rel="nofollow">accepted answer</a> is relevant, although it's 9 years old and was last edited 3.5 years ago.<br />
</li>
</ul></div>

]]></content:encoded>
			<dc:creator>ondoho</dc:creator>
			<guid isPermaLink="true">https://www.linuxquestions.org/questions/blog/ondoho-804260/how-to-search-the-www-for-solutions-to-linux-problems-38393/</guid>
		</item>
		<item>
			<title>uMatrix FTW!</title>
			<link>https://www.linuxquestions.org/questions/blog/ondoho-804260/umatrix-ftw-38008/</link>
			<pubDate>Fri, 31 May 2019 08:55:03 GMT</pubDate>
			<description>uMatrix has replaced at least 3 different addons (cookie control, noscript and request policy) and also offers adblocking (which i still take care of...</description>
			<content:encoded><![CDATA[<div>uMatrix has replaced at least 3 different addons (cookie control, noscript and request policy) and also offers adblocking (which i still take care of via /etc/hosts).<br />
(this is me on firefox)<br />
For being so powerful, it is comparatively simple to use. seriously.<br />
A <a href="http://dt.iki.fi/umatrix" target="_blank" rel="nofollow">very quick howto on my personal blog</a>. <br />
<br />
A Palemoon-compatible fork <a href="https://addons.palemoon.org/addon/ematrix/" target="_blank" rel="nofollow">exists</a>.</div>

]]></content:encoded>
			<dc:creator>ondoho</dc:creator>
			<guid isPermaLink="true">https://www.linuxquestions.org/questions/blog/ondoho-804260/umatrix-ftw-38008/</guid>
		</item>
		<item>
			<title>Use youtube-dl to bulk download music from weblinks</title>
			<link>https://www.linuxquestions.org/questions/blog/ondoho-804260/use-youtube-dl-to-bulk-download-music-from-weblinks-37965/</link>
			<pubDate>Sun, 14 Apr 2019 08:47:18 GMT</pubDate>
			<description>youtube-dl (http://yt-dl.org/) can download much more than just youtube (https://ytdl-org.github.io/youtube-dl/supportedsites.html)! 
 
it has...</description>
			<content:encoded><![CDATA[<div><a href="http://yt-dl.org/" target="_blank" rel="nofollow">youtube-dl</a> can download <a href="https://ytdl-org.github.io/youtube-dl/supportedsites.html" target="_blank" rel="nofollow">much more than just youtube</a>!<br />
<br />
it has options to download video, then extract the audio only, or to download audio audio-only sites (soundcloud, bandcamp etc.)<br />
<br />
for  a long time i've been using <a href="https://framagit.org/snippets/3501" target="_blank" rel="nofollow">a little script</a> to download music with youtube-dl, straight into my Music folder.<br />
<br />
youtube-dl can extract a lot of info from the download, add tags to the file, and generate a suitable download path and filename for one or multiple files.<br />
ideally for me, that would be:  <br />
<div style="margin:20px; margin-top:5px">
	<div class="smallfont" style="margin-bottom:2px">Code:</div>
	<pre class="bbcodeblock" dir="ltr" style="
		margin: 0px;
		margin-right: -99999px;
		padding: 3px;
		border: 1px inset;
		width: 98%;
		height: 34px;
		text-align: left;
		overflow: auto">music_base_directory/artist/album/title.ext</pre>
</div>but unfortunately there's no way to get that info in a straightforward manner from all the different sites.<ul><li>youtube is not artist-centric at all</li>
<li>soundcloud or bandcamp treat album/artist differently from each other</li>
</ul><br />
so my script still isn't perfect, but sufficiently so that i can automate the task of just right-clicking a link and download everything (complete albums, playlists, even one artists complete works), and still find the music afterwards.<br />
<br />
so:<ul><li>for soundcloud or bandcamp it is fully automatic</li>
<li>for youtube it asks to provide the name of a folder (typically the artist)</li>
<li>everything else is treated like youtube</li>
</ul><br />
to make it better i would have to download metadata first, make some intelligent decisions, and only then download the actual media, and i did not want to do that (who knows when the site decides to throttle or block you, better not overdo it).<br />
<br />
anyhow <a href="https://framagit.org/snippets/3501" target="_blank" rel="nofollow"><b>here's the script</b></a>. enjoy.</div>

]]></content:encoded>
			<dc:creator>ondoho</dc:creator>
			<guid isPermaLink="true">https://www.linuxquestions.org/questions/blog/ondoho-804260/use-youtube-dl-to-bulk-download-music-from-weblinks-37965/</guid>
		</item>
		<item>
			<title>An Open Letter To LinuxQuestions</title>
			<link>https://www.linuxquestions.org/questions/blog/ondoho-804260/an-open-letter-to-linuxquestions-37832/</link>
			<pubDate>Sat, 08 Sep 2018 06:54:23 GMT</pubDate>
			<description><![CDATA[...or maybe to myself. 
 
*Introduction* 
 
Two things first: 
 
1. "This is a Linux Forum" - yes, it is. But wherever people come together to...]]></description>
			<content:encoded><![CDATA[<div>...or maybe to myself.<br />
<br />
<b>Introduction</b><br />
<br />
Two things first:<br />
<br />
1. &quot;This is a Linux Forum&quot; - yes, it is. But wherever people come together to discuss whatever, the sociological, emotional and psychological aspects, and aspects of communication and language, are just as important as the (technical) topics. <br />
I have always been very interested in these aspects, and often found that the solution to a problem lies there, and not on the technical side.<br />
<br />
2. Until recently, I liked to assume that the laws &amp; regulations that rule our &quot;real lives&quot;, also rule LQ (and other similar online communities).<br />
I know there's a lot to be said against that assumption. I can hear all your &quot;But&quot;s already, but please read until the end, chances are I have already made that counterpoint myself. <br />
Even if I ultimately agree that it's not a perfect analogy, even if it sounds over-dramatic at times, I will stick to it, because in the endless drafts I made for this post, it turned out to be the only way to get my point across.<br />
<br />
---------------------------<br />
<br />
A few years ago, I had this idea that I can stick to <b>one</b> online personality, spanning various communities, <b>one</b> that ultimately represents me as a person, even if I never reveal my real name or fine-grained location. <br />
Because I would like to be online as a real person, not some reduced online personality. I would like to be myself, with the usual limitations that entails (just like in real life). <br />
I believe in <b>Integrity</b>.<br />
<br />
I am now beginning to understand that this is not possible, at least not on LQ.<br />
<br />
<b>Let me explain.</b><br />
<br />
We have <a href="https://www.linuxquestions.org/linux/rules.html">a set of rules</a>. We have moderators. <br />
Is this not an analogy to &quot;laws&quot; and &quot;law enforcement&quot;? Does this not ensure integrity? <br />
No, not at all. <br />
Upon closer inspection, the rules are just a short text consisting of a combination of non-commital feel-good messages on one hand, and pretty vague, flexible, and extremely <i>broad</i> Dos and Don'ts on the other hand. <br />
Added to that, moderators have an almost absolute power to take punitive measures against a user without the need to justify themselves, and the user has no <i>effective</i> possiblity to defend themselves, is at the mercy of the powers that be. <br />
It reminds me of the stereotypical sheriff from some Wild West movie (&quot;I'm the law around here, and you look like trouble!&quot;), strangely combined with the mentality of a pencil pusher.<br />
<br />
One could say: <i>&quot;C'mon, it's not real life, nothing is <b>really</b> happening, and you're still posting, you haven't been banned, so it can't have been that bad?&quot;</i>  - but then I think: OK, then why did I receive that warning in the first place? It <b>is</b> meant to intimidate, and intimate the possibilities of further, more drastic actions against me. It <b>is</b> a <b>personal</b> act of wielding that absolute power against me. <br />
In real life, there are regulations to prevent law enforcement from becoming a law enforcer's personal act, but they are missing here.<br />
<br />
And what can I do, if I feel that this is unjustified? <br />
Can I appeal? I can, but it is up to that moderators' indulgence to even read it. <br />
I have done this twice now, and it leads to exactly nothing (reporting a moderator does <b>not</b> lead to another moderator joining the discussion), except that the moderator is getting vaguely annoyed with me, and probably puts a mental peg in it: Watch this user. Maybe more severe action is appropriate to make them understand The Rules. <br />
Or one could argue: <i>&quot;Moderators do such an important job, and they're <b>so</b> busy, you really can't expect them to respond to your every whim.&quot;</i> - as in fact some of them do when pressed for justification. <br />
I say: <i>&quot;Then why did you start the whole thing at all?&quot;</i> - apparently the answer would be: <i>&quot;Because I am trying to make LQ a better place, and you aren't&quot;</i> - can you see what slippery slope we're on now? Who is a good person, and who isn't? <br />
Lawfulness &amp; Integrity do not work this way. <br />
Innocent until proven guilty, there's a good reason why that is the rule in every civilised place on this planet. (*)<br />
<br />
All in all, this leads to a situation where almost anything one posts can be construed to be against the rules - if one isn't extremely careful, that is. <br />
Take the &quot;off-topic&quot; rule for example. <i>Almost</i> anything beyond the strictest technical discussion can be put under that.<br />
<br />
Are those extremely broad rules applied justly? <br />
Of course not. <br />
It depends very much on the situation, on the participants' &quot;standing&quot; in the community, on their other contributions, and on vague feelings that the moderator has about the poster in question, how each contribution is interpreted. <br />
<b>For each and every warning (and one infraction) I have received I can point to various examples where another poster did the same thing.</b> <br />
Unfortunately we cannot see what sort of warnings others have received. But the moderators can. It just adds to their absurd power. I'd prefer things to be more open. Yes, including my own red &amp; yellow dots to be visible to others.<br />
<br />
Since there's no objective set of rules, or at least no objective way of enforcing them, people have to be cautious. They adapt to the situation at hand. Over the years they learn to formulate their posts in such a way that they offer the smallest possible attack surface; but at the same time they learn to use &quot;legal&quot; outlets for their &quot;forbidden&quot; needs (to make off-topic remarks, to criticize in a way that might be construed to be a personal attack), and take every opportunity to point the finger if someone else has broken the rules.<br />
<br />
Just look at the &quot;lawful&quot; bashing of Kali Linux users (and also their often extreme defenses). Finally an outlet!<br />
<br />
To my shame I must admit that I also did this, in various ways.<br />
<br />
<b>All this wouldn't be a problem...</b><br />
<br />
Of course I know that these things (rules) are almost the same on almost all forums, Linux or not.<br />
But usually this is much less of a problem - not because moderators are better people there, but because there's just less of them, or they do less, maybe because there's a general agreement that less (action) is more.<br />
<br />
If law enforcement has nothing better to do than dissect people's behaviour then there either isn't enough real crime to go around, or too many police.<br />
<br />
<b>I am not saying that I am a model citizen</b><br />
<br />
Yes, I am grumpy. Snarky. Unfriendly. Sarcastic. But hopefully sometimes also witty (the audience decides). <br />
I have always lived on the edge, on the fringe, exploring boundaries. <br />
And even in my fifth decade I haven't learned not to speak my mind when it might be inadvisable.<br />
<br />
In other words, I draw attention. A square peg in a round hole.<br />
<br />
It's perfectly OK to criticize me for it, straight to my face, even just tell me to shut up. <br />
It's OK to tell me: <i>&quot;Then why do you behave this way, if it's causing you so much grief?&quot;</i> - I do that myself quite often.<br />
<br />
But does that justify the police coming up to me to tell me to stop this, or else? <br />
Of course not. <br />
There's a huge difference between being arrogant, unfriendly etc. on one hand and an insult or personal attack on the other. <br />
There's an even bigger difference between <i>perceiving</i> someone's behavior as insulting, and being able to prove this to the world, incl. a chance for the accused to defend themselves. <br />
If this were real life I'd already started looking where I can get a lawyer. Seriously.<br />
<br />
<b>Conclusion?</b><br />
<br />
Five years on LQ, and a lot of time spent here. <br />
A pretty strong part of my online personality. <br />
Getting a PM from a moderator (usually another warning) felt strangely personal. Threatening to my online personality. Like trouble at work. I know it's silly, but you can't tell your emotions that they're being silly, they still come. <br />
I need to do something about this. Not exactly sure what, other than bring it up.<br />
<br />
This is <b>not</b> a grand &amp; dramatical exit. <br />
This is <b>not</b> a call for a revolution against moderators.<br />
<br />
But from now on I will relate differently. <br />
<b>I just cannot take this seriously anymore, and now feel a little ridiculous that I ever did.</b> <br />
I'm not sure what my decision will entail; maybe I won't be using the ondoho persona anymore. <br />
Maybe I deliberately need to ween myself off the negative emotions I get from moderator warnings. <br />
I definitely need to stop discussing things with them. <br />
I definitely cannot believe in the idea of integrity and being a real person here on LQ anymore. <br />
I hope that this, paradoxically, will help me to become more honest.<br />
<br />
I refuse to weigh my every word for its potential to offend a moderator.<br />
<br />
This is not a place where the real-life me wants to expose itself. <br />
Sock puppets for the world, thanks to LQ over-moderation!<br />
<br />
PS: I was told to take it to jeremy. I prefer to take it to the people, openly. This is a judgement I have far more trust in.<br />
<br />
---------------------<br />
<br />
(*) My last 3 warnings were about posts where the moderator <i>thought</i> that I was being insulting. There was no objective proof of that, and they were indeed off with their judgement. 2 of those warnings were from rtmistler. After the first one they were still willing to discuss matters with me. The more recent one, not so much anymore. rtmistler says they find my replies &quot;worrying&quot;. Some veiled threat. <br />
Here are some examples: <br />
<a href="https://www.linuxquestions.org/questions/linux-newbie-8/best-lightweight-linux-4175637728/#post5899817">Signature rule violation - &quot;harsh joke&quot; - by rtmistler</a> <br />
<a href="https://www.linuxquestions.org/questions/general-10/no-place-to-hide-4175636282/#post5891688">Inappropriate language, insult - by Mara</a> <br />
<a href="https://www.linuxquestions.org/questions/linux-newbie-8/shortcut-key-gone-crazy-4175623632/#post5819173">Insulted Other Member(s) - by rtmistler</a> <br />
I am not saying that I was on my best behavior in these posts, I can see that. But, once more, there's a difference between criticizing me (preferably openly), or declaring this as a violation of the law.<br />
And, this is <b>not</b> a personal vendetta of mine, but since moderators hold a sort of public office, I believe it appropriate to mention them by name.</div>

]]></content:encoded>
			<dc:creator>ondoho</dc:creator>
			<guid isPermaLink="true">https://www.linuxquestions.org/questions/blog/ondoho-804260/an-open-letter-to-linuxquestions-37832/</guid>
		</item>
		<item>
			<title>How To Install an Icon Theme from the Web, Manually</title>
			<link>https://www.linuxquestions.org/questions/blog/ondoho-804260/how-to-install-an-icon-theme-from-the-web-manually-37814/</link>
			<pubDate>Sat, 25 Aug 2018 08:59:10 GMT</pubDate>
			<description>*http://dt.iki.fi/icon-theme-manual-install*</description>
			<content:encoded><![CDATA[<div><b><a href="http://dt.iki.fi/icon-theme-manual-install" target="_blank" rel="nofollow">http://dt.iki.fi/icon-theme-manual-install</a></b></div>

]]></content:encoded>
			<dc:creator>ondoho</dc:creator>
			<guid isPermaLink="true">https://www.linuxquestions.org/questions/blog/ondoho-804260/how-to-install-an-icon-theme-from-the-web-manually-37814/</guid>
		</item>
		<item>
			<title>Where is the VLC log?</title>
			<link>https://www.linuxquestions.org/questions/blog/ondoho-804260/where-is-the-vlc-log-37694/</link>
			<pubDate>Mon, 12 Mar 2018 11:46:41 GMT</pubDate>
			<description>http://dt.iki.fi/vlc-log</description>
			<content:encoded><![CDATA[<div><a href="http://dt.iki.fi/vlc-log" target="_blank" rel="nofollow">http://dt.iki.fi/vlc-log</a></div>

]]></content:encoded>
			<dc:creator>ondoho</dc:creator>
			<guid isPermaLink="true">https://www.linuxquestions.org/questions/blog/ondoho-804260/where-is-the-vlc-log-37694/</guid>
		</item>
		<item>
			<title>Play Media Links with One Click (Open With addon, youtube-dl and mpv)</title>
			<link>https://www.linuxquestions.org/questions/blog/ondoho-804260/play-media-links-with-one-click-open-with-addon-youtube-dl-and-mpv-37619/</link>
			<pubDate>Sun, 26 Nov 2017 12:29:01 GMT</pubDate>
			<description>I keep recommending this, so I made it a blog post. 
Continue reading... (http://dt.iki.fi/youtube-openwith-mpv/)</description>
			<content:encoded><![CDATA[<div>I keep recommending this, so I made it a blog post.<br />
<a href="http://dt.iki.fi/youtube-openwith-mpv/" target="_blank" rel="nofollow">Continue reading...</a></div>

]]></content:encoded>
			<dc:creator>ondoho</dc:creator>
			<guid isPermaLink="true">https://www.linuxquestions.org/questions/blog/ondoho-804260/play-media-links-with-one-click-open-with-addon-youtube-dl-and-mpv-37619/</guid>
		</item>
		<item>
			<title>How to Mark a Thread SOLVED</title>
			<link>https://www.linuxquestions.org/questions/blog/ondoho-804260/how-to-mark-a-thread-solved-37593/</link>
			<pubDate>Fri, 27 Oct 2017 15:40:07 GMT</pubDate>
			<description><![CDATA[Please look at the blue menu bar above the first post on the page. 
The first item on the right half should be labeled "Thread Tools", a drop-down...]]></description>
			<content:encoded><![CDATA[<div>Please look at the blue menu bar above the first post on the page.<br />
The first item on the right half should be labeled &quot;Thread Tools&quot;, a drop-down (*) menu that contains the item &quot;Mark this thread Solved&quot;, but only if you started the thread.<br />
<br />
Some subforums do not have that option, e.g. Non-*NIX/General. That is on purpose.<br />
<br />
(*) If you have javascript completely disabled, the drop-down menu changes into something else, but all the options are still there, still clickable and still work. See below attachment.</div>


<!-- attachments -->
	<div style="margin-top:10px">

		
			<fieldset class="fieldset">
				<legend>Attached Thumbnails</legend>
				<div style="padding:3px">
				
	<a href="https://www.linuxquestions.org/questions/blog_attachment.php?attachmentid=343&amp;d=1609144327" target="attachment" rel="Lightbox" id="attachment343"><img class="thumbnail" src="https://www.linuxquestions.org/questions/blog_attachment.php?attachmentid=343&amp;stc=1&amp;thumb=1&amp;d=1609144327" border="0" alt="Click image for larger version

Name:	maim_2020-12-28_10-30-02.png
Views:	17
Size:	18.1 KB
ID:	343" /></a>
	&nbsp;
	

				</div>
			</fieldset>
		
		
		
		

	</div>
<!-- / attachments -->
]]></content:encoded>
			<dc:creator>ondoho</dc:creator>
			<guid isPermaLink="true">https://www.linuxquestions.org/questions/blog/ondoho-804260/how-to-mark-a-thread-solved-37593/</guid>
		</item>
		<item>
			<title>Borg Backup</title>
			<link>https://www.linuxquestions.org/questions/blog/ondoho-804260/borg-backup-37555/</link>
			<pubDate>Sun, 03 Sep 2017 13:42:40 GMT</pubDate>
			<description>Finished setting up an automated backup scheme. 
Continue reading... (http://dt.iki.fi/borgbackup/)</description>
			<content:encoded><![CDATA[<div>Finished setting up an automated backup scheme.<br />
<a href="http://dt.iki.fi/borgbackup/" target="_blank" rel="nofollow">Continue reading...</a></div>

]]></content:encoded>
			<dc:creator>ondoho</dc:creator>
			<guid isPermaLink="true">https://www.linuxquestions.org/questions/blog/ondoho-804260/borg-backup-37555/</guid>
		</item>
		<item>
			<title>Pinebook</title>
			<link>https://www.linuxquestions.org/questions/blog/ondoho-804260/pinebook-37545/</link>
			<pubDate>Sat, 26 Aug 2017 11:01:08 GMT</pubDate>
			<description><![CDATA[Got it last week, took a while to get it & set it up. 
Continue reading... (http://dt.iki.fi/pinebook/)]]></description>
			<content:encoded><![CDATA[<div>Got it last week, took a while to get it &amp; set it up.<br />
<a href="http://dt.iki.fi/pinebook/" target="_blank" rel="nofollow">Continue reading...</a></div>

]]></content:encoded>
			<dc:creator>ondoho</dc:creator>
			<guid isPermaLink="true">https://www.linuxquestions.org/questions/blog/ondoho-804260/pinebook-37545/</guid>
		</item>
	</channel>
</rss>
