<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<atom:link href="http://dev1galaxy.org/extern.php?action=feed&amp;tid=6777&amp;type=rss" rel="self" type="application/rss+xml" />
		<title><![CDATA[Dev1 Galaxy Forum / Fresh Daedalus, residual app install issues]]></title>
		<link>http://dev1galaxy.org/viewtopic.php?id=6777</link>
		<description><![CDATA[The most recent posts in Fresh Daedalus, residual app install issues.]]></description>
		<lastBuildDate>Sun, 18 Aug 2024 00:15:51 +0000</lastBuildDate>
		<generator>FluxBB</generator>
		<item>
			<title><![CDATA[Re: Fresh Daedalus, residual app install issues]]></title>
			<link>http://dev1galaxy.org/viewtopic.php?pid=51703#p51703</link>
			<description><![CDATA[<p>Thanks, that&#039;s a relief. I thought that AMD was either on proprietary driver or on nouveau (same as nvidia) so if I installed anything AMD it might then prevent nouveau from driving. I&#039;m an ignorant moron, that&#039;s why I&#039;ve had nothing but nvidias until now :-)</p>]]></description>
			<author><![CDATA[dummy@example.com (torquebar)]]></author>
			<pubDate>Sun, 18 Aug 2024 00:15:51 +0000</pubDate>
			<guid>http://dev1galaxy.org/viewtopic.php?pid=51703#p51703</guid>
		</item>
		<item>
			<title><![CDATA[Re: Fresh Daedalus, residual app install issues]]></title>
			<link>http://dev1galaxy.org/viewtopic.php?pid=51686#p51686</link>
			<description><![CDATA[<div class="quotebox"><blockquote><div><p>Thanks for the explain; so if I want to stay with nouveau then I shouldn&#039;t install it. Right now nouveau is driving my temporary nvidia card, I presume that when I change the AMD card nouveau will simply use its non-proprietary AMD driver?</p></div></blockquote></div><p>You are thinking in Windows terms. </p><p>No, a parallel installation of the amd graphics firmware will not kill you nouveau stuff or interfere in any way. They are no &quot;drivers&quot; in Windows terms. They are just firmware that is required for a reasonable display. </p><p><strong>And they are not used at all if the kernel does not detect an AMD graphics during boot.</strong></p><p>What you could refer to as driver for the AMD card is already contained in the kernel itself. There are no separate files like for an nvidea card. And there is no split into free and proprietary drivers for AMD. The one thats build in works fine.</p>]]></description>
			<author><![CDATA[dummy@example.com (rolfie)]]></author>
			<pubDate>Sat, 17 Aug 2024 06:45:07 +0000</pubDate>
			<guid>http://dev1galaxy.org/viewtopic.php?pid=51686#p51686</guid>
		</item>
		<item>
			<title><![CDATA[Re: Fresh Daedalus, residual app install issues]]></title>
			<link>http://dev1galaxy.org/viewtopic.php?pid=51682#p51682</link>
			<description><![CDATA[<div class="quotebox"><blockquote><div><p>firmware-amd-graphics adds firmware files for AMD graphics chips to /lib/firmware/amdgpu so that they are available during boot time. They are only pulled if an AMD graphics card is detected. No need to remove them. They will not hurt.</p></div></blockquote></div><p>Thanks for the explain; so if I want to stay with nouveau then I shouldn&#039;t install it. Right now nouveau is driving my temporary nvidia card, I presume that when I change the AMD card nouveau will simply use its non-proprietary AMD driver?</p>]]></description>
			<author><![CDATA[dummy@example.com (torquebar)]]></author>
			<pubDate>Sat, 17 Aug 2024 01:03:15 +0000</pubDate>
			<guid>http://dev1galaxy.org/viewtopic.php?pid=51682#p51682</guid>
		</item>
		<item>
			<title><![CDATA[Re: Fresh Daedalus, residual app install issues]]></title>
			<link>http://dev1galaxy.org/viewtopic.php?pid=51655#p51655</link>
			<description><![CDATA[<p><span class="bbc">firmware-amd-graphics</span> adds firmware files for AMD graphics chips to /lib/firmware/amdgpu so that they are available during boot time. They are only pulled if an AMD graphics card is detected. No need to remove them. They will not hurt.</p><p>Otter: refer to <a href="https://otter-browser.org/" rel="nofollow">https://otter-browser.org/</a></p>]]></description>
			<author><![CDATA[dummy@example.com (rolfie)]]></author>
			<pubDate>Fri, 16 Aug 2024 11:47:05 +0000</pubDate>
			<guid>http://dev1galaxy.org/viewtopic.php?pid=51655#p51655</guid>
		</item>
		<item>
			<title><![CDATA[Re: Fresh Daedalus, residual app install issues]]></title>
			<link>http://dev1galaxy.org/viewtopic.php?pid=51653#p51653</link>
			<description><![CDATA[<p>I don&#039;t know <span class="bbc">synaptic</span>, but can parse the list to <span class="bbc">apt</span>. If you hate terminals, just ignore this.</p><p>&quot;listapt.txt&quot; contains _all_ debian packages in the installed repositories (--installed or --manual-installed would do a selection like below).</p><p>You want to re-install the ones marked with &quot;[installed]&quot;, not &quot;[installed,automatic]&quot;. Have a good look at &quot;[installed,local]&quot;, which were either downloaded or not in the current repositories.</p><div class="codebox"><pre><code>cat listapt.txt | grep &#039;\[installed,local\]&#039;</code></pre></div><p>Let&#039;s prepare the installation:<br />There will be errors; work on cleaned.list.txt, until apt succeeds. Then omit &quot;-s&quot; in the <span class="bbc">apt</span> command.</p><div class="codebox"><pre><code>cat listapt.txt | grep &#039;\[installed\]&#039; | awk -F/ &#039;{print $1}&#039; &gt;cleaned.list.txt
apt install -s  $(cat cleaned.list.txt | awk &#039;{printf&quot;%s &quot;, $0}&#039;) </code></pre></div><p>Too many errors? Maybe just the tasks for the big picture?</p><div class="codebox"><pre><code>apt install  $(cat cleaned.list.txt | grep ^task | awk &#039;{printf&quot;%s &quot;, $0}&#039;)</code></pre></div><p>Hope this helps, and yes I&#039;m about to do that myself.</p>]]></description>
			<author><![CDATA[dummy@example.com (delgado)]]></author>
			<pubDate>Fri, 16 Aug 2024 10:59:01 +0000</pubDate>
			<guid>http://dev1galaxy.org/viewtopic.php?pid=51653#p51653</guid>
		</item>
		<item>
			<title><![CDATA[Re: Fresh Daedalus, residual app install issues]]></title>
			<link>http://dev1galaxy.org/viewtopic.php?pid=51641#p51641</link>
			<description><![CDATA[<p><strong>Thank you all very much!</strong></p><p><strong>nixer:</strong><br />Google-earth-pro downloaded, installed, tested. Works just fine without the nvidia driver on nouveau. <br />Librewolf installed, a litlle footworky but hey...<br />About driver boot issues: booting recovery mode not always possible. I pulled the AMD card that blew and inserted my opld nvidia card but never got a chance to revert to nouveau on my Suse isnstallation. As a result I cannot boot it at all, would have to do it with chroot from another system but I won&#039;t bother. New AMD card is coming next week, Suse might just boot again after I install it (there will be no more nvidias).</p><p><strong>StopAI:</strong><br />Packlist written on desktop,</p><p><strong>rolfie:</strong></p><div class="codebox"><pre><code>firmware-amd-graphics</code></pre></div><p>found, installed for test, removed. Wasn&#039;t sure about it messing up my current and temporary operation ov nvidia card using nouveau.</p><p><strong>chris2be8:</strong><br />...done.&#160; Nouveau is in fact in charge, the surprise was that google-earth work pretty good with it!<br />So I might just stay with nouveau after installing new AMD card. I&#039;m no gamer and tyhe ONLY reasion I&#039;ve been using the proprietary drivers was that before GE would not work without them.</p><p><strong>Oustanding issues:</strong></p><p>Install Otter web navigator?</p><p>How to get synaptic to use package list produced with </p><div class="codebox"><pre><code>apt list &gt; listapt.txt</code></pre></div><p>?</p>]]></description>
			<author><![CDATA[dummy@example.com (torquebar)]]></author>
			<pubDate>Fri, 16 Aug 2024 00:10:23 +0000</pubDate>
			<guid>http://dev1galaxy.org/viewtopic.php?pid=51641#p51641</guid>
		</item>
		<item>
			<title><![CDATA[Re: Fresh Daedalus, residual app install issues]]></title>
			<link>http://dev1galaxy.org/viewtopic.php?pid=51636#p51636</link>
			<description><![CDATA[<p>To check what driver is being used for your nvidia card:</p><div class="codebox"><pre><code>chris@rigel:~/bin$ lspci | grep -i nvidia
01:00.0 VGA compatible controller: NVIDIA Corporation GF104 [GeForce GTX 460] (rev a1)
01:00.1 Audio device: NVIDIA Corporation GF104 High Definition Audio Controller (rev a1)</code></pre></div><p>Check the video card as follows (updating the address if necessary).</p><div class="codebox"><pre><code>chris@rigel:~/bin$ lspci -v -s 01:00.0
01:00.0 VGA compatible controller: NVIDIA Corporation GF104 [GeForce GTX 460] (rev a1) (prog-if 00 [VGA controller])
	Subsystem: Gigabyte Technology Co., Ltd GF104 [GeForce GTX 460]
	Flags: bus master, fast devsel, latency 0, IRQ 34
	Memory at f4000000 (32-bit, non-prefetchable) [size=32M]
	Memory at e8000000 (64-bit, prefetchable) [size=128M]
	Memory at e4000000 (64-bit, prefetchable) [size=64M]
	I/O ports at ac00 [size=128]
	[virtual] Expansion ROM at 000c0000 [disabled] [size=128K]
	Capabilities: &lt;access denied&gt;
	Kernel driver in use: nvidia
	Kernel modules: nvidia</code></pre></div><p>The last two lines should say nouveau if that&#039;s being used (I&#039;m using the nvidia driver so I can run CUDA apps on the card).</p>]]></description>
			<author><![CDATA[dummy@example.com (chris2be8)]]></author>
			<pubDate>Thu, 15 Aug 2024 16:26:12 +0000</pubDate>
			<guid>http://dev1galaxy.org/viewtopic.php?pid=51636#p51636</guid>
		</item>
		<item>
			<title><![CDATA[Re: Fresh Daedalus, residual app install issues]]></title>
			<link>http://dev1galaxy.org/viewtopic.php?pid=51633#p51633</link>
			<description><![CDATA[<p>To get information about your system <span class="bbc">inxi</span> would be a good choice. </p><p>An AMD graphics card requires a suitable kernel and the <span class="bbc">firmware-amd-graphics</span> package.</p>]]></description>
			<author><![CDATA[dummy@example.com (rolfie)]]></author>
			<pubDate>Thu, 15 Aug 2024 12:03:30 +0000</pubDate>
			<guid>http://dev1galaxy.org/viewtopic.php?pid=51633#p51633</guid>
		</item>
		<item>
			<title><![CDATA[Re: Fresh Daedalus, residual app install issues]]></title>
			<link>http://dev1galaxy.org/viewtopic.php?pid=51632#p51632</link>
			<description><![CDATA[<div class="quotebox"><blockquote><div><p>How do I save the list of all my installed packages with Synaptic, or load them into it from a previous installation to see if any are missing?</p></div></blockquote></div><p>Hello.</p><p>If I understand you correctly, you can do it this way:</p><p>create your system’s packages/applications list with a .txt file, using this command:</p><div class="codebox"><pre><code>apt list &gt; listapt.txt</code></pre></div><p>The above command generates a list of installed packages/applications and then outputs them to the file “<strong>listapt.txt</strong>”.</p><div class="quotebox"><blockquote><div><p>How do I get google-earth-pro installed (it&#039;s not in Synaptic)?</p><p>Ditto for Librewolf &amp; Otter web-navigators</p></div></blockquote></div><p>Maybe from flatpak?</p>]]></description>
			<author><![CDATA[dummy@example.com (stopAI)]]></author>
			<pubDate>Thu, 15 Aug 2024 12:02:33 +0000</pubDate>
			<guid>http://dev1galaxy.org/viewtopic.php?pid=51632#p51632</guid>
		</item>
		<item>
			<title><![CDATA[Re: Fresh Daedalus, residual app install issues]]></title>
			<link>http://dev1galaxy.org/viewtopic.php?pid=51631#p51631</link>
			<description><![CDATA[<p>For google-earth,<br /><a href="https://www.google.com/intl/en/earth/versions/" rel="nofollow">https://www.google.com/intl/en/earth/versions/</a></p><p>For librewolf,&#160; don&#039;t know about Otter<br /><a href="https://librewolf.net/installation/debian/" rel="nofollow">https://librewolf.net/installation/debian/</a></p><p>As for the synaptic file for installed packages, a web search is your friend as I know it can be done.&#160; But, I have never done it, yet.</p><p>For the video card issue, I suggest to download the video drivers needed before changing the cards, then install after the hardware change.&#160; If after changing the hardware the X desktop does not come up, you may have to boot into recovery mode to install the drivers.&#160; This is what I have done on several occasions.</p>]]></description>
			<author><![CDATA[dummy@example.com (nixer)]]></author>
			<pubDate>Thu, 15 Aug 2024 11:54:18 +0000</pubDate>
			<guid>http://dev1galaxy.org/viewtopic.php?pid=51631#p51631</guid>
		</item>
		<item>
			<title><![CDATA[Fresh Daedalus, residual app install issues]]></title>
			<link>http://dev1galaxy.org/viewtopic.php?pid=51629#p51629</link>
			<description><![CDATA[<p>Got my new version up and running (see upgrade post), just need some pointers for the following:</p><p>How do I get google-earth-pro installed (it&#039;s not in Synaptic)?</p><p>Ditto for Librewolf &amp; Otter web-navigators</p><p>How do I save the list of all my installed packages with Synaptic, or load them into it from a previous installation to see if any are missing?</p><p>I have a temporary nvidia graphics card, getting an AMD one in a few days. I&#160; <strong> t h i n k </strong>&#160; that nouveau is being used, how can I verify and what will I need to do when I get my AMD one (if anything)?&#160; Last I checked google-earth was not nice to see without a proprietary 3d ax driver.</p>]]></description>
			<author><![CDATA[dummy@example.com (torquebar)]]></author>
			<pubDate>Thu, 15 Aug 2024 01:54:02 +0000</pubDate>
			<guid>http://dev1galaxy.org/viewtopic.php?pid=51629#p51629</guid>
		</item>
	</channel>
</rss>
