Hi Guys.
After this update I had some issues, so I would like to share the solutions for two problems that some of you might face. Feel free to correct me if you know a better way to solve those issues.
I am running XFCE in a Dell 7472 laptop (details bellow).
My machine:
System:
Kernel: 6.7.4-2-MANJARO arch: x86_64 bits: 64
Desktop: Xfce v: 4.18.1 Distro: Manjaro Linux
Machine:
Type: Laptop System: Dell product: Inspiron 7472 v: N/A
Mobo: Dell model: 082HPJ v: A03 UCPU:
Info: quad core model: Intel Core i7-8550U bits: 64 type: MT MCP
smt: enabled arch: Coffee Lake rev: A cache: L1: 256 KiB L2: 1024 KiB
L3: 8 MiB
Flags: avx avx2 ht lm nx pae sse sse2 sse3 sse4_1 sse4_2 ssse3 vmx
Graphics:
Device-1: Intel UHD Graphics 620 vendor: Dell driver: i915 v: kernel
arch: Gen-9.5 ports: active: HDMI-A-1,eDP-1 empty: DP-1,HDMI-A-2
bus-ID: 00:02.0 chip-ID: 8086:5917 class-ID: 0300
Device-2: Realtek Integrated Webcam driver: uvcvideo type: USB rev: 2.0
speed: 480 Mb/s lanes: 1 bus-ID: 1-5:4 chip-ID: 0bda:5689 class-ID: 0e02
serial: 0x0001
Display: x11 server: X.Org v: 21.1.11 compositor: xfwm4 v: 4.18.0 driver:
X: loaded: modesetting alternate: fbdev,vesa dri: iris gpu: i915
display-ID: :0.0 screens: 1
Screen-1: 0 s-res: 3840x1080 s-dpi: 96 s-size: 1016x285mm (40.00x11.22")
s-diag: 1055mm (41.54")
Monitor-1: HDMI-A-1 mapped: HDMI-1 pos: right model: Dell E2211H
serial: N8F3M22H04RM res: 1920x1080 hz: 60 dpi: 102
size: 477x268mm (18.78x10.55") diag: 547mm (21.5") modes: max: 1920x1080
min: 720x400
Monitor-2: eDP-1 pos: primary,left model: AU Optronics 0x433d
res: 1920x1080 hz: 60 dpi: 158 size: 309x173mm (12.17x6.81")
diag: 354mm (13.9") modes: 1920x1080
API: OpenGL Message: Unable to show GL data. glxinfo is missing.
EFI: Dell
v: 1.11.0 date: 03/18/2022
1. the file .profile
was not being sourced anymore.
The solutions shared here probably helped the majority of people, but in my case I could not include the lines from .profile
in a .bash_profile
, for instance, because I needed them to be loaded just once per session. Doing as recommended it would cause problems.
The solution: rename ~/.profile
to ~/.xprofile
, as it only loads once per session.
Source: xprofile - ArchWiki
2. My keyboard became unresponsive after resuming from suspend.
In internet you can find people discussing the same problem for years now, but few people can explain the real causes and the solutions. It is funny that my problem just started after this update. Anywayā¦ to solve it:
The solution: include atkbd.reset
in the GRUB_CMDLINE_LINUX_DEFAULT
line from the grub config file (/etc/default/grub
). Note: leave the other options in that line as before. Example: GRUB_CMDLINE_LINUX_DEFAULT="quiet splash atkbd.reset"
Just include the atkbd.reset
part. After that run sudo update-grub
to tell grub about the new options.
Sources:
https://askubuntu.com/questions/975260/my-keyboard-does-not-work-after-ubuntu-17-10-resumes-from-suspend
https://forums.linuxmint.com/viewtopic.php?t=297332
I have tried other variations (as recommended by some forums) in the grub line like i8042.dumbkbd=1
, and i8042.noaux
, but they caused different problems, like making the caps lock light to stop working.
I hope it can help others.
Cheers
P.S.: Edit to include a grub config example.
P.P.S: Edit again for better wording.