<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0"><channel><title>Juozas's Dump - tagged #ubuntu</title><link>https://kyselo.eu/juozaspo</link><description>A growing collection of anime, photos and any other kind of weird content.[Tumblr|​X/Twitter|​Pillowfort|​Loforo|​Mastodon] [Random post]</description><item><title>My firefox installation on Ubuntu got updated to 124</title><link>https://kyselo.eu/juozaspo/post/34808</link><guid isPermaLink="true">https://kyselo.eu/juozaspo/post/34808</guid><description>&lt;p&gt;Mozilla is ready to release Mozilla Firefox 124, so Mozilla ppa for Ubuntu already has it already built even before the release date even though currently it is in the beta state. Because of that&amp;nbsp; Firefox version 124 got installed even if officially latest release is only Firefox 123 and no Release notes for 124 is ready yet.&lt;br&gt;&lt;/p&gt;</description><pubDate>Fri, 15 Mar 2024 22:13:40 +0100</pubDate></item><item><title>(no title)</title><link>https://kyselo.eu/juozaspo/post/33366</link><guid isPermaLink="true">https://kyselo.eu/juozaspo/post/33366</guid><description>&lt;img src="https://kyselo.eu//pub/5a/f2/9b/5af29bb2c437e505e62f4aa12a2e5870.jpg"&gt;</description><enclosure url="https://kyselo.eu/pub/5a/f2/9b/5af29bb2c437e505e62f4aa12a2e5870.jpg" length="1560434" type="image/jpeg"/><pubDate>Fri, 25 Aug 2023 15:07:43 +0200</pubDate></item><item><title>(no title)</title><link>https://kyselo.eu/juozaspo/post/30846</link><guid isPermaLink="true">https://kyselo.eu/juozaspo/post/30846</guid><description>&lt;img src="https://kyselo.eu//pub/b9/8e/c4/b98ec4e75c6d13c7cfc54ba3882df5dc.png"&gt;</description><enclosure url="https://kyselo.eu/pub/b9/8e/c4/b98ec4e75c6d13c7cfc54ba3882df5dc.png" length="198615" type="image/png"/><pubDate>Tue, 17 Jan 2023 15:59:55 +0100</pubDate></item><item><title>rm -rf --no-preserve-root /</title><link>https://kyselo.eu/juozaspo/post/30819</link><guid isPermaLink="true">https://kyselo.eu/juozaspo/post/30819</guid><description>&lt;p&gt;Trying to install an old Ubuntu Linux 10.04 LTS version and make it usable along currently running Ubuntu 22.04 LTS would fail as it would lead to dependency hell and other problems when trying to install video drivers. Just by installing base system, default kernel (2.6.x) and networking components the system would not boot unless booted from external usb with old bootloader installed on it. Also if target partition was formatted from modern system the bootloader would not install to any drive nor create its config files. It would still not work as the screen would not show anyhing unless the backported kernel (3.0.x) were installed from the repositories. It would require proprietary nvidia driver on graphical interface as open source driver would not work with my monitor as I found eariler. And after installing a newer kernel version that would work with current bootloader (from a deb file other than what is available on repositories) the nvidia driver installation would still fail as no kernel headers would be found at the time. Trying to install kernel header deb files would not work unless dpkg was updated to a version newer than available on the repositories. After upgrading dpkg and installing kernel headers the kernel modules would fail to build as it would not work with current c compiler, trying upgrade it would require manually downloading and installing required debs, and it might lead to dependency hell not mentioning some debs that would not be available to download ending with a system w/o working graphics. As I was trying to find such packages I ended by running the &lt;i&gt;rm -rf --no-preserve-root /&lt;/i&gt;&amp;nbsp; just out of frustration since I was unable to find them online :\ Also later I found that even backported 3.0.x nvidia kernel modules still wouldn't build as such kernel might be incompatible and/or driver would be broken. Conclusion: don't try to install a newer kernel from packages not coming in repositories and then try to install graphics drivers as it might lead to many problems in the future. Also don't use backported kernel as it would not be compatible with provided nvidia driver. Use virtual machine instead if needed.&lt;br&gt;&lt;/p&gt;</description><pubDate>Mon, 16 Jan 2023 19:05:02 +0100</pubDate></item><item><title>Reinstalled server os</title><link>https://kyselo.eu/juozaspo/post/29395</link><guid isPermaLink="true">https://kyselo.eu/juozaspo/post/29395</guid><description>&lt;p&gt;Today i've reinstalled the os of the server that runs my minetest server and related pages. It will take some time to setup everything and to restore what's needed. It has been running Ubuntu 20.04 LTS up until now and the new os is Debian 11.&lt;/p&gt;&lt;p&gt;&lt;b&gt;Edit:&lt;/b&gt; Got the web server working. Sadly no running minetest server yet.&lt;/p&gt;&lt;p&gt;&lt;b&gt;Edit2:&lt;/b&gt; Minetest server is finally back up and running, old worlds restored.&lt;br&gt;&lt;/p&gt;</description><pubDate>Wed, 26 Oct 2022 08:26:46 +0200</pubDate></item><item><title>Find manually installed packages that has other packages depending on it on Debian based systems</title><link>https://kyselo.eu/juozaspo/post/26356</link><guid isPermaLink="true">https://kyselo.eu/juozaspo/post/26356</guid><description>&lt;p&gt;Running command below generates a list of packages that can be marked as automatically installed, as long as &lt;i&gt;apt-rdepends&lt;/i&gt; package were already installed. It generates a script that can be used to mark all found packages as manually installed.&lt;br&gt;&lt;/p&gt;&lt;pre&gt;echo \#\!/bin/bash &amp;gt; mark-auto.sh; apt-mark showmanual|xargs -I{} sh -c '[ "{}" = "$(apt-rdepends -r --state-follow=Installed --state-show=Installed {} 2&amp;gt;/dev/null)" ] || echo apt-mark auto {}' &amp;gt;&amp;gt; &lt;span data-auto-link="true" data-href="http://mark-auto.sh"&gt;mark-auto.sh&lt;br&gt;&lt;/span&gt;&lt;/pre&gt;&lt;p&gt;It can be modified to mark packages automatically if preferred instead of writing to a script&lt;/p&gt;&lt;pre class=""&gt;apt-mark showmanual|xargs -I{} sh -c '[ "{}" = "$(apt-rdepends -r --state-follow=Installed --state-show=Installed {} 2&amp;gt;/dev/null)" ] || apt-mark auto {}'&lt;a href="http://mark-auto.sh"&gt;&lt;span data-auto-link="true" data-href="http://mark-auto.sh"&gt;&lt;/span&gt;&lt;/a&gt;&lt;br&gt;&lt;/pre&gt;&lt;p&gt;Before running apt-get autoremove run it with pretend mode (-s), e.g&lt;/p&gt;&lt;pre&gt;apt-get -s autoremove --purge&lt;/pre&gt;&lt;p&gt;Mark any package not desired to be removed with&lt;br&gt;&lt;/p&gt;&lt;pre&gt;apt-mark manual &amp;lt;package&amp;gt;&lt;br&gt;&lt;/pre&gt;</description><pubDate>Sat, 16 Apr 2022 16:01:49 +0200</pubDate></item><item><title>(no title)</title><link>https://kyselo.eu/juozaspo/post/19046</link><guid isPermaLink="true">https://kyselo.eu/juozaspo/post/19046</guid><description>&lt;img src="https://kyselo.eu//pub/e6/20/1f/e6201f7dc989d1da83ab3fed8ae28453.png"&gt;</description><enclosure url="https://kyselo.eu/pub/e6/20/1f/e6201f7dc989d1da83ab3fed8ae28453.png" length="55701" type="image/png"/><pubDate>Wed, 09 Jun 2021 06:40:03 +0200</pubDate></item></channel></rss>
