Hello ! Tu t'en sors plutot bien !
ton pilote est donc 8139too ; sur carte PCI fabriquant: Realtek
driver=8139too
En reprenant ce post
https://forum.ubuntu-fr.org/viewtopic.php?id=20267330 :
il faut créer le fichier /lib/systemd/system-sleep/suspend-modules dans lequel on met ce contenu:
#!/bin/bash
# Put into /lib/systemd/system-sleep/suspend-modules
# chmod a+x /lib/systemd/system-sleep/suspend-modules
# Create /etc/suspend-modules.conf
# with one module per line
# credits to:
# https://bbs.archlinux.org/viewtopic.php?pid=1540125#p1540125
# More info:
# https://ubuntuforums.org/showthread.php?t=2314905&p=13555828#post13555828
case $1 in
pre)
for mod in $(</etc/suspend-modules.conf); do
rmmod $mod
done
;;
post)
for mod in $(</etc/suspend-modules.conf); do
modprobe $mod
done
;;
esac
Rendre ensuite le fichier exécutable:
sudo chmod a+x /lib/systemd/system-sleep/suspend-modules
Créer un second fichier nommé /etc/suspend-modules.conf dans lequel tu entres le nom du ou des modules à relancer en sortie de veille, un par ligne. Dans ton cas ce sera
8139too
dis moi si tu bloques