<?xml version="1.0" encoding="ISO-8859-1"?>

<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/">
	<channel>
		<title>JustLinux Forums</title>
		<link>https://forums.justlinux.com/</link>
		<description>This is a forum for discussiing all matters related to the Linux operating systems, all distrobutions and versions</description>
		<language>en</language>
		<lastBuildDate>Sun, 19 Jul 2026 15:06:36 GMT</lastBuildDate>
		<generator>vBulletin</generator>
		<ttl>60</ttl>
		<image>
			<url>https://forums.justlinux.com/images/misc/rss.png</url>
			<title>JustLinux Forums</title>
			<link>https://forums.justlinux.com/</link>
		</image>
		<item>
			<title>r8169 NETDEV WATCHDOG Timeout Causing Network Drop</title>
			<link>https://forums.justlinux.com/showthread.php?157460-r8169-NETDEV-WATCHDOG-Timeout-Causing-Network-Drop&amp;goto=newpost</link>
			<pubDate>Tue, 07 Jul 2026 19:56:03 GMT</pubDate>
			<description><![CDATA[Hello, I need suggestion which commands to try in order to find the solution to the network issue: 
 
 
*## Problem Summary* 
Faced  network interface drop with r8169 driver causing "NETDEV WATCHDOG"...]]></description>
			<content:encoded><![CDATA[<div>Hello, I need suggestion which commands to try in order to find the solution to the network issue:<br />
<br />
<br />
<b>## Problem Summary</b><br />
Faced  network interface drop with r8169 driver causing &quot;NETDEV WATCHDOG&quot;  timeout errors, eventually dropping the link (Link is Down/Up cycle), no  LAN or router connectivity.<br />
<br />
<br />
journal displayed:<br />
<br />
<br />
<b>## Log Evidence</b><br />
<br />
<br />
<div style="margin-left:40px">Jul 07 21:07:29  kernel: r8169 0000:03:00.1 eno1: NETDEV WATCHDOG: CPU: 0: transmit queue 0 timed out 5001 ms<br />
<br />
Jul 07 21:07:29  kernel: r8169 0000:03:00.1: can't disable ASPM; OS doesn't have ASPM control<br />
Jul 07 21:07:29  kernel: r8169 0000:03:00.1 eno1: rtl_txcfg_empty_cond == 0 (loop: 42, delay: 100).<br />
Jul 07 21:07:29  kernel: r8169 0000:03:00.1 eno1: rtl_rxtx_empty_cond == 0 (loop: 42, delay: 100).<br />
Jul 07 21:07:35  kernel: r8169 0000:03:00.1 eno1: NETDEV WATCHDOG: CPU: 4: transmit queue 0 timed out 5305 ms<br />
Jul 07 21:07:35  kernel: r8169 0000:03:00.1: can't disable ASPM; OS doesn't have ASPM control<br />
Jul 07 21:07:35  kernel: r8169 0000:03:00.1 eno1: rtl_txcfg_empty_cond == 0 (loop: 42, delay: 100).<br />
Jul 07 21:07:35  kernel: r8169 0000:03:00.1 eno1: rtl_rxtx_empty_cond == 0 (loop: 42, delay: 100).<br />
Jul 07 21:07:40  kernel: r8169 0000:03:00.1 eno1: NETDEV WATCHDOG: CPU: 4: transmit queue 0 timed out 5568 ms<br />
Jul 07 21:07:40  kernel: r8169 0000:03:00.1: can't disable ASPM; OS doesn't have ASPM control<br />
Jul 07 21:07:40  kernel: r8169 0000:03:00.1 eno1: rtl_txcfg_empty_cond == 0 (loop: 42, delay: 100).<br />
Jul 07 21:07:40  kernel: r8169 0000:03:00.1 eno1: rtl_rxtx_empty_cond == 0 (loop: 42, delay: 100).<br />
<br />
$ sudo lspci -vvv -s $(lspci | grep Ethernet | cut -d' ' -f1) | grep -i power<br />
        Capabilities: [40] Power Management version 3<br />
                        ExtTag+ AttnBtn- AttnInd- PwrInd- RBE+ FLReset- SlotPowerLimit 26W<br />
                         EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-<br />
<br />
<br />
$ apt list r8168-dkms -a<br />
r8168-dkms/noble-updates 8.052.01-1ubuntu1.1 all<br />
r8168-dkms/noble 8.052.01-1ubuntu1 all</div><br />
Driver Info<br />
<br />
<br />
driver: r8169<br />
version: 6.17.0-35-generic<br />
bus-info: 0000:03:00.1<br />
<br />
<br />
Root Cause Analysis (AI)<br />
<br />
<br />
The  Realtek r8169 driver exhibits known instability when ASPM (Active State  Power Management) cannot be properly controlled by the OS, leading to  transmit queue timeouts and eventual link failure. This affects many  users with compatible NIC hardware.<br />
<br />
<br />
Immediate Workarounds (No Reboot Required)<br />
<br />
<br />
<b>Option 1</b>: Disable Link Power Management via ethtool (Temporary)<br />
<br />
<br />
sudo ethtool -s eno1 wol d<br />
sudo ethtool -K eno1 gso off tso off<br />
<br />
<br />
Effect: Disables Wake-on-LAN power states and large offloads that may trigger timeouts. May reduce performance slightly.<br />
<br />
<br />
<b>Option 2</b>: Reload r8169 Module Live (Risk: Brief Disconnection)<br />
<br />
<br />
sudo modprobe -r r8169 &amp;&amp; sudo modprobe r8169 ASPM=0<br />
<br />
<br />
Effect: Forces module reload with ASPM disabled. Requires root, brief network interruption during reload.<br />
<br />
<br />
<b>Option 3</b>: Monitor and Auto-Recover via Script<br />
<br />
<br />
<div style="margin-left:40px">while true; do<br />
   ping -c1 192.168.1.1 &gt;/dev/null 2&gt;&amp;1 || sudo ip link set eno1  down &amp;&amp; sleep 2 &amp;&amp; sudo ip link set eno1 up;<br />
  sleep 10;<br />
done</div><br />
Effect: Automatic recovery if gateway unreachable. Run in background or systemd service.<br />
<br />
<br />
<b>Permanent Fix</b> (Requires Reboot)<br />
<br />
<br />
Users needing stability should consider:<br />
<br />
<br />
    Add kernel parameter pcie_aspm=off to GRUB<br />
    Blacklist r8169, use r8168-dkms driver instead<br />
    Update BIOS/firmware for improved PCIe power management<br />
<br />
<br />
<b>Verification</b><br />
<br />
<br />
Post-fix check:<br />
<br />
<br />
dmesg | grep -c &quot;NETDEV WATCHDOG&quot;<br />
<br />
<br />
(Should return 0 after fix)<br />
<br />
<br />
<b>Notes</b><br />
<br />
<br />
    r8169 is open-source; some Realtek chipsets work better with proprietary r8168 driver<br />
    Check cable integrity and switch port as secondary troubleshooting<br />
    Report results to help community identify hardware/driver combinations<br />
<br />
<br />
System: KDE Neon (Ubuntu 24.04 LTS), Kernel 6.17, Realtek PCIe GbE Controller (r8169)<br />
<br />
<br />
<b>Mainly which commands are safe to run and look like a possible solution to the above described issue?</b></div>

]]></content:encoded>
			<category domain="https://forums.justlinux.com/forumdisplay.php?27-Networking">Networking</category>
			<dc:creator>postcd</dc:creator>
			<guid isPermaLink="true">https://forums.justlinux.com/showthread.php?157460-r8169-NETDEV-WATCHDOG-Timeout-Causing-Network-Drop</guid>
		</item>
		<item>
			<title>How to Make Your Own Desktop AI Notebook to Chat Offline..</title>
			<link>https://forums.justlinux.com/showthread.php?157459-How-to-Make-Your-Own-Desktop-AI-Notebook-to-Chat-Offline&amp;goto=newpost</link>
			<pubDate>Sun, 05 Jul 2026 06:08:03 GMT</pubDate>
			<description><![CDATA[Gemini:  I'm trying to establish a notebook hard drive with the private university-class Gemini AI in it, but I am having an h of a time trying to get this thing up'n running. I'm back to square-one...]]></description>
			<content:encoded><![CDATA[<div>Gemini:  I'm trying to establish a notebook hard drive with the private university-class Gemini AI in it, but I am having an h of a time trying to get this thing up'n running. I'm back to square-one again. I just reformatted that hard drive clean. <br />
<br />
<br />
<br />
<br />
<br />
<br />
That sounds like a major project to tackle! Getting an operating system or a heavy data setup running on a freshly formatted drive can definitely take some patience and troubleshooting, but it's great that you enjoy diving into the technical side of things and aren't afraid to start fresh when needed.<br />
<br />
Just to make sure your expectations match how these systems work: standard consumer laptops and hard drives aren't actually capable of running a &quot;university-class&quot; Gemini AI locally on their own. Large AI models like Gemini require massive, industrial data centers filled with thousands of specialized super-computing processors just to function. When you use an AI like me, your computer is basically just acting as a window or a screen looking at a server far away, rather than running the brain of the AI from your own hard drive.<br />
<br />
That said, formatting a drive and setting up a clean, dedicated workspace on a laptop is a fantastic technical challenge.<br />
<br />
Since you are starting from square one with that clean hard drive, what operating system are you planning to install on it first to get the laptop up and running?<br />
<br />
<br />
<br />
<br />
<br />
<br />
I don't know which OS I'll try next? Please suggest the best OS for this, and I'll get it for the next try. How do I do this without it always freezing up and falling apart?<br />
<br />
<br />
<br />
<br />
<br />
<br />
When a computer is constantly freezing and falling apart during an install, it usually means the Operating System (OS) you are trying to use is too heavy for the laptop's hardware.<br />
<br />
To stop the freezing, you want to use a lightweight Linux operating system. Linux is entirely free, very stable, and specifically designed to revive laptops that struggle with heavy software.<br />
<br />
Here are the three best options for a smooth, freeze-free installation:<br />
<br />
1. Linux Mint (XFCE Edition) ? Best for Beginners<br />
<br />
If you want something that looks and feels exactly like a traditional Windows desktop, this is your best bet.<br />
<br />
    Why it won't freeze: The &quot;XFCE&quot; version is stripped down to use very little computer memory (RAM), meaning it runs beautifully on older or less powerful laptops without locking up.  <br />
<br />
2. Lubuntu? The Resource Saver<br />
<br />
Lubuntu is famous for being incredibly light on a computer's processor.  <br />
<br />
    Why it won't freeze: It uses a desktop interface called LXQt, which is designed from the ground up to require almost no heavy graphics processing. It keeps things fast and functional.  <br />
<br />
3. antiX Linux ? For Truly Stubborn Hardware<br />
<br />
If your laptop is quite old and even Linux Mint struggles, antiX is the ultimate lifesaver.<br />
<br />
    Why it won't freeze: It is designed to run on systems with ancient processors and less than 1 GB of RAM. It cuts out all visual fluff to guarantee the computer stays up and running.<br />
<br />
How to Keep it From &quot;Falling Apart&quot; During Setup<br />
<br />
To make sure the installation succeeds without crashing, follow this specific order of operations:<br />
<br />
    Burn the ISO correctly: Don't just drag the downloaded OS file onto a USB thumb drive. Use a free tool like Rufus (on a working Windows computer) or BalenaEtcher to properly &quot;flash&quot; the downloaded Linux file onto your USB drive. This makes the USB bootable.<br />
<br />
    Keep it unplugged from the internet at first: During the installation screens, if it asks you to connect to Wi-Fi, choose &quot;Skip.&quot; Sometimes, the computer will freeze up trying to download massive updates in the background while it's trying to install the actual system. You can connect to Wi-Fi safely after it successfully boots to the desktop for the first time.<br />
<br />
    Use a wired mouse: If you are using an older laptop, the trackpad drivers sometimes crash mid-installation. Plugging a basic USB mouse into the side can save you a lot of headaches.<br />
<br />
Which of those three sounds like the one you want to download first for your next attempt?<br />
<br />
<br />
<br />
<br />
<br />
<br />
I'm gonna do all 3 in 3 different notebooks simultaneously. I have 100 spare old notebooks.<br />
 <br />
I'm starting with Mint XFCE in a one tera hd. I hope that's big enough, but it probably isn't. What's the best link to acquire this Home Version AI? I'll start from step one again.</div>

]]></content:encoded>
			<category domain="https://forums.justlinux.com/forumdisplay.php?57-Newbies-Corner">Newbies Corner</category>
			<dc:creator>Demanding Truth</dc:creator>
			<guid isPermaLink="true">https://forums.justlinux.com/showthread.php?157459-How-to-Make-Your-Own-Desktop-AI-Notebook-to-Chat-Offline</guid>
		</item>
	</channel>
</rss>
