<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	
	xmlns:georss="http://www.georss.org/georss"
	xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#"
	>

<channel>
	<title>The Basics &#8211; Switch to Linux</title>
	<atom:link href="https://i.rootbeer.co.nz/category/the-basics/feed/" rel="self" type="application/rss+xml" />
	<link>https://i.rootbeer.co.nz</link>
	<description>for business, education, or revolution</description>
	<lastBuildDate>Sun, 26 Sep 2021 05:08:01 +0000</lastBuildDate>
	<language>en-NZ</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=5.8.2</generator>
<site xmlns="com-wordpress:feed-additions:1">197485131</site>	<item>
		<title>How is the Linux filesystem organised?</title>
		<link>https://i.rootbeer.co.nz/how-is-the-linux-filesystem-organised/</link>
		
		<dc:creator><![CDATA[Brian]]></dc:creator>
		<pubDate>Thu, 23 Sep 2021 11:30:07 +0000</pubDate>
				<category><![CDATA[The Basics]]></category>
		<guid isPermaLink="false">https://i.rootbeer.co.nz/?p=230</guid>

					<description><![CDATA[It&#8217;s a tree, and like all trees, it starts with the root. If you want all the specifics, I suggest familiarising yourself with the Filesystem <a href="https://i.rootbeer.co.nz/how-is-the-linux-filesystem-organised/" class="btn btn-link continue-link">Continue Reading</a>]]></description>
										<content:encoded><![CDATA[
<p>It&#8217;s a tree, and like all trees, it starts with the root.</p>



<p>If you want all the specifics, I suggest familiarising yourself with the <a rel="noreferrer noopener" href="https://en.wikipedia.org/wiki/Filesystem_Hierarchy_Standard" data-type="URL" data-id="https://en.wikipedia.org/wiki/Filesystem_Hierarchy_Standard" target="_blank">Filesystem Hierarchy Standard (FHS)</a>. There&#8217;s a lot of detail there; the most important thing for you to understand is that, when coming from a Windows to a Linux environment, you don&#8217;t have &#8220;drive names&#8221;. There&#8217;s no &#8220;C:&#8221; or whatever. Everything starts at &#8220;/&#8221;. (That&#8217;s the root of the filesystem.)</p>



<p>To see what&#8217;s available from the root, drop into a command line (terminal) and type the commands:</p>



<pre class="wp-block-preformatted">cd /
ls</pre>



<p> The results will look something like this (this is my default Ubuntu 21.04 install):</p>



<figure class="wp-block-image size-full"><img loading="lazy" width="866" height="581" src="https://i.rootbeer.co.nz/wp-content/uploads/2021/09/Screenshot-from-2021-09-23-22-54-57.png" alt="" class="wp-image-231" srcset="https://i.rootbeer.co.nz/wp-content/uploads/2021/09/Screenshot-from-2021-09-23-22-54-57.png 866w, https://i.rootbeer.co.nz/wp-content/uploads/2021/09/Screenshot-from-2021-09-23-22-54-57-300x201.png 300w, https://i.rootbeer.co.nz/wp-content/uploads/2021/09/Screenshot-from-2021-09-23-22-54-57-768x515.png 768w" sizes="(max-width: 866px) 100vw, 866px" /></figure>



<p>Everything in dark blue is a directory. Everything in white is a text file. Everything in green (nothing in the shot above) is exceutable. The directories you&#8217;ll find yourself fiddling with the most include /etc, /home, /media, and /var.</p>



<h2>/etc</h2>



<p>/etc (pronounced et-see) has all the configuration files. Again default configuration of Ubuntu 21.04, here&#8217;s what I&#8217;ve got:</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="560" src="https://i.rootbeer.co.nz/wp-content/uploads/2021/09/Screenshot-from-2021-09-23-22-58-16-1024x560.png" alt="" class="wp-image-232" srcset="https://i.rootbeer.co.nz/wp-content/uploads/2021/09/Screenshot-from-2021-09-23-22-58-16-1024x560.png 1024w, https://i.rootbeer.co.nz/wp-content/uploads/2021/09/Screenshot-from-2021-09-23-22-58-16-300x164.png 300w, https://i.rootbeer.co.nz/wp-content/uploads/2021/09/Screenshot-from-2021-09-23-22-58-16-768x420.png 768w, https://i.rootbeer.co.nz/wp-content/uploads/2021/09/Screenshot-from-2021-09-23-22-58-16-1536x840.png 1536w, https://i.rootbeer.co.nz/wp-content/uploads/2021/09/Screenshot-from-2021-09-23-22-58-16.png 1920w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>



<p>Obviously there&#8217;s a lot in there. Again, anything in white is a text file; anything in dark blue is a directory. Notice the commands I&#8217;ve used: ls and cd.</p>



<p>&#8220;ls&#8221; gives you a directory &#8220;listing&#8221;.</p>



<p>&#8220;cd&#8221; changes to a directory.</p>



<p>&#8220;more&#8221;, &#8220;less&#8221;, and &#8220;cat&#8221; will show you the contents of text files; it&#8217;s useful to read up on how these commands work. My tendency is to use &#8220;less&#8221;, as it presents an easily-navigable, paged display of a file&#8217;s contents.</p>



<p>Note: when in doubt, RTFM. (You don&#8217;t want anyone to tell you &#8220;RTFM&#8221; when you ask a dumb question (there are dumb questions)). Read. The. Fucking. Manual. This means to read the manual page for whatever command is in question. For example, if you want to know how &#8220;less&#8221; works, don&#8217;t ask someone &#8220;hey, how does &#8216;less&#8217; work?&#8221; They will be within their rights to tell you to RTFM.) To read the (fucking) manual, type this at a command prompt:</p>



<pre class="wp-block-preformatted">man less</pre>



<p>As an example, you&#8217;ll see something like this:</p>



<figure class="wp-block-image size-full"><img loading="lazy" width="866" height="581" src="https://i.rootbeer.co.nz/wp-content/uploads/2021/09/Screenshot-from-2021-09-23-23-04-07.png" alt="" class="wp-image-233" srcset="https://i.rootbeer.co.nz/wp-content/uploads/2021/09/Screenshot-from-2021-09-23-23-04-07.png 866w, https://i.rootbeer.co.nz/wp-content/uploads/2021/09/Screenshot-from-2021-09-23-23-04-07-300x201.png 300w, https://i.rootbeer.co.nz/wp-content/uploads/2021/09/Screenshot-from-2021-09-23-23-04-07-768x515.png 768w" sizes="(max-width: 866px) 100vw, 866px" /></figure>



<p>Follow the on-screen instructions to learn how to navigate a paged viewer like this. (That is, RTFM; I&#8217;m not going to re-invent the manual here because <a href="http://acronymsandslang.com/definition/7443886/FTN-meaning.html" data-type="URL" data-id="http://acronymsandslang.com/definition/7443886/FTN-meaning.html" target="_blank" rel="noreferrer noopener">FTN</a>.)</p>



<p>It is well worth your time to get to know how these common, basic commands work; they&#8217;re extremely powerful and will help you navigate and administer your computer like a fucking boss.</p>



<p>Anyway. Have a cruise around /etc and see what&#8217;s in there. Don&#8217;t worry: unless you&#8217;re the administrator, you can&#8217;t break anything.</p>



<h2>/home</h2>



<p>Linux, like all UNIX-oriented operating systems, is a multi-user system. If you installed fresh and created one user, there will be only one sub-directory in /home. It will be named after you. Mine is /home/brian/.</p>



<p>There are lots of other users on the system. You can view them in the file /etc/passwd:</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="560" src="https://i.rootbeer.co.nz/wp-content/uploads/2021/09/Screenshot-from-2021-09-23-23-10-00-1024x560.png" alt="" class="wp-image-234" srcset="https://i.rootbeer.co.nz/wp-content/uploads/2021/09/Screenshot-from-2021-09-23-23-10-00-1024x560.png 1024w, https://i.rootbeer.co.nz/wp-content/uploads/2021/09/Screenshot-from-2021-09-23-23-10-00-300x164.png 300w, https://i.rootbeer.co.nz/wp-content/uploads/2021/09/Screenshot-from-2021-09-23-23-10-00-768x420.png 768w, https://i.rootbeer.co.nz/wp-content/uploads/2021/09/Screenshot-from-2021-09-23-23-10-00-1536x840.png 1536w, https://i.rootbeer.co.nz/wp-content/uploads/2021/09/Screenshot-from-2021-09-23-23-10-00.png 1920w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>



<p>You&#8217;ll never interact with most of them. It&#8217;s mostly just you and root, assuming you are your own administrator.</p>



<p>You might be thinking: what&#8217;s the freaking point to all this complication? Well, if, in principle, the administrator and users are separated, it&#8217;s much more difficult for malware to affect the system. Notice some of the user names in that file: www-data, mail, lp, and so on. They all have different jobs, and those jobs are logically separated from both users and the administrator. In a well-maintained system, even if www-data is compromised, that user cannot affect things like the printer, or you! If you&#8217;re compromised, you can&#8217;t affect the printer, or the web server, or whatever.</p>



<p>Notice, there are no subdirectories in /home for any of these utility users. That&#8217;s what we expect; they never log in; they never <em>use</em> the system, as you do. Sub-directories in /home are legitimate users set up by the administrator.</p>



<h2>/media</h2>



<p>If you plug in a USB drive, or pop a camera card in a slot, or whatever, that &#8220;device&#8221; will be &#8220;mounted&#8221; in a subdirectory of /media.</p>



<p>/media is reserved for removeable devices.</p>



<p>This is important: a device is anything attached to the computer. This includes the keyboard, the wifi controller, the screen, a printer, the hard drive, anything. All of those things are represented somewhere in the filesystem &#8212; as a &#8220;file&#8221;. This simplifies everything. If a printer can be treated like a file, then I can control access to the printer the same way I control access to a file. Easy peasy.</p>



<p>Briefly: the very concept of a file, in the UNIX world, includes the very concept of permission (more on this in a separate article). This is very important: the very idea of security is built in to the very concept of what it&#8217;s like to exist in a UNIX-style environment. (For ages, the idea of security was separate from the idea of a file, in a Microsoft environment. This made everything quite vulnerable, and this structural concern is among the reasons why there were so many ways to infect a Microsoft environment with malware. But I digress &#8212; and I guess Microsoft has changed its ways by now, I hear. I dunno. I don&#8217;t pay attention to those billionaire fuckers.)</p>



<p>So anyway, when you plug in a new device, the system recognises the presence of the new device and &#8220;mounts&#8221; it. This means that it gets its own spot in the filesystem. (Ages ago, this was all a manual process; nowadays, it&#8217;s all very simple, so lucky you!) When the system mounts something new, it will be mounted to a subdirectory of /media corresponding to the user&#8217;s name. In my case, anything I mount will live in /media/brian/.</p>



<h2>/var</h2>



<p>This is a directory where &#8220;variable&#8221; things go &#8212; things that we expect will change as the operating system operates. A specially useful example are the files in /var/log/. These are the log files, where the system tracks the things that happen &#8212; depending on how you&#8217;ve configured it to keep track of such things. When errors occur, they&#8217;ll be in here somewhere. When services restart, you&#8217;ll find logs of that as well. Have a bounce around in here and view some of the files. It&#8217;s good fun.</p>



<h2>Summary</h2>



<p>You&#8217;ve entered a different world. There&#8217;s a lot to learn at first, but everything is very deliberately designed &#8212; especially for security &#8212; and has been operating successfully for fifty years. It&#8217;s worth spending a little time getting to know how the filesystem works, and how it contributes to both the security and stability of a UNIX-oriented system like Linux. This is best done through the command line, and the manual.</p>



<p>When in doubt, indeed, RTFM.</p>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">230</post-id>	</item>
		<item>
		<title>How do I change what my computer is called on the network in Linux?</title>
		<link>https://i.rootbeer.co.nz/how-do-i-change-what-my-computer-is-called-on-the-network-in-linux/</link>
		
		<dc:creator><![CDATA[Brian]]></dc:creator>
		<pubDate>Wed, 22 Sep 2021 21:25:36 +0000</pubDate>
				<category><![CDATA[The Basics]]></category>
		<guid isPermaLink="false">https://i.rootbeer.co.nz/?p=200</guid>

					<description><![CDATA[This is called the &#8220;hostname&#8221;. The change is very simple, as the hostname is stored in a text file. That file is /etc/hostname (pronounced et-see <a href="https://i.rootbeer.co.nz/how-do-i-change-what-my-computer-is-called-on-the-network-in-linux/" class="btn btn-link continue-link">Continue Reading</a>]]></description>
										<content:encoded><![CDATA[
<p>This is called the &#8220;hostname&#8221;. The change is very simple, as the hostname is stored in a text file. That file is /etc/hostname (pronounced et-see host-name). Here&#8217;s mine, which I&#8217;ve changed from &#8220;Yoga&#8221; to &#8220;Yo-Yo-Yoga&#8221; (I use an editor called vim, which is ancestor of vi, which is not particularly user-friendly, but it&#8217;s damned powerful. Use whatever editor you like by changing the &#8220;vim&#8221; part to whatever, like &#8220;gedit&#8221; or &#8220;nano&#8221;):</p>



<pre class="wp-block-preformatted">sudo vim /etc/hostname</pre>



<figure class="wp-block-image size-full"><img loading="lazy" width="866" height="581" src="https://i.rootbeer.co.nz/wp-content/uploads/2021/09/Screenshot-from-2021-09-23-09-10-36.png" alt="" class="wp-image-201" srcset="https://i.rootbeer.co.nz/wp-content/uploads/2021/09/Screenshot-from-2021-09-23-09-10-36.png 866w, https://i.rootbeer.co.nz/wp-content/uploads/2021/09/Screenshot-from-2021-09-23-09-10-36-300x201.png 300w, https://i.rootbeer.co.nz/wp-content/uploads/2021/09/Screenshot-from-2021-09-23-09-10-36-768x515.png 768w" sizes="(max-width: 866px) 100vw, 866px" /></figure>



<p><em>(Note: hostnames must start with a letter and can contain only letters, numbers, and hyphens.)</em></p>



<p>Next, change any occurrence of the original hostname to the new one in /etc/hosts. Like this:</p>



<pre class="wp-block-preformatted">sudo vim /etc/hosts</pre>



<figure class="wp-block-image size-full"><img loading="lazy" width="866" height="581" src="https://i.rootbeer.co.nz/wp-content/uploads/2021/09/Screenshot-from-2021-09-23-09-18-57.png" alt="" class="wp-image-202" srcset="https://i.rootbeer.co.nz/wp-content/uploads/2021/09/Screenshot-from-2021-09-23-09-18-57.png 866w, https://i.rootbeer.co.nz/wp-content/uploads/2021/09/Screenshot-from-2021-09-23-09-18-57-300x201.png 300w, https://i.rootbeer.co.nz/wp-content/uploads/2021/09/Screenshot-from-2021-09-23-09-18-57-768x515.png 768w" sizes="(max-width: 866px) 100vw, 866px" /></figure>



<p>Now, to make the change take effect, either reboot (guh!) or &#8212; in my Ubuntu 21.04 case &#8212; use hostnamectl. (Other distributions and older versions of Ubuntu use different mechanisms; look up &#8220;what service do I use to reset hostname in [your Linux distribution]&#8221;.) Here&#8217;s what I did:</p>



<pre class="wp-block-preformatted">sudo hostnamectl set-hostname Yo-Yo-Yoga</pre>



<p>Where &#8220;Yo-Yo-Yoga&#8221;, as we all know by now, is my new, preferred hostname. Yours will likely be different, like &#8220;Hacker-Station-Delta&#8221; or &#8220;Party-Machine&#8221;.</p>



<p>Note that if you use hostnamectl without changing those files, then the next time you reboot, your computer will be named whatever is still in those files.</p>



<p>You can test the new hostname with the command &#8220;hostname&#8221;, like this:</p>



<figure class="wp-block-image size-full"><img loading="lazy" width="866" height="581" src="https://i.rootbeer.co.nz/wp-content/uploads/2021/09/Screenshot-from-2021-09-23-09-18-28.png" alt="" class="wp-image-203" srcset="https://i.rootbeer.co.nz/wp-content/uploads/2021/09/Screenshot-from-2021-09-23-09-18-28.png 866w, https://i.rootbeer.co.nz/wp-content/uploads/2021/09/Screenshot-from-2021-09-23-09-18-28-300x201.png 300w, https://i.rootbeer.co.nz/wp-content/uploads/2021/09/Screenshot-from-2021-09-23-09-18-28-768x515.png 768w" sizes="(max-width: 866px) 100vw, 866px" /></figure>



<p>I hope that was a lot of fun for all of you. I sure got a laugh out of it. In fact, I&#8217;m going to keep my hostname like this for a while. See you on the network!</p>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">200</post-id>	</item>
		<item>
		<title>Can I run Linux on my laptop?</title>
		<link>https://i.rootbeer.co.nz/can-i-run-linux-on-my-laptop/</link>
		
		<dc:creator><![CDATA[Brian]]></dc:creator>
		<pubDate>Sun, 12 Sep 2021 02:09:00 +0000</pubDate>
				<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[The Basics]]></category>
		<guid isPermaLink="false">https://i.rootbeer.co.nz/?p=102</guid>

					<description><![CDATA[(Almost entirely) Yes. For technical reasons, there are a few laptops out there that actually can&#8217;t run Linux; it&#8217;s to do with how their hard <a href="https://i.rootbeer.co.nz/can-i-run-linux-on-my-laptop/" class="btn btn-link continue-link">Continue Reading</a>]]></description>
										<content:encoded><![CDATA[
<p>(Almost entirely) Yes.</p>



<p>For technical reasons, <a rel="noreferrer noopener" href="https://venturebeat.com/2016/09/21/lenovo-confirms-that-linux-wont-work-on-yoga-900-and-900s-laptops/" data-type="URL" data-id="https://venturebeat.com/2016/09/21/lenovo-confirms-that-linux-wont-work-on-yoga-900-and-900s-laptops/" target="_blank">there are a few laptops out there</a> that actually can&#8217;t run Linux; it&#8217;s to do with how their hard drives are configured; it&#8217;s to do with RAID, and your eyes are already glazing over. Fair enough.</p>



<p>Your best bet is to use a popular search engine and enter a term along the lines of &#8220;[some random laptop] linux&#8221;. There <em>will</em> be information about someone out there in the world who has tried Linux on this machine. It&#8217;s a big world; you will not be the first to wonder.</p>



<p>The big players these days (Ubuntu, Mint, Arch, and so on) have all the drivers you can imagine bundled up in their distributions. Generally, you&#8217;ll never have to install a driver; that&#8217;s a problem of the past &#8212; and it was a hell of a problem when it was a problem, back in the day.</p>



<p>A good idea is to try running Linux from a USB stick (or some other medium) and see that everything works. For example, <a rel="noreferrer noopener" href="https://ubuntu.com/tutorials/try-ubuntu-before-you-install#1-getting-started" data-type="URL" data-id="https://ubuntu.com/tutorials/try-ubuntu-before-you-install#1-getting-started" target="_blank">Ubuntu offers instructions for creating a bootable medium</a> and going for a test drive. I won&#8217;t reinvent the wheel they invented, but the basics are: download a thing, write that thing to a medium that is bootable, boot from that medium, <em>have fun</em>!</p>



<p>If you&#8217;re trying to see whether Linux will run on an old laptop, then you might want to try a minimal &#8220;Live Linux&#8221;. <a rel="noreferrer noopener" href="https://www.techradar.com/nz/best/best-usb-bootable-distros" data-type="URL" data-id="https://www.techradar.com/nz/best/best-usb-bootable-distros" target="_blank">There are several options</a>, with the most popular teeny tiny Linux being <a rel="noreferrer noopener" href="https://puppylinux.com/" data-type="URL" data-id="https://puppylinux.com/" target="_blank">Puppy</a>. (It can be good fun to just hack around with tiny distributions if you want to learn some of the basics and some of the non-mainstream software options.)</p>



<p>Assuming that everything is working from the live distribution, use whatever graphical installer they offer and go for it!</p>



<p>If you want to, you can install Linux along side some other operating system, like Windows. To do so, you&#8217;ll need to create partitions &#8212; <em>scary</em>! But the installer will help you along, and again, assuming you&#8217;re following along with someone who has done this before on your laptop of choice, you&#8217;ll have a model to follow. In a case like this, you&#8217;ll be creating a &#8220;dual boot&#8221; system, and <a rel="noreferrer noopener" href="https://itsfoss.com/install-ubuntu-1404-dual-boot-mode-windows-8-81-uefi/" data-type="URL" data-id="https://itsfoss.com/install-ubuntu-1404-dual-boot-mode-windows-8-81-uefi/" target="_blank">the world is full of instructions</a> of how to set this up. (I can&#8217;t really help because I&#8217;ve never done this because Windows: yuck.)</p>



<p>Long story short: yes you can run Linux on your laptop, with very few exceptions. And these days, installation is as easy as booting from a removeable drive and following basic instructions.</p>



<p>Have a go. Good luck. Enjoy your freedom.</p>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">102</post-id>	</item>
		<item>
		<title>Do I need to use the command line?</title>
		<link>https://i.rootbeer.co.nz/do-i-need-to-use-the-command-line/</link>
		
		<dc:creator><![CDATA[Brian]]></dc:creator>
		<pubDate>Fri, 10 Sep 2021 20:44:48 +0000</pubDate>
				<category><![CDATA[The Basics]]></category>
		<guid isPermaLink="false">https://i.rootbeer.co.nz/?p=84</guid>

					<description><![CDATA[Yes. (Actually, you can do most things without the command line these days, but you really should use the command line whenever possible.) Linux is <a href="https://i.rootbeer.co.nz/do-i-need-to-use-the-command-line/" class="btn btn-link continue-link">Continue Reading</a>]]></description>
										<content:encoded><![CDATA[
<p>Yes.</p>



<p>(Actually, you can do most things without the command line these days, but you really should use the command line whenever possible.)</p>



<p>Linux is a UNIX-oriented operating system (there&#8217;s a lot more to it, but that&#8217;s all you need to be able to say at parties), and UNIX is a keyboard-oriented operating system. (There was no concept of a window when it was developed.) So, it&#8217;s best that you have a crack at the command line and take a little time to learn a few things. In fact, you can get things done a lot quicker with the command line than you can through a window.</p>



<h2>Advantages of using the command line</h2>



<p><strong>Power</strong>. In Linux, anything you can do in a window, you can do from the command line. But not everything you can do from the command line can be done in a window. This means that the command line is more powerful. (Of course, you can accidentally delete your entire system if you&#8217;re not careful. But you could spill coffee all over the machine and fry the main board, but you still keep a cup of coffee next to you am-i-right?)</p>



<p><strong>Speed</strong>. Navigating the filesystem, moving things, backing things up, renaming things, all that business &#8212; much easier from the command line. Commands such as mv and cp are super awesome and you don&#8217;t have to drag and drop icons all over the place. (mv for &#8216;move&#8217; and cp for &#8216;copy&#8217;.) Once you have a sense of the filesystem, which is set up like a tree, plus a few basic commands, everything falls into place. Trust me.</p>



<p><strong>Knowledge</strong>. If you try to run something graphically and it fails, what happened? Well, you can browse the system logs, look around for messages, and so forth. Or, if you try to run the same thing from the command line, any errors will be reported there. So much simpler for troubleshooting.</p>



<h2>Disadvantages of using the command line</h2>



<p>Nope.</p>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">84</post-id>	</item>
	</channel>
</rss>
