<?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=5871&amp;type=rss" rel="self" type="application/rss+xml" />
		<title><![CDATA[Dev1 Galaxy Forum / Devuan Ceres - X not starting at kernel 6.4 + 340.108 driver]]></title>
		<link>https://dev1galaxy.org/viewtopic.php?id=5871</link>
		<description><![CDATA[The most recent posts in Devuan Ceres - X not starting at kernel 6.4 + 340.108 driver.]]></description>
		<lastBuildDate>Wed, 30 Aug 2023 01:05:37 +0000</lastBuildDate>
		<generator>FluxBB</generator>
		<item>
			<title><![CDATA[Re: Devuan Ceres - X not starting at kernel 6.4 + 340.108 driver]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=43942#p43942</link>
			<description><![CDATA[<p>@Marjorie<br />Understood, replace original content of<span class="bbc">sudo gedit /etc/init.d/nvidia-persistenced</span> with yours version of script<br />Thank you i will try when will be at unstable</p>]]></description>
			<author><![CDATA[dummy@example.com (deepforest)]]></author>
			<pubDate>Wed, 30 Aug 2023 01:05:37 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=43942#p43942</guid>
		</item>
		<item>
			<title><![CDATA[Re: Devuan Ceres - X not starting at kernel 6.4 + 340.108 driver]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=43827#p43827</link>
			<description><![CDATA[<div class="quotebox"><cite>deepforest wrote:</cite><blockquote><div><p>are you mean this script?<br /><a href="https://dev1galaxy.org/viewtopic.php?pid=20903#p20903" rel="nofollow">https://dev1galaxy.org/viewtopic.php?pid=20903#p20903</a><br />how use it?<br />now i am on Deadalus and cant chek it.<br />but i can do it in future if you talk me how to use those script.</p></div></blockquote></div><p>OK. I&#039;m assuming that the only problem we are trying to address is with nvidia-persistenced.</p><p>My modiified nvidia-persistenced init script is as follows:</p><div class="codebox"><pre class="vscroll"><code>#!/bin/sh -e
#
# NVIDIA Persistence Daemon Init Script
#
# Copyright (c) 2013 NVIDIA Corporation
#
# Permission is hereby granted, free of charge, to any person obtaining a
# copy of this software and associated documentation files (the &quot;Software&quot;),
# to deal in the Software without restriction, including without limitation
# the rights to use, copy, modify, merge, publish, distribute, sublicense,
# and/or sell copies of the Software, and to permit persons to whom the
# Software is furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
# DEALINGS IN THE SOFTWARE.
#
# This is a sample System V init script, designed to show how the NVIDIA
# Persistence Daemon can be started.
#
# This sample does not rely on any init system functions, to ensure the
# widest portability possible.
#
# chkconfig: 2345 99 01
# description: Starts and stops the NVIDIA Persistence Daemon
# processname: nvidia-persistenced
#
### BEGIN INIT INFO
# Provides:         nvidia-persistenced
# Required-Start:   $local_fs
# Required-Stop:    $local_fs
# Default-Start:    2 3 4 5
# Default-Stop:     0 1 6
# Short-Description: Starts and stops the NVIDIA Persistence Daemon
# Description:      Starts and stops the NVIDIA Persistence Daemon
### END INIT INFO

NVPD=nvidia-persistenced
NVPD_BIN=/usr/bin/${NVPD}
NVPD_RUNTIME=/var/run/${NVPD}
NVPD_PIDFILE=${NVPD_RUNTIME}/${NVPD}.pid
NVPD_USER=nvpd
NVPD_ACTION=${1}

# Gracefully exit if the package has been removed.
test -x $NVPD_BIN || exit 0

# Get the value of the PID
if [ -f ${NVPD_PIDFILE} ]; then
 read -r NVPD_PID &lt; &quot;${NVPD_PIDFILE}&quot;
# Is the daemon already running?
 if [ &quot;${NVPD_PID}&quot; ] ;then 
  if [ -d /proc/${NVPD_PID} ]
# Daemon is running, so stop it then start anew instance
   then
    case &quot;${1}&quot; in
     start)
      echo &quot;NVIDIA Persistence Daemon already running&quot; 
      NVPD_ACTION=restart
      ;;
     *)
      ;;
    esac
# Daemon not running, but there is a stale PID
   else
    echo &quot;NVIDIA Persistence Daemon, stale PID removed&quot;			
    unset NVPD_PID
    rm -rf &quot;${NVPD_RUNTIME}&quot;
  fi
 fi
fi

case &quot;${NVPD_ACTION}&quot; in
 start)
  echo &quot;Starting NVIDIA Persistence Daemon&quot;
# Execute the daemon as the intended user
  ${NVPD_BIN} --user ${NVPD_USER}
  ;;
 stop)
   echo &quot;Stopping NVIDIA Persistence Daemon&quot;
# Stop the daemon - its PID should have been read in
   [ ! -z &quot;${NVPD_PID}&quot; ] &amp;&amp; kill ${NVPD_PID} &amp;&gt; /dev/null
    ;;
  restart)
   $0 stop
   sleep 2
   $0 start
    ;;		
  *) echo &quot;usage: $0 {start|stop|restart}&quot;
    ;;
esac

exit 0</code></pre></div><p>1) With your mouse select all of the script and then copy it, using the &quot;Control&quot; and &quot;c&quot; keys together.</p><p>I use Cinnnamon, sudo and the gedit editor and will illustrate using these. If you use su -&#160; rather than sudo and another text editor just change to suit.</p><p>2) Open a terminal window.</p><p>3) in the terminal type: </p><div class="codebox"><pre><code>sudo gedit /etc/init.d/nvidia-persistenced</code></pre></div><p>This should open the nvidia-persistenced init code in the editor.</p><p>4) Select all the text with your mouse.</p><p>5) Press the &#039;Control&#039; and&#039; v&#039; keys together to paste my version in place of the existing text.</p><p>6) Save the updated code. In &#039;gedit&#039; there is a save button.</p><p>7) Close gedit.</p><p>7) in the terminal restart nvidia-persistenced by typing:</p><div class="codebox"><pre><code>sudo service nvidia-persistenced restart</code></pre></div><p>8) Close the terminal.</p>]]></description>
			<author><![CDATA[dummy@example.com (Marjorie)]]></author>
			<pubDate>Sat, 26 Aug 2023 19:55:47 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=43827#p43827</guid>
		</item>
		<item>
			<title><![CDATA[Re: Devuan Ceres - X not starting at kernel 6.4 + 340.108 driver]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=43823#p43823</link>
			<description><![CDATA[<p>thank you for your kindness and understanding <img src="https://dev1galaxy.org/img/smilies/smile.png" width="15" height="15" alt="smile" /></p>]]></description>
			<author><![CDATA[dummy@example.com (deepforest)]]></author>
			<pubDate>Sat, 26 Aug 2023 19:03:17 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=43823#p43823</guid>
		</item>
		<item>
			<title><![CDATA[Re: Devuan Ceres - X not starting at kernel 6.4 + 340.108 driver]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=43807#p43807</link>
			<description><![CDATA[<p>Well . . . your English is better than my Ukrainian and we can understand what you are trying to say. Thing is that if information related to your installation is misspelled, our search engine won&#039;t be able to find solutions to any problems you might solve. Just a bit more attention would be really appreciated. Thanks. <img src="https://dev1galaxy.org/img/smilies/smile.png" width="15" height="15" alt="smile" /></p>]]></description>
			<author><![CDATA[dummy@example.com (golinux)]]></author>
			<pubDate>Sat, 26 Aug 2023 02:25:30 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=43807#p43807</guid>
		</item>
		<item>
			<title><![CDATA[Re: Devuan Ceres - X not starting at kernel 6.4 + 340.108 driver]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=43802#p43802</link>
			<description><![CDATA[<p>ok, sorry:)<br />I&#039;m not attentive and I don&#039;t know well English, its not my native language.</p>]]></description>
			<author><![CDATA[dummy@example.com (deepforest)]]></author>
			<pubDate>Sat, 26 Aug 2023 01:46:09 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=43802#p43802</guid>
		</item>
		<item>
			<title><![CDATA[Re: Devuan Ceres - X not starting at kernel 6.4 + 340.108 driver]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=43796#p43796</link>
			<description><![CDATA[<p>@deepforest . . . There is no &quot;Deadalus&quot; at Devuan (or anyplace else afaik). </p><p>PLEASE stop posting erroneous technical information on this forum and correct your previous spelling errors that might confuse other users. I am tired of cleaning up your mess.</p><p>Then . . . learn how to spell DAEDALUS correctly so our search engine will find the actual Devuan distribution to which you are referring.</p><p>Thanks for helping to make this forum a more accurate resource for other users.</p>]]></description>
			<author><![CDATA[dummy@example.com (golinux)]]></author>
			<pubDate>Fri, 25 Aug 2023 19:17:17 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=43796#p43796</guid>
		</item>
		<item>
			<title><![CDATA[Re: Devuan Ceres - X not starting at kernel 6.4 + 340.108 driver]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=43795#p43795</link>
			<description><![CDATA[<p>are you mean this script?<br /><a href="https://dev1galaxy.org/viewtopic.php?pid=20903#p20903" rel="nofollow">https://dev1galaxy.org/viewtopic.php?pid=20903#p20903</a><br />how use it?<br />now i am on Deadalus and cant chek it.<br />but i can do it in future if you talk me how to use those script.</p>]]></description>
			<author><![CDATA[dummy@example.com (deepforest)]]></author>
			<pubDate>Fri, 25 Aug 2023 19:02:39 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=43795#p43795</guid>
		</item>
		<item>
			<title><![CDATA[Re: Devuan Ceres - X not starting at kernel 6.4 + 340.108 driver]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=43734#p43734</link>
			<description><![CDATA[<div class="quotebox"><cite>deepforest wrote:</cite><blockquote><div><p>Something progress in my question<br />This <a href="https://www.if-not-true-then-false.com/2021/debian-ubuntu-linux-mint-nvidia-guide/" rel="nofollow">https://www.if-not-true-then-false.com/ … dia-guide/</a><br />not working at Ceres but working at Deadalus <img src="https://dev1galaxy.org/img/smilies/smile.png" width="15" height="15" alt="smile" /></p><p>PS at Ceres working this solution</p><div class="codebox"><pre><code>apt install nvidia-legacy-340xx-driver </code></pre></div><p>but have issue with</p><div class="codebox"><pre><code>nvidia-persistenced failed to initialize</code></pre></div><p><a href="https://dev1galaxy.org/viewtopic.php?id=5881" rel="nofollow">https://dev1galaxy.org/viewtopic.php?id=5881</a></p></div></blockquote></div><p>If you use apt to install nvidia-legacy-340xx-driver it may well pull in the original unpatched /etc/init.d/nvidia-persistenced. <br />Have you tried replacing it with my patched version and then restarting it?</p><div class="codebox"><pre><code>:~$ sudo service nvidia-persistenced restart</code></pre></div>]]></description>
			<author><![CDATA[dummy@example.com (Marjorie)]]></author>
			<pubDate>Thu, 24 Aug 2023 14:58:18 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=43734#p43734</guid>
		</item>
		<item>
			<title><![CDATA[Re: Devuan Ceres - X not starting at kernel 6.4 + 340.108 driver]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=43634#p43634</link>
			<description><![CDATA[<p>Something progress in my question<br />This <a href="https://www.if-not-true-then-false.com/2021/debian-ubuntu-linux-mint-nvidia-guide/" rel="nofollow">https://www.if-not-true-then-false.com/ … dia-guide/</a><br />not working at Ceres but working at Deadalus <img src="https://dev1galaxy.org/img/smilies/smile.png" width="15" height="15" alt="smile" /></p><p>PS at Ceres working this solution</p><div class="codebox"><pre><code>apt install nvidia-legacy-340xx-driver </code></pre></div><p>but have issue with</p><div class="codebox"><pre><code>nvidia-persistenced failed to initialize</code></pre></div><p><a href="https://dev1galaxy.org/viewtopic.php?id=5881" rel="nofollow">https://dev1galaxy.org/viewtopic.php?id=5881</a></p>]]></description>
			<author><![CDATA[dummy@example.com (deepforest)]]></author>
			<pubDate>Mon, 21 Aug 2023 18:35:58 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=43634#p43634</guid>
		</item>
		<item>
			<title><![CDATA[Re: Devuan Ceres - X not starting at kernel 6.4 + 340.108 driver]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=43633#p43633</link>
			<description><![CDATA[<div class="quotebox"><cite>Segfault wrote:</cite><blockquote><div><p>So your nvidia kernel module is crashing. Not that unexpected with obsolete driver and newer operating system. I recite, ditch it. There is nothing to win by using the blob on this old card. Any hardware acceleration it may have had in its heyday is obsolete and useless now. Getting rid of proprietary driver which taints your system is a plus.</p></div></blockquote></div><p>Problem only at Devuan Ceres, at Artix and Fedora 38 all works good with 6.4 kernel + 340.108 patched</p>]]></description>
			<author><![CDATA[dummy@example.com (deepforest)]]></author>
			<pubDate>Mon, 21 Aug 2023 18:31:48 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=43633#p43633</guid>
		</item>
		<item>
			<title><![CDATA[Re: Devuan Ceres - X not starting at kernel 6.4 + 340.108 driver]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=43632#p43632</link>
			<description><![CDATA[<div class="quotebox"><cite>stopAI wrote:</cite><blockquote><div><div class="quotebox"><cite>deepforest wrote:</cite><blockquote><div><p>After upgrade Devuan to 6.4 kernel</p></div></blockquote></div><p>Why do you need such a new kernel if you use old video card?</p></div></blockquote></div><p>its simple only unstable have support of my legacy card<br /><a href="https://wiki.debian.org/NvidiaGraphicsDrivers#Version_340.108" rel="nofollow">https://wiki.debian.org/NvidiaGraphicsD … on_340.108</a></p><div class="quotebox"><cite>golinux wrote:</cite><blockquote><div><p>Humans are not rational . . .</p></div></blockquote></div><p>i see that you really &quot;pro&quot;:)<br /><a href="https://wiki.debian.org/NvidiaGraphicsDrivers#Version_340.108" rel="nofollow">https://wiki.debian.org/NvidiaGraphicsD … on_340.108</a></p>]]></description>
			<author><![CDATA[dummy@example.com (deepforest)]]></author>
			<pubDate>Mon, 21 Aug 2023 18:28:50 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=43632#p43632</guid>
		</item>
		<item>
			<title><![CDATA[Re: Devuan Ceres - X not starting at kernel 6.4 + 340.108 driver]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=43523#p43523</link>
			<description><![CDATA[<p>Humans are not rational . . .</p>]]></description>
			<author><![CDATA[dummy@example.com (golinux)]]></author>
			<pubDate>Fri, 18 Aug 2023 16:05:02 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=43523#p43523</guid>
		</item>
		<item>
			<title><![CDATA[Re: Devuan Ceres - X not starting at kernel 6.4 + 340.108 driver]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=43522#p43522</link>
			<description><![CDATA[<div class="quotebox"><cite>deepforest wrote:</cite><blockquote><div><p>After upgrade Devuan to 6.4 kernel</p></div></blockquote></div><p>Why do you need such a new kernel if you use old video card?</p>]]></description>
			<author><![CDATA[dummy@example.com (stopAI)]]></author>
			<pubDate>Fri, 18 Aug 2023 16:02:37 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=43522#p43522</guid>
		</item>
		<item>
			<title><![CDATA[Re: Devuan Ceres - X not starting at kernel 6.4 + 340.108 driver]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=43521#p43521</link>
			<description><![CDATA[<p>So your nvidia kernel module is crashing. Not that unexpected with obsolete driver and newer operating system. I recite, ditch it. There is nothing to win by using the blob on this old card. Any hardware acceleration it may have had in its heyday is obsolete and useless now. Getting rid of proprietary driver which taints your system is a plus.</p>]]></description>
			<author><![CDATA[dummy@example.com (Segfault)]]></author>
			<pubDate>Fri, 18 Aug 2023 14:38:34 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=43521#p43521</guid>
		</item>
		<item>
			<title><![CDATA[Re: Devuan Ceres - X not starting at kernel 6.4 + 340.108 driver]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=43494#p43494</link>
			<description><![CDATA[<p>syslog<br /><a href="https://pastebin.com/raw/zLGET6dY" rel="nofollow">https://pastebin.com/raw/zLGET6dY</a></p><div class="codebox"><pre><code>watchdog: BUG: soft lockup - CPU#2 stuck for 78s! [Xorg:2143]</code></pre></div>]]></description>
			<author><![CDATA[dummy@example.com (deepforest)]]></author>
			<pubDate>Thu, 17 Aug 2023 21:59:52 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=43494#p43494</guid>
		</item>
	</channel>
</rss>
