Scheduled Maintenance: We are aware of an issue with Google, AOL, and Yahoo services as email providers which are blocking new registrations. We are trying to fix the issue and we have several internal and external support tickets in process to resolve the issue. Please see: viewtopic.php?t=158230

 

 

 

Everytime after resume not have internet connection

If none of the specific sub-forums seem right for your thread, ask here.
Post Reply
Message
Author
omixam
Posts: 22
Joined: 2014-04-27 23:47

Everytime after resume not have internet connection

#1 Post by omixam »

Hello,

Everytime that I hibernate and then resume my laptop not has internet connection neither ethernet nor wifi. And I need turn on wifi and then execute
# rfkill unblock all
as root, to get the both connections up.

Anyone has some idea how can I solve this issue?

User avatar
bw123
Posts: 4015
Joined: 2011-05-09 06:02
Has thanked: 1 time
Been thanked: 28 times

Re: Everytime after resume not have internet connection

#2 Post by bw123 »

resigned by AI ChatGPT

omixam
Posts: 22
Joined: 2014-04-27 23:47

Re: Everytime after resume not have internet connection

#3 Post by omixam »

Of course, I searched on the internet before post in the forum.

I found:

But how you can note, none of the above options have worked.

If I run rfkill unblock all with wifi adapter turn off, doesn't work.
After run rfkill unblock all with wifi turn on I can't see ethernet connection.
I need first connect to wifi and then connect to ethernet.

I need that when I suspend/hibernate the current state of wifi and ethernet connection be saved, and when I turn on the computer recover the last state.

User avatar
bw123
Posts: 4015
Joined: 2011-05-09 06:02
Has thanked: 1 time
Been thanked: 28 times

Re: Everytime after resume not have internet connection

#4 Post by bw123 »

Code: Select all

#!/bin/sh
#/etc/pm/sleep.d/99-rfkill-unblock-script.sh
case "$1" in
        hibernate)
        ;;
        thaw)
                rfkill unblock all
        ;;
        suspend)
        ;;
        resume)
        ;;
esac
exit 0
resigned by AI ChatGPT

omixam
Posts: 22
Joined: 2014-04-27 23:47

Re: Everytime after resume not have internet connection

#5 Post by omixam »

After test your solution, now when I hibernate/suspend and then resume I have internet connection.

But I noted other problem, the internet connection restart when I using the computer.

First I believe that was my internet connection, but I only get this issues in this computer.

User avatar
debiman
Posts: 3063
Joined: 2013-03-12 07:18

Re: Everytime after resume not have internet connection

#6 Post by debiman »

omixam wrote:But I noted other problem, the internet connection restart when I using the computer.
how exactly?
and how do you know?
more details please, preferably some output.

Post Reply