<?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=603&amp;type=rss" rel="self" type="application/rss+xml" />
		<title><![CDATA[Dev1 Galaxy Forum / [SOLVED] Redshift fails to start - .service files missing?]]></title>
		<link>https://dev1galaxy.org/viewtopic.php?id=603</link>
		<description><![CDATA[The most recent posts in [SOLVED] Redshift fails to start - .service files missing?.]]></description>
		<lastBuildDate>Fri, 14 Jul 2017 18:18:00 +0000</lastBuildDate>
		<generator>FluxBB</generator>
		<item>
			<title><![CDATA[Re: [SOLVED] Redshift fails to start - .service files missing?]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=3329#p3329</link>
			<description><![CDATA[<p>amd graphics and using intel i915 drivers/firmware?&#160; Are am I reading all this wrong?</p>]]></description>
			<author><![CDATA[dummy@example.com (fungus)]]></author>
			<pubDate>Fri, 14 Jul 2017 18:18:00 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=3329#p3329</guid>
		</item>
		<item>
			<title><![CDATA[Re: [SOLVED] Redshift fails to start - .service files missing?]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=1564#p1564</link>
			<description><![CDATA[<div class="quotebox"><cite>fsmithred wrote:</cite><blockquote><div><p>Maybe you need to install the firmware from backports.</p><div class="codebox"><pre><code>apt-get -t jessie-backports install firmware-iwlwifi</code></pre></div></div></blockquote></div><p>Thanks @fsmithred for your help, guess what, it worked! That was a good call, thank you for your recommendation.&#160; Now I can set this topic to resolved. </p><p>I have learned a lot over this over the past 4 days , it looks like when you add backports to your sources.list, you have to explicitly install each package from backports using &quot;apt-get -t jessie-backports install package_name&quot; which allows you to control which distribution or release the packages will be retrieved from.&#160; I guess it makes sense otherwise you might make you system unstable if you got everything upgraded when you run the usual &quot;apt-get update/upgrade&quot; command, therefore it looks to me that you are in control?</p><p>Also learned how to check wireless drivers.&#160; But I think I have a lot more still to learn.&#160; Thank you to @fsmithred, @lazlo, @golinux and @greenjeans for your excellent instructions and feedback.</p>]]></description>
			<author><![CDATA[dummy@example.com (hughparker1)]]></author>
			<pubDate>Fri, 19 May 2017 22:56:57 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=1564#p1564</guid>
		</item>
		<item>
			<title><![CDATA[Re: [SOLVED] Redshift fails to start - .service files missing?]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=1561#p1561</link>
			<description><![CDATA[<p>Maybe you need to install the firmware from backports.</p><div class="codebox"><pre><code>apt-get -t jessie-backports install firmware-iwlwifi</code></pre></div>]]></description>
			<author><![CDATA[dummy@example.com (fsmithred)]]></author>
			<pubDate>Fri, 19 May 2017 20:33:26 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=1561#p1561</guid>
		</item>
		<item>
			<title><![CDATA[Re: [SOLVED] Redshift fails to start - .service files missing?]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=1550#p1550</link>
			<description><![CDATA[<div class="quotebox"><cite>lazlo wrote:</cite><blockquote><div><p>@hughparker1&#160; The kernel module for the wifi NIC isn&#039;t loading.&#160; The firmware and the kernel module are two separate things that work together and both have to be running.&#160; </p><p>No wifi driver is listed in your lspci output:</p><div class="quotebox"><blockquote><div><p>...<br />01:00.0 Display controller: Advanced Micro Devices, Inc. [AMD/ATI] Sun XT [Radeon HD 8670A/8670M/8690M] (rev 81)<br />&#160; &#160; Subsystem: Dell Device 06b2<br />&#160; &#160; Kernel driver in use: radeon<br />02:00.0 Network controller: Intel Corporation Wireless 3160 (rev 83)<br />&#160; &#160; Subsystem: Intel Corporation Dual Band Wireless AC 3160<br />03:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL8101E/RTL8102E PCI Express Fast Ethernet controller (rev 07)<br />&#160; &#160; Subsystem: Dell Device 06b2<br />&#160; &#160; Kernel driver in use: r8169<br />...</p></div></blockquote></div><p>So if the update-initramfs -u and a reboot doesn&#039;t fix it try this:</p><div class="codebox"><pre><code>sudo modprobe iwlwifi</code></pre></div><p>If that works there will be no output from the command.&#160; If it doesn&#039;t work you&#039;ll get a an error and can check the kernel logs for more info.</p><p>To see what is keeping it from loading (either with modprobe or on boot) check the kernel log for errors:</p><div class="codebox"><pre><code>dmesg | egrep &#039;error|iwlwifi&#039;</code></pre></div><p>If you want to keep the latest portion of the kernel log updating in another TTY you can use tail:</p><div class="codebox"><pre><code>tail -f /var/log/dmesg</code></pre></div><p>That would allow you execute a command in one TTY and then switch to the one running tail to see what the kernel just logged into dmesg.&#160; That&#039;s handy if the grep command is returning information that is not useful for some reason.</p><p>If the module loads then check if the WNIC is running with ifconfig:</p><div class="codebox"><pre><code>sudo ifconfig</code></pre></div><p>If needed do:</p><div class="codebox"><pre><code>sudo ifconfig wlan0 up</code></pre></div><p>Once you can see it listed in the output from ifconfig wicd should be able to handle everything else though.</p><p>Good luck!</p><p>lazlo</p></div></blockquote></div><p>Thanks @lazlo for your feedback and suggestions to resolve my problem with wireless network.</p><p>I have ran the commands you suggested and the outputs are below...</p><p>EDIT2: forgot to include these ...</p><p>$ sudo update-initramfs -u</p><div class="codebox"><pre><code>hugh@DELL-INSP-DEVUAN:~$ sudo update-initramfs -u
update-initramfs: Generating /boot/initrd.img-4.9.0-0.bpo.2-amd64
W: Possible missing firmware /lib/firmware/rtl_nic/rtl8107e-2.fw for module r8169
W: Possible missing firmware /lib/firmware/rtl_nic/rtl8107e-1.fw for module r8169
W: Possible missing firmware /lib/firmware/rtl_nic/rtl8168h-2.fw for module r8169
W: Possible missing firmware /lib/firmware/rtl_nic/rtl8168h-1.fw for module r8169
live-boot: core filesystems devices utils udev wget blockdev.
hugh@DELL-INSP-DEVUAN:~$ </code></pre></div><p>&#160; &#160; REBOOT but still no wi-fi</p><p>so run this command...</p><p>$ sudo modprobe iwlwifi</p><div class="codebox"><pre><code>hugh@DELL-INSP-DEVUAN:~$ sudo modprobe iwlwifi
[sudo] password for hugh: 
hugh@DELL-INSP-DEVUAN:~$ </code></pre></div><p>&#160; &#160; no output but also no error messages</p><p>&#160; &#160; no wi-fi yet so REBOOT but still no wi-fi</p><p>first terminal window........</p><div class="codebox"><pre><code>hugh@DELL-INSP-DEVUAN:~$ sudo dmesg | egrep &#039;error|iwlwifi&#039;
[sudo] password for hugh: 
[    2.364163] tpm_crb: probe of MSFT0101:00 failed with error -16
[    2.539868] i915 0000:00:02.0: Direct firmware load for i915/skl_dmc_ver1_26.bin failed with error -2
[    2.542515] iwlwifi 0000:02:00.0: enabling device (0000 -&gt; 0002)
[    2.547727] iwlwifi 0000:02:00.0: firmware: failed to load iwlwifi-3160-17.ucode (-2)
[    2.547731] iwlwifi 0000:02:00.0: Direct firmware load for iwlwifi-3160-17.ucode failed with error -2
[    2.633304] radeon 0000:01:00.0: Direct firmware load for radeon/hainan_pfp.bin failed with error -2
[    2.633823] radeon 0000:01:00.0: Direct firmware load for radeon/hainan_me.bin failed with error -2
[    2.635139] radeon 0000:01:00.0: Direct firmware load for radeon/hainan_ce.bin failed with error -2
[    2.635350] radeon 0000:01:00.0: Direct firmware load for radeon/hainan_rlc.bin failed with error -2
[    2.635565] radeon 0000:01:00.0: Direct firmware load for radeon/hainan_mc.bin failed with error -2
[    2.636201] radeon 0000:01:00.0: Direct firmware load for radeon/hainan_k_smc.bin failed with error -2
[    2.683163] bluetooth hci0: Direct firmware load for intel/ibt-hw-37.7.10-fw-1.0.1.2d.d.bseq failed with error -2
hugh@DELL-INSP-DEVUAN:~$ </code></pre></div><p>second terminal window....</p><div class="codebox"><pre><code>hugh@DELL-INSP-DEVUAN:~$ sudo tail -f /var/log/dmesg
[sudo] password for hugh: 
[    4.288739] lp: driver loaded but no devices found
[    4.292337] ppdev: user-space parallel port driver
[    4.301771] fuse init (API version 7.26)
[    4.675720] RPC: Registered named UNIX socket transport module.
[    4.675721] RPC: Registered udp transport module.
[    4.675722] RPC: Registered tcp transport module.
[    4.675722] RPC: Registered tcp NFSv4.1 backchannel transport module.
[    4.678942] FS-Cache: Loaded
[    4.687961] FS-Cache: Netfs &#039;nfs&#039; registered for caching
[    4.697357] Installing knfsd (copyright (C) 1996 okir@monad.swb.de).</code></pre></div><p>first terminal window........</p><div class="codebox"><pre><code>hugh@DELL-INSP-DEVUAN:~$ sudo ifconfig
eth0      Link encap:Ethernet  HWaddr 84:7b:eb:13:91:2f  
          inet addr:192.168.1.8  Bcast:192.168.1.255  Mask:255.255.255.0
          inet6 addr: fe80::867b:ebff:fe13:912f/64 Scope:Link
          inet6 addr: fd58:1f28:a661:b500:867b:ebff:fe13:912f/64 Scope:Global
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
          RX packets:16677 errors:0 dropped:0 overruns:0 frame:0
          TX packets:1531 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000 
          RX bytes:1871547 (1.7 MiB)  TX bytes:167785 (163.8 KiB)

lo        Link encap:Local Loopback  
          inet addr:127.0.0.1  Mask:255.0.0.0
          inet6 addr: ::1/128 Scope:Host
          UP LOOPBACK RUNNING  MTU:65536  Metric:1
          RX packets:33 errors:0 dropped:0 overruns:0 frame:0
          TX packets:33 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1 
          RX bytes:3466 (3.3 KiB)  TX bytes:3466 (3.3 KiB)

hugh@DELL-INSP-DEVUAN:~$ </code></pre></div><p>first terminal window........</p><div class="codebox"><pre><code>hugh@DELL-INSP-DEVUAN:~$ sudo ifconfig wlan0 up
wlan0: ERROR while getting interface flags: No such device
hugh@DELL-INSP-DEVUAN:~$ </code></pre></div><p>Note: no change in second terminal window after the additional commands were run in the first terminal</p><p>Wicd Network Manager still says &quot;No wireless networks found&quot;</p><p>To be honest I don&#039;t know enough about linux to be able to examine the output and diagnose what the problem is so any advice on what I can do would be appreciated. Thanks again for the continued support, very much appreciated.</p><p><strong>EDIT:</strong>&#160; would it help if i uninstalled and then reinstalled &quot;firmware-iwlwifi&quot;</p>]]></description>
			<author><![CDATA[dummy@example.com (hughparker1)]]></author>
			<pubDate>Fri, 19 May 2017 15:45:23 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=1550#p1550</guid>
		</item>
		<item>
			<title><![CDATA[Re: [SOLVED] Redshift fails to start - .service files missing?]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=1548#p1548</link>
			<description><![CDATA[<p>@hughparker1&#160; The kernel module for the wifi NIC isn&#039;t loading.&#160; The firmware and the kernel module are two separate things that work together and both have to be running.&#160; </p><p>No wifi driver is listed in your lspci output:</p><div class="quotebox"><blockquote><div><p>...<br />01:00.0 Display controller: Advanced Micro Devices, Inc. [AMD/ATI] Sun XT [Radeon HD 8670A/8670M/8690M] (rev 81)<br />&#160; &#160; Subsystem: Dell Device 06b2<br />&#160; &#160; Kernel driver in use: radeon<br />02:00.0 Network controller: Intel Corporation Wireless 3160 (rev 83)<br />&#160; &#160; Subsystem: Intel Corporation Dual Band Wireless AC 3160<br />03:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL8101E/RTL8102E PCI Express Fast Ethernet controller (rev 07)<br />&#160; &#160; Subsystem: Dell Device 06b2<br />&#160; &#160; Kernel driver in use: r8169<br />...</p></div></blockquote></div><p>So if the update-initramfs -u and a reboot doesn&#039;t fix it try this:</p><div class="codebox"><pre><code>sudo modprobe iwlwifi</code></pre></div><p>If that works there will be no output from the command.&#160; If it doesn&#039;t work you&#039;ll get a an error and can check the kernel logs for more info.</p><p>To see what is keeping it from loading (either with modprobe or on boot) check the kernel log for errors:</p><div class="codebox"><pre><code>dmesg | egrep &#039;error|iwlwifi&#039;</code></pre></div><p>If you want to keep the latest portion of the kernel log updating in another TTY you can use tail:</p><div class="codebox"><pre><code>tail -f /var/log/dmesg</code></pre></div><p>That would allow you execute a command in one TTY and then switch to the one running tail to see what the kernel just logged into dmesg.&#160; That&#039;s handy if the grep command is returning information that is not useful for some reason.</p><p>If the module loads then check if the WNIC is running with ifconfig:</p><div class="codebox"><pre><code>sudo ifconfig</code></pre></div><p>If needed do:</p><div class="codebox"><pre><code>sudo ifconfig wlan0 up</code></pre></div><p>Once you can see it listed in the output from ifconfig wicd should be able to handle everything else though.</p><p>Good luck!</p><p>lazlo</p>]]></description>
			<author><![CDATA[dummy@example.com (lazlo)]]></author>
			<pubDate>Fri, 19 May 2017 10:40:55 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=1548#p1548</guid>
		</item>
		<item>
			<title><![CDATA[Re: [SOLVED] Redshift fails to start - .service files missing?]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=1547#p1547</link>
			<description><![CDATA[<div class="quotebox"><cite>greenjeans wrote:</cite><blockquote><div><p>Well i&#039;m not the ninja here obviously, but wondering if maybe you need to run update-initramfs -u? </p><p>I would think that would occur as part of the process after installing a new kernel but I could be wrong, thus my suggestion.</p></div></blockquote></div><p>Thanks @greenjeans I didn&#039;t know if there was any other step&#160; required as I haven&#039;t done kerknel upgrade in terminal before.&#160; I&#039;ll try it later today when I get home and let you know how I get on. Cheers.</p>]]></description>
			<author><![CDATA[dummy@example.com (hughparker1)]]></author>
			<pubDate>Fri, 19 May 2017 08:50:53 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=1547#p1547</guid>
		</item>
		<item>
			<title><![CDATA[Re: [SOLVED] Redshift fails to start - .service files missing?]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=1542#p1542</link>
			<description><![CDATA[<p>Well i&#039;m not the ninja here obviously, but wondering if maybe you need to run update-initramfs -u? </p><p>I would think that would occur as part of the process after installing a new kernel but I could be wrong, thus my suggestion.</p>]]></description>
			<author><![CDATA[dummy@example.com (greenjeans)]]></author>
			<pubDate>Thu, 18 May 2017 23:16:58 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=1542#p1542</guid>
		</item>
		<item>
			<title><![CDATA[Re: [SOLVED] Redshift fails to start - .service files missing?]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=1540#p1540</link>
			<description><![CDATA[<div class="quotebox"><cite>golinux wrote:</cite><blockquote><div><div class="quotebox"><cite>hughparker1 wrote:</cite><blockquote><div><p>Would it be worth installing the latest testing kernel on Devuan while I still have ascii in my sources.list?</p></div></blockquote></div><p>Disable the ascii repo.&#160; Add the Devuan backports repo and try that kernel first.&#160; I think it&#039;s at least 4.9 something.</p></div></blockquote></div><div class="quotebox"><cite>fsmithred wrote:</cite><blockquote><div><p>Yes, go with backports. Disable ascii. All the devs have been focused on getting jessie ready, and not much work has been done on ascii.</p><div class="codebox"><pre><code>apt-get -t jessie-backports install linux-image-4.9.0-0.bpo.2-amd64</code></pre></div></div></blockquote></div><p>Thanks @golinux and @fsmithred for advice and continued support</p><p>I installed latest kernel ...</p><div class="codebox"><pre><code>$ apt-get -t jessie-backports install linux-image-4.9.0-0.bpo.2-amd64</code></pre></div><p>and now boots to Desktop without &#039;nomodeset&#039; in linux line.&#160; &#160; &#160;Success!</p><p>Also Redshift is working perfectly now at sunset&#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; Success!</p><p>And my Brightness function keys are working now&#160; &#160; &#160; &#160; &#160; &#160; Success!</p><p>Only one small problem, no wi-fi detected which was working before I installed new kernel, very strange. </p><p>When I click on Wicd Network Manager is just says &#039;No wireless network found&#039;</p><p>I plugged in a network cable and tried installing the non-free package I normally use for Debian install...</p><div class="codebox"><pre><code>$ sudo apt install firmware-iwlwifi</code></pre></div><div class="codebox"><pre><code>hugh@DELL-INSP-DEVUAN:~$ sudo apt install firmware-iwlwifi
Reading package lists... Done
Building dependency tree       
Reading state information... Done
firmware-iwlwifi is already the newest version.
The following packages were automatically installed and are no longer required:
  grub-pc-bin libelfg0 libgeoclue0 libnm-glib4 libnm-util2 libuuid-perl
Use &#039;apt-get autoremove&#039; to remove them.
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
hugh@DELL-INSP-DEVUAN:~$ </code></pre></div><p>... so it looks like it&#039;s already installed but it&#039;s not working. Has anyone encountered this before?</p><p>this is the output for &#039;$ lspci -k&#039;</p><div class="codebox"><pre class="vscroll"><code>hugh@DELL-INSP-DEVUAN:~$ lspci -k
00:00.0 Host bridge: Intel Corporation Device 1904 (rev 08)
	Subsystem: Dell Device 06b2
	Kernel driver in use: skl_uncore
00:02.0 VGA compatible controller: Intel Corporation Device 1916 (rev 07)
	Subsystem: Dell Device 06b2
	Kernel driver in use: i915
00:14.0 USB controller: Intel Corporation Device 9d2f (rev 21)
	Subsystem: Dell Device 06b2
	Kernel driver in use: xhci_hcd
00:14.2 Signal processing controller: Intel Corporation Device 9d31 (rev 21)
	Subsystem: Dell Device 06b2
	Kernel driver in use: intel_pch_thermal
00:15.0 Signal processing controller: Intel Corporation Device 9d60 (rev 21)
	Subsystem: Dell Device 06b2
	Kernel driver in use: intel-lpss
00:15.1 Signal processing controller: Intel Corporation Device 9d61 (rev 21)
	Subsystem: Dell Device 06b2
	Kernel driver in use: intel-lpss
00:16.0 Communication controller: Intel Corporation Device 9d3a (rev 21)
	Kernel driver in use: mei_me
00:17.0 SATA controller: Intel Corporation Device 9d03 (rev 21)
	Subsystem: Dell Device 06b2
	Kernel driver in use: ahci
00:1c.0 PCI bridge: Intel Corporation Device 9d10 (rev f1)
	Kernel driver in use: pcieport
00:1c.4 PCI bridge: Intel Corporation Device 9d14 (rev f1)
	Kernel driver in use: pcieport
00:1c.5 PCI bridge: Intel Corporation Device 9d15 (rev f1)
	Kernel driver in use: pcieport
00:1f.0 ISA bridge: Intel Corporation Device 9d48 (rev 21)
	Subsystem: Dell Device 06b2
00:1f.2 Memory controller: Intel Corporation Device 9d21 (rev 21)
	Subsystem: Dell Device 06b2
00:1f.3 Audio device: Intel Corporation Device 9d70 (rev 21)
	Subsystem: Dell Device 06b2
	Kernel driver in use: snd_hda_intel
00:1f.4 SMBus: Intel Corporation Device 9d23 (rev 21)
	Subsystem: Dell Device 06b2
	Kernel driver in use: i801_smbus
01:00.0 Display controller: Advanced Micro Devices, Inc. [AMD/ATI] Sun XT [Radeon HD 8670A/8670M/8690M] (rev 81)
	Subsystem: Dell Device 06b2
	Kernel driver in use: radeon
02:00.0 Network controller: Intel Corporation Wireless 3160 (rev 83)
	Subsystem: Intel Corporation Dual Band Wireless AC 3160
03:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL8101E/RTL8102E PCI Express Fast Ethernet controller (rev 07)
	Subsystem: Dell Device 06b2
	Kernel driver in use: r8169
hugh@DELL-INSP-DEVUAN:~$ </code></pre></div><p>Is there something else I can do to get wi-fi working again?&#160; I checked and wi-fi still works with live USB and on other partitions.</p><p>Thanks for all the help received so far, it is much appreciated.&#160; Just one little hurdle to overcome.</p>]]></description>
			<author><![CDATA[dummy@example.com (hughparker1)]]></author>
			<pubDate>Thu, 18 May 2017 20:46:45 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=1540#p1540</guid>
		</item>
		<item>
			<title><![CDATA[Re: [SOLVED] Redshift fails to start - .service files missing?]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=1537#p1537</link>
			<description><![CDATA[<p>Yes, go with backports. Disable ascii. All the devs have been focused on getting jessie ready, and not much work has been done on ascii.</p><div class="codebox"><pre><code>apt-get -t jessie-backports install linux-image-4.9.0-0.bpo.2-amd64</code></pre></div>]]></description>
			<author><![CDATA[dummy@example.com (fsmithred)]]></author>
			<pubDate>Thu, 18 May 2017 15:23:47 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=1537#p1537</guid>
		</item>
		<item>
			<title><![CDATA[Re: [SOLVED] Redshift fails to start - .service files missing?]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=1536#p1536</link>
			<description><![CDATA[<div class="quotebox"><cite>hughparker1 wrote:</cite><blockquote><div><p>Would it be worth installing the latest testing kernel on Devuan while I still have ascii in my sources.list?</p></div></blockquote></div><p>Disable the ascii repo.&#160; Add the Devuan backports repo and try that kernel first.&#160; I think it&#039;s at least 4.9 something.</p>]]></description>
			<author><![CDATA[dummy@example.com (golinux)]]></author>
			<pubDate>Thu, 18 May 2017 15:18:59 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=1536#p1536</guid>
		</item>
		<item>
			<title><![CDATA[Re: [SOLVED] Redshift fails to start - .service files missing?]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=1535#p1535</link>
			<description><![CDATA[<div class="quotebox"><cite>fsmithred wrote:</cite><blockquote><div><div class="quotebox"><blockquote><div><p>I have this feeling that it might be related to the fact I needed to add nomodeset to linux boot line in grub</p></div></blockquote></div><p>Trust the Force, Luke. You are correct. <br />I just booted with &#039;nomodeset&#039; and redshift no longer works. Neither does my brightness script that I&#039;ve been using.</p></div></blockquote></div><p>Thanks for feedback.&#160; I was wondering if the problem I&#039;m having is something to do with the kernel I am using in Devuan which is a lot older than the other two OS I use on my laptop which I bought just last year ...</p><ul><li><p>.......................&#160; &#160; &#160; &#160; &#160; &#160; Kernel version<br />Devuan Xfce&#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160;3.16.43-2<br />Linux Mint Xfce&#160; &#160; &#160; &#160; &#160; &#160;4.10.0-20<br />Debian Stretch Xfce&#160; &#160; 4.9.18-1</p></li></ul><p>Would it be worth installing the latest testing kernel on Devuan while I still have ascii in my sources.list?&#160; ( <strong>EDIT:</strong> then maybe I wouldn&#039;t need to add nomodeset to linux boot line)</p><p>I had a look at what is currently available....</p><div class="codebox"><pre><code>hugh@DELL-INSP-DEVUAN:~$ apt-cache search linux-image
linux-image-3.16.0-4-amd64 - Linux 3.16 for 64-bit PCs
linux-image-3.16.0-4-amd64-dbg - Debugging symbols for Linux 3.16.0-4-amd64
linux-image-amd64 - Linux for 64-bit PCs (meta-package)
linux-image-amd64-dbg - Debugging symbols for Linux amd64 configuration (meta-package)
linux-image-4.9.0-0.bpo.2-amd64-dbg - Debugging symbols for Linux 4.9.0-0.bpo.2-amd64
linux-image-4.9.0-0.bpo.2-amd64-unsigned - Linux 4.9 for 64-bit PCs
linux-image-4.9.0-0.bpo.2-rt-amd64-dbg - Debugging symbols for Linux 4.9.0-0.bpo.2-rt-amd64
linux-image-4.9.0-0.bpo.2-rt-amd64-unsigned - Linux 4.9 for 64-bit PCs, PREEMPT_RT
linux-image-4.9.0-2-grsec-amd64 - Linux 4.9 for 64-bit PCs, Grsecurity protection
linux-image-grsec-amd64 - Linux image meta-package, grsec featureset
linux-image-rt-amd64 - Linux for 64-bit PCs (meta-package), PREEMPT_RT
linux-image-rt-amd64-dbg - Debugging symbols for Linux rt-amd64 configuration (meta-package)
linux-image-4.9.0-0.bpo.2-amd64 - Linux 4.9 for 64-bit PCs (signed)
linux-image-4.9.0-0.bpo.2-rt-amd64 - Linux 4.9 for 64-bit PCs, PREEMPT_RT (signed)
linux-image-4.9.0-2-amd64-unsigned - Linux 4.9 for 64-bit PCs
linux-image-4.9.0-2-rt-amd64-unsigned - Linux 4.9 for 64-bit PCs, PREEMPT_RT
linux-image-4.9.0-2-amd64 - Linux 4.9 for 64-bit PCs (signed)
linux-image-4.9.0-2-rt-amd64 - Linux 4.9 for 64-bit PCs, PREEMPT_RT (signed)
hugh@DELL-INSP-DEVUAN:~$ </code></pre></div><p>... and I thought Linux 4.9+79 for 64-bit PCs (signed) looks like the latest... </p><div class="codebox"><pre><code>hugh@DELL-INSP-DEVUAN:~$ apt show linux-image-4.9.0-2-amd64
Package: linux-image-4.9.0-2-amd64
Source: linux-signed (4.4)
Version: 4.9.18-1
Installed-Size: 189 MB
Maintainer: Debian Kernel Team &lt;debian-kernel@lists.debian.org&gt;
Replaces: linux-image-4.9.0-2-amd64-unsigned
Depends: kmod, linux-base (&gt;= 4.3~), initramfs-tools (&gt;= 0.120+deb8u2) | linux-initramfs-tool
Recommends: firmware-linux-free, irqbalance
Suggests: linux-doc-4.9, debian-kernel-handbook, grub-pc | grub-efi-amd64 | extlinux
Conflicts: linux-image-4.9.0-2-amd64-unsigned
Breaks: initramfs-tools (&lt;&lt; 0.120+deb8u2), xserver-xorg-input-vmmouse (&lt;&lt; 1:13.0.99)
Homepage: https://www.kernel.org/
Built-Using: linux (= 4.9.18-1)
Section: kernel
Priority: optional
Download-Size: 39.1 MB
APT-Sources: http://auto.mirror.devuan.org/merged/ ascii/main amd64 Packages
Description: Linux 4.9 for 64-bit PCs (signed)

hugh@DELL-INSP-DEVUAN:~$ </code></pre></div><p>Would I just need to run following command to install...</p><div class="codebox"><pre><code>$ sudo apt-get install linux-image-4.9.0-2-amd64</code></pre></div><p>.. or is there more steps required?&#160; I&#039;ve never upgraded kernel from the terminal before so don&#039;t know if there is more to this than a single command.</p><p>the other option I suppose is to do full ascii upgrade except I remember what @golinux said the other day....</p><div class="quotebox"><cite>golinux wrote:</cite><blockquote><div><p><strong>You probably don&#039;t want to upgrade to ascii</strong> - it is a bit broken atm.&#160; Just enable the ascii repo to get that one package then disable it immediately.&#160; Along the way, there may be unresolved dependencies and installing from different releases always has a risk of &#039;unintended consequences&#039;.&#160; Depends how adventurous you are and on your tolerance for breaking things.&#160; Of course it may be perfectly fine.&#160; Your choice.</p><p>Look at the bottom of <strong><a href="https://devuan.org/os/etc/apt/sources.list.d/" rel="nofollow">this page</a></strong> for source information.</p><p>Note that I am very conservative while others think nothing of leaping into the unknown.</p></div></blockquote></div><p>So I&#039;m wondering if it&#039;s worth a try.&#160; I could just follow the steps I found in this link <a href="https://talk.devuan.org/t/upgrading-devuan-jessie-to-ascii/363" rel="nofollow">https://talk.devuan.org/t/upgrading-dev … -ascii/363</a>&#160; do those instructions looks OK?</p><p>Since Devuan isn&#039;t my daily driver at the moment (especially with no redshift for late evening work) I wonder if a full upgrade would be worth considering.&#160; At the moment I mainly use Debian Stretch and haven&#039;t come across any problems since since installing late last year.&#160; That&#039;s why I was thinking that Devuan testing might be worth considering. I do realise there is always some risk.&#160; Any advice/guidance would be appreciated.</p>]]></description>
			<author><![CDATA[dummy@example.com (hughparker1)]]></author>
			<pubDate>Thu, 18 May 2017 14:42:08 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=1535#p1535</guid>
		</item>
		<item>
			<title><![CDATA[Re: [SOLVED] Redshift fails to start - .service files missing?]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=1505#p1505</link>
			<description><![CDATA[<div class="quotebox"><blockquote><div><p>I have this feeling that it might be related to the fact I needed to add nomodeset to linux boot line in grub</p></div></blockquote></div><p>Trust the Force, Luke. You are correct. <br />I just booted with &#039;nomodeset&#039; and redshift no longer works. Neither does my brightness script that I&#039;ve been using.</p>]]></description>
			<author><![CDATA[dummy@example.com (fsmithred)]]></author>
			<pubDate>Wed, 17 May 2017 15:44:32 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=1505#p1505</guid>
		</item>
		<item>
			<title><![CDATA[Re: [SOLVED] Redshift fails to start - .service files missing?]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=1504#p1504</link>
			<description><![CDATA[<p>Upgrading those four packages was probably not the right thing to do. I don&#039;t know if that will cause problems or not.</p><p>There is no randr package. Sorry. But you can run &#039;xrandr&#039; on the command line to see your display settings. You should be able to change settings with xrandr, too, but maybe it&#039;s not working. Run it with no arguments to get the display name (maybe VGA-1, DVI-something, or maybe it&#039;s just called &#039;default&#039;).<br />Then try</p><div class="codebox"><pre><code>xrandr --output &lt;the display name&gt; --brightness 0.7</code></pre></div><p> and see if it decreases the brightness to 70%.</p><p>You might be able to use one of the other methods listed. There&#039;s a line for it in the config file. Mine says &quot;adjustment-method=randr&quot;. You could try replacing randr with the other methods (vidmode, drm or dummy). That&#039;s my best guess. I don&#039;t really know anything about it.</p>]]></description>
			<author><![CDATA[dummy@example.com (fsmithred)]]></author>
			<pubDate>Wed, 17 May 2017 14:31:36 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=1504#p1504</guid>
		</item>
		<item>
			<title><![CDATA[Re: [SOLVED] Redshift fails to start - .service files missing?]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=1503#p1503</link>
			<description><![CDATA[<div class="quotebox"><cite>fsmithred wrote:</cite><blockquote><div><p>Make sure randr is installed. Check in synaptic. You can also see what methods are available to redshift with </p><div class="codebox"><pre><code>redshift -m list</code></pre></div><p>I can start &#039;redshift-gtk&#039; on the command line if I give it my latitude and longitude. It works, it puts an icon in the system tray, and I can get an information window from that.</p></div></blockquote></div><p>thanks for feedback, I opened terminal and ran &#039;redshift -m list&#039;...</p><div class="codebox"><pre><code>hugh@DELL-INSP-DEVUAN:~$ redshift -m list
Available adjustment methods:
  drm
  randr
  vidmode
  dummy

Specify colon-separated options with `-m METHOD:OPTIONS&#039;.
Try `-m METHOD:help&#039; for help.
hugh@DELL-INSP-DEVUAN:~$ </code></pre></div><p>Not sure what the output means to be honest, any advice would be appreciated.</p><p>I also tried opening terminal and running command with my my latitude and longitude....</p><div class="codebox"><pre><code>$ redshift-gtk -l 55.82:-4.42 -t 6500:3400</code></pre></div><p>but same happens as before, icon appears and error message window popped up...</p><ul><li><p>Failed to run Redshift<br />Gamma ramp size too&#160; small: 0<br />Failed to start adjustment method randr.<br />(B) Close</p></li></ul><p>then icon disappears again when I click OK</p><p>This is the same error that appears when I start redshift from the menu</p><p>I also opened synaptic package manager and searched for &#039;randr&#039; and following packages were returned .....</p><ul><li><p>libxcb-randr0&#160; &#160; <br />libxrandr2&#160; &#160; <br />x11-xserver-utils<br />xserver-xorg-video-nouv</p></li></ul><p>I didn&#039;t see a separate package specifically called &#039;randr&#039;</p><p>Then I checked the same packages/versions in my other two partitions Debian and Linux Mint where redshift is working OK, and compared them with Devuan...</p><p>&#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160;Debian&#160; &#160; &#160; &#160; &#160; &#160; Mint&#160; &#160; &#160; &#160; &#160; Devuan&#160; &#160; &#160; &#160; &#160;<br />libxcb-randr0&#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160;1.12-1&#160; &#160; &#160; &#160; &#160; &#160; &#160; 1.11.1&#160; &#160; &#160; 1.10-3+b1<br />libxrandr2&#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; 2:1.5.1-1&#160; &#160; &#160; &#160; &#160; 2:1.5.0-1&#160; 2:1.4.2-1+b1<br />x11-xserver-utils&#160; &#160; &#160; &#160; &#160; 7.7+7+b&#160; &#160; &#160; &#160; &#160; &#160;1 7.7+7&#160; &#160; &#160;7.7+3+b1&#160; &#160; <br />xserver-xorg-video-nouv1:1.0.13-3&#160; &#160; 1:1.0.12&#160; &#160; 1:1.0.11-1 </p><p>I noticed there are slightly older versions for the four packages in Devuan</p><p>Also noticed there is a slightly different package name in Devuan for package &#039;xserver-xorg-video-nouveau&#039;</p><p>So I upgraded the four packages to latest versions by re-enabling testing suite &#039;ascii&#039; in /etc/apt/sources.list.d/devuan-ascii.list</p><p>reboot but still redshift no different from before.</p><p>not sure what else I can try.&#160; I have this feeling that it might be related to the fact I needed to add nomodeset to linux boot line in grub, since redshift works in both Debian and Mint partitions so the hardware seems to be OK.&#160; And I don&#039;t need to have &#039;nomodeset&#039; in the linux boot line in grub for Debian and Mint partitions.&#160; So maybe that&#039;s the problem? Just a wild guess as I&#039;m not too technical with linux yet.</p>]]></description>
			<author><![CDATA[dummy@example.com (hughparker1)]]></author>
			<pubDate>Wed, 17 May 2017 14:08:11 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=1503#p1503</guid>
		</item>
		<item>
			<title><![CDATA[Re: [SOLVED] Redshift fails to start - .service files missing?]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=1496#p1496</link>
			<description><![CDATA[<p>Make sure randr is installed. Check in synaptic. You can also see what methods are available to redshift with </p><div class="codebox"><pre><code>redshift -m list</code></pre></div><p>I can start &#039;redshift-gtk&#039; on the command line if I give it my latitude and longitude. It works, it puts an icon in the system tray, and I can get an information window from that.</p>]]></description>
			<author><![CDATA[dummy@example.com (fsmithred)]]></author>
			<pubDate>Wed, 17 May 2017 00:32:37 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=1496#p1496</guid>
		</item>
	</channel>
</rss>
