Search found 2227 matches

by timkb4cq
Wed Feb 21, 2024 3:24 pm
Forum: Hardware /Configuration
Topic: com ports not showing
Replies: 12
Views: 310

Re: com ports not showing

You may have to map your port in the Wine registry:
https://wiki.winehq.org/index.php?title ... llel_Ports
by timkb4cq
Fri Feb 16, 2024 10:08 am
Forum: Bugs and Non-Package Requests Forum
Topic: apt autoremove hangs at '('
Replies: 4
Views: 154

Re: apt autoremove hangs at '('

Since apt has already calculated what can be automatically removed

Code: Select all

sudo apt autoremove
doesn't require any parameters.
by timkb4cq
Sun Feb 04, 2024 3:03 pm
Forum: MX KDE Official Release
Topic: Wlan issue on LenovoIdeapad-1 15AMN7 Laptop [Solved]
Replies: 17
Views: 451

Re: Wlan issue on LenovoIdeapad-1 15AMN7 Laptop [Solved]

That QSI equivalent was from his Mint install where his wifi worked

Code: Select all

Kernel: 6.5.0-15-generic x86_64 bits: 64 compiler: N/A Desktop: Cinnamon 6.0.4 tk: GTK 3.24.33
    info: plank wm: muffin vt: 7 dm: LightDM 1.30.0 Distro: Linux Mint 21.3 Virginia
    base: Ubuntu 22.04 jammy
by timkb4cq
Sun Feb 04, 2024 2:56 pm
Forum: MX KDE Official Release
Topic: Wlan issue on LenovoIdeapad-1 15AMN7 Laptop [Solved]
Replies: 17
Views: 451

Re: Wlan issue on LenovoIdeapad-1 15AMN7 Laptop [Solved]

The 6.1 kernel on the MX-23.2 KDE iso doesn't have the rtw89_8852be driver your wifi uses. Any 6.3 or later kernel does. The MX-23.2 AHS iso has a 6.6 kernel and should work. But you want KDE, so If you download the latest 6.6 kernel and headers here: https://mxrepo.com/mx/repo/pool/ahs/l/linux-liqu...
by timkb4cq
Fri Feb 02, 2024 6:01 pm
Forum: General
Topic: Time consumung: installing and updating new software or kernels..?
Replies: 72
Views: 2017

Re: Time consumung: installing and updating new software or kernels..?

I wonder if that one fails because it is set to only build the module for kernels <=6.1 so it isn't active on the 6.5 that you are running. The script that is failing is /var/lib/dpkg/info/rtl8821cu-dkms.prerm Removing that file will allow the package to be removed. Though if you still have a 6.1 or...
by timkb4cq
Fri Feb 02, 2024 1:23 pm
Forum: General
Topic: Time consumung: installing and updating new software or kernels..?
Replies: 72
Views: 2017

Re: Time consumung: installing and updating new software or kernels..?

Will do.
One suggestion though. There should be a warning that any wifi adapter not currently plugged in could have its driver removed.
by timkb4cq
Fri Feb 02, 2024 12:12 am
Forum: General
Topic: Time consumung: installing and updating new software or kernels..?
Replies: 72
Views: 2017

Re: Time consumung: installing and updating new software or kernels..?

If you want to include wl (broadcom-sta-dkms) you'll have to handle that one a bit differently.
And IIRC, MX-21 also had rtl8814au-dkms (8814au) and rtl8821cu (8821cu) installed.
by timkb4cq
Thu Feb 01, 2024 10:58 pm
Forum: General
Topic: Time consumung: installing and updating new software or kernels..?
Replies: 72
Views: 2017

Re: Time consumung: installing and updating new software or kernels..?

No it doesn't. Installing the rtl8812au-dkms package creates an 8812au kernel module (but installing rtl8821ce-dkms installs an rtl8821ce module). If you have that loaded because you need it the test will still fail and put it in the dumplist. modprobe 8812au yourself and check. The script is obviou...
by timkb4cq
Thu Feb 01, 2024 10:16 pm
Forum: General
Topic: Time consumung: installing and updating new software or kernels..?
Replies: 72
Views: 2017

Re: Time consumung: installing and updating new software or kernels..?

I goofed - the -eq should be -ne. It was printing modules that were actually loaded instead of those that were not. and it's important to keep the complete rtl8821ce as 8821ce will match the flaky built-in rtw88_8821ce but there's no 8821ce to remove. dumplist=""; for a in 8812au 8821au rt...
by timkb4cq
Thu Feb 01, 2024 8:10 pm
Forum: General
Topic: Time consumung: installing and updating new software or kernels..?
Replies: 72
Views: 2017

Re: Time consumung: installing and updating new software or kernels..?

I would like to get a draft script that detects what RTL drivers are not needed. What command would one run to check that? dumplist=""; for a in 8812au 8821au rtl8821ce; do lsmod | awk '{print $1}' | grep $a >/dev/null; status=$?; if test $status -eq 0; then dumplist+="$a "; fi;...

Go to advanced search