PINE64

Full Version: telnet or ssh to ROCK64 stuck
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Telnet or ssh to rock64 linux system, when the data is large, such as dmesg or alsamixer, telnet or ssh will be stuck. This looks like a kernel bug, but I don't know how to fix it.
(09-05-2017, 12:26 AM)LemonZou Wrote: [ -> ]Telnet or ssh to rock64 linux system, when the data is large, such as dmesg or alsamixer, telnet or ssh will be stuck. This looks like a kernel bug, but I don't know how to fix it.


Seems like the Gbe issue;  plug into a 10|100 switch or router, or force 10|100 on the Rock, or modify your cat5 cable ( clip the blue and brown pairs )  to force 10|100 on your router from the Rock.
(09-05-2017, 02:02 AM)MarkHaysHarris777 Wrote: [ -> ]
(09-05-2017, 12:26 AM)LemonZou Wrote: [ -> ]Telnet or ssh to rock64 linux system, when the data is large, such as dmesg or alsamixer, telnet or ssh will be stuck. This looks like a kernel bug, but I don't know how to fix it.


Seems like the Gbe issue;  plug into a 10|100 switch or router, or force 10|100 on the Rock, or modify your cat5 cable ( clip the blue and brown pairs )  to force 10|100 on your router from the Rock.

any one will handle fix this?
(09-05-2017, 08:19 PM)listenfree Wrote: [ -> ]
(09-05-2017, 02:02 AM)MarkHaysHarris777 Wrote: [ -> ]
(09-05-2017, 12:26 AM)LemonZou Wrote: [ -> ]Telnet or ssh to rock64 linux system, when the data is large, such as dmesg or alsamixer, telnet or ssh will be stuck. This looks like a kernel bug, but I don't know how to fix it.


Seems like the Gbe issue;  plug into a 10|100 switch or router, or force 10|100 on the Rock, or modify your cat5 cable ( clip the blue and brown pairs )  to force 10|100 on your router from the Rock.

any one will handle fix this?

Hi, guys!

I just reinstalled another Linux image and the issue was solved!

Linux rock64 4.4.70-rockchip-ayufan-83 #1 SMP Mon Jul 31 08:43:12 UTC 2017 aarch64 GNU/Linux
(09-05-2017, 02:02 AM)MarkHaysHarris777 Wrote: [ -> ]
(09-05-2017, 12:26 AM)LemonZou Wrote: [ -> ]Telnet or ssh to rock64 linux system, when the data is large, such as dmesg or alsamixer, telnet or ssh will be stuck. This looks like a kernel bug, but I don't know how to fix it.


Seems like the Gbe issue;  plug into a 10|100 switch or router, or force 10|100 on the Rock, or modify your cat5 cable ( clip the blue and brown pairs )  to force 10|100 on your router from the Rock.

I've been having this issue, it's been driving me nuts, seems to impact on remote desktop too - I'll try one of these and see if that helps, cheers Smile

And yup that solves it - did the following in software

sudo apt-get install ethtool
sudo ethtool -s eth0 speed 100 duplex full autoneg off

This limits the NIC to 100Mb and stops the issue - you'll need to have the command auto execute at boot as the setting is temporary and will clear at reboot otherwise.
Instead of setting speed to 100Mb/s you can leave it at 1Gb/s and try:


Code:
ethtool -K eth0 tx off


Works for me with ayufan 4.4 kernel.
I'll give that a go, cheers.
(10-12-2017, 01:05 PM)maal Wrote: [ -> ]Instead of setting speed to 100Mb/s you can leave it at 1Gb/s and try:


Code:
ethtool -K eth0 tx off


Works for me with ayufan 4.4 kernel.

One question, do I have to write the code after every reboot or can I fix it in a config-file?
Create a /etc/rc.local file with the following content and made sure it is executable (i.e. chmod +x /etc/rc.local):


Code:
#!/bin/bash
ethtool -K eth0 tx off
exit 0

Or add the ethtool line before the exit 0 line if the file already exists.

Then the command will run at the end of every boot. It may be possible to set it ealier, i.e. as a kernel argument, but I don't know the correct paramters for that if it is possible.