Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

debian 12 on a levovo t490 : XMM RPC interface does not exists #224

Open
micressor opened this issue May 30, 2024 · 1 comment
Open

debian 12 on a levovo t490 : XMM RPC interface does not exists #224

micressor opened this issue May 30, 2024 · 1 comment

Comments

@micressor
Copy link

the device /dev/ttyXMM* are not there.

# lsb_release -a
No LSB modules are available.
Distributor ID: Debian
Description:    Debian GNU/Linux 12 (bookworm)
Release:        12  
Codename:       bookworm

# insmod /usr/lib/modules/6.1.0-21-amd64/updates/xmm7360.ko
# lsmod | grep xmm 
xmm7360                28672  0

# lte up
lte.sh: manage xmm7360-pci
APN: gprs.domain.tld
Script: /root/src/xmm7360-pci/scripts/lte.sh; Link: /usr/local/bin

bringing wwan0 up! 
ERROR:root:XMM RPC interface does not exists
RTNETLINK answers: No such device
@PokumeKachi
Copy link

PokumeKachi commented Oct 28, 2024

I'm using a ThinkPad X1 Carbon Gen 6 and I faced the same problem. I then found out that it only happened after waking up from hibernation. Are you using hibernation too? If yes, try removing the xmm7360 module before hibernation. This is how I do it on my Arch Linux by writing an automated hibernate script:

  1. Run this to create the file

sudo nvim /lib/systemd/system-sleep/xmm63.sh

  1. Paste the following code
#!bin/sh

case $1 in
	pre)
		rmmod xmm7360
		;;
	post)
		modprobe xmm7360
		;;
esac
  1. Save and run this

sudo chmod +x /lib/systemd/system-sleep/xmm63.sh

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants