Friday, March 19, 2021

Recent Questions - Unix & Linux Stack Exchange

Recent Questions - Unix & Linux Stack Exchange


Terminate X11 Application with Mouse

Posted: 19 Mar 2021 10:29 AM PDT

There is a feature in X11 that temporarily transforms your mouse pointer into a "kill X11 application" icon (I don't even know what to call it) and allows you to forcibly terminate a process that owns an X11 window. On occasion I've activated this feature accidentally and want to be able to do this consistently.

What is the keyboard, mouse shortcut, or other means of activating this feature? How does it work? is it a legacy feature and/or only works under some environments?

Can anyone explain to a beginner what terminal profiles are?

Posted: 19 Mar 2021 10:53 AM PDT

I'm a beginner and I recently started using my command line (I'm on maOS) for things like npm, git and ssh.

I read sth about terminal profiles and when I just browser the website of iTerm2, I saw the below image. That really made me wondering what profiles are and if (and how) they offer advantages for SSH?

I'm really sorry if this is a really basic question, but I haven't found anything on Google yet. :)

Thanks a lot!

enter image description here

PS: other related question, what is a terminal emulator?

Install newer version Eigen on Debian Jessie

Posted: 19 Mar 2021 10:05 AM PDT

I am trying to build the catkin workspace of ROS on Raspberry Pi (Debian Jessie 8) following this instruction https://wiki.ros.org/kinetic/Installation/Source

but encounter error

error: static assertion fail: Eigen support in pybind11 requires Eigen >= 3.2.7  

Since the latest version of libeigen3-dev of Jessie Debian is 3.2.2-3 https://packages.debian.org/jessie/libdevel/libeigen3-dev

So I download the latest version of Eigen, unzip it and rename it to eigen3. Next I remove the old folder eigen3 in /usr/local/share and copied this newer version into it.

cd Downloads/  sudo cp -r eigen3 /usr/local/include      cd /usr/local/include  sudo mkdir build  cd build  sudo cmake ..  sudo make install  

And got this result.

enter image description here

But I have not solved the problem. Is there any way to verify that I have successfully installed the newer version of Eigen?

Thank you in advance.

Until / do loop achieves desired effect but throws several syntax errors

Posted: 19 Mar 2021 10:35 AM PDT

The following bash script executes a second bash script and then waits to observe effects of the second script using until / do. This script is running on a RHEL7 server.

FILE=/sentinel_failover.sh  if test -f "$FILE"; then      echo "$FILE exists."      OUTPUT=$("$FILE")      echo $OUTPUT        $counter=0      $max_loop_count=30      #Continue when no instances on this server are primary or the timeout has elapsed      until (( $counter == $max_loop_count || $primary_byte_count == 0 ))      do        primary_byte_count=$(grep /etc/redis/redis.* -e port -e auth \        | sed 's/.*\:port/redis-cli -p/' \        | sed -e 'N;s/\n/ /' \        | sed 's#\/etc\/redis\/redis.* "# -a #' \        | sed -e 's/"/ --no-auth-warning info \| grep role/' \        | sed -e 'N;s/  / /' \        | source /dev/stdin \        | grep master \        | wc -c)        sleep 1        ((counter++))      done      if [[ $primary_byte_count -eq 0 ]]    then          exit 0    else          fail_step "Incomplete failover before reaching max loop count of 30 $max_loop_count"    fi  

The script achieves desired effect and I have verified this by echoing counter values at strategic locations, however the following errors are emitted upon first execution of the loop:

/test_script.sh: line 8: =0: command not found  /test_script.sh: line 9: =30: command not found  /test_script.sh: line 11: ((: == 30 ||  == 0 : syntax error: operand expected (error token is "== 30 ||  == 0 ")  

How can I reconfigure the comparison or otherwise modify the script to resolve this?

My 2nd Monitor suddenly stopped working

Posted: 19 Mar 2021 09:17 AM PDT

So I was trying to use my second monitor on my laptop for class as usual, but for some reason it wasn't picking up signal from my laptop at all. I tried to see if it was a problem with my monitor so I tried connecting my PS4 and it worked fine. I also switched hdmi cables and still nothing. I don't think I changed anything from one day to the next so I'm not sure what the problem is.

Manjaro - How to add Korean keyboard?

Posted: 19 Mar 2021 09:12 AM PDT

I've looked around multiple guides for Manjaro KDE to add a Korean keyboard, but none of them work. I can "swap" to Korean, but my input is still English. I've added Korean to my locale, installed the fonts, tried the guides for other languages, but nothing works. How can I install the Korean keyboard?

Wordpress site has been hit with gutenblock-64/stealth process

Posted: 19 Mar 2021 09:07 AM PDT

The process has been taking up a lot of resources and has been sending DDos(?) to other sites.

It ran under as www-data. What it does :

  1. it downloaded under wordpress's wp-content folder and run itself.

  2. After that it removed itself from wp-content folder to evade scanner but the process will be still resident in the memory.

I managed to recover the process file by copying /proc/PID/exe and my limited knowledge only showed it's packaged by upx using linux strings commands to peek inside.

Anyway to know that how the malware managed to run itself? How to know where the malware managed to sneak in?

Linux - Get List of Local-User-System Environment Variables Seperately

Posted: 19 Mar 2021 09:02 AM PDT

I could get system environment variables by using printenv command but I need seperate variables data:

How could I lists of get local (session-wide), user (user-wide) and system (system-wide, global) environment variables seperately?

OS: Debian-like Linux (x64), kernel: 4.19.

nmcli STATE unmanaged on eth0 device when the cable network is up and i can ping outside. Why is not labeled as connected?

Posted: 19 Mar 2021 08:50 AM PDT

I'm running Ubuntu 20.04 LTS, i'm testing to connect to network with both devices(interfaces) the eth0 and wlan0. I'm starting with the Wifi :

ubuntu@ubuntu:~$ nmcli dev   DEVICE         TYPE      STATE      CONNECTION    wlan0          wifi      connected  MY-NET   eth0           ethernet  unmanaged  --            lo             loopback  unmanaged  --            p2p-dev-wlan0  wifi-p2p  unmanaged  --  

All works great! Now i'm switching to the eth0 dev:

sudo nmcli con down MY-NET  sudo nmcli dev  DEVICE         TYPE      STATE         CONNECTION   wlan0          wifi      disconnected  --           eth0           ethernet  unmanaged     --           lo             loopback  unmanaged     --           p2p-dev-wlan0  wifi-p2p  unmanaged     --  

Now i connect the cable and i'm done with the eth0 connection:

ip addr show  eth0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc mq state UP group default qlen 1000  link/ether dc:a6:32:22:b8:a3 brd ff:ff:ff:ff:ff:ff  inet 192.168.1.132/24 brd 192.168.1.255 scope global dynamic eth0     valid_lft 6500sec preferred_lft 6500sec  inet6 fe80::dea6:32ff:fe22:b8a3/64 scope link      valid_lft forever preferred_lft forever    ping nike.com  PING nike.com (99.86.167.33) 56(84) bytes of data.  64 bytes from server-99-86-167-33.mxp64.r.cloudfront.net (99.86.167.33): icmp_seq=1 ttl=242 time=7.39 ms  64 bytes from server-99-86-167-33.mxp64.r.cloudfront.net (99.86.167.33): icmp_seq=2 ttl=242 time=7.24 ms  

But every time i'm running the nmcli command on dev i cannot see the device eth0 active:

wlan0          wifi      disconnected  --           eth0           ethernet  unmanaged     --           lo             loopback  unmanaged     --           p2p-dev-wlan0  wifi-p2p  unmanaged     --  

So both the command on device and on connection are not showing the active link:

sudo nmcli dev set eth0 managed yes  ubuntu@ubuntu:~$ sudo nmcli dev  DEVICE         TYPE      STATE         CONNECTION   wlan0          wifi      disconnected  --           eth0           ethernet  unmanaged     --           lo             loopback  unmanaged     --           p2p-dev-wlan0  wifi-p2p  unmanaged     --    sudo nmcli con show --active  >       

Is mounting same NFS share read-write on one host and read-only on other(s) okay?

Posted: 19 Mar 2021 09:10 AM PDT

I have a workstation that rw-mounts an NFS share from a service provider. I also have another server whose entire file system is already backed up to a remote site. Can I add the NFS share to this backup (i.e. keep an extra backup in additional to the one the service provider already keeps) by ro-mounting the same NFS share on my server?

In other words, is mounting the same NFS share multiple times okay (1 x rw + n times ro) in terms of data consistency? I guess so, but I want to be sure, because this is for backup purposes. Are there any relevant version dependencies?

Firefox changed it's default search engine --without any update--, is this possible?

Posted: 19 Mar 2021 08:38 AM PDT

Suddenly the default serach engine of my Firefox browser on ArchLinux is changed. I have no idea how this happend. This morning I worked o the machine and everything seemd okay, now serveral hours later, the search engine is changed without any intervetion (AFAIK). No updates were made.

Please help to detect what happened.

Strange behaviour of Kdevelop in Plasma 5

Posted: 19 Mar 2021 08:28 AM PDT

I'm running Plasma 5.21.3-1 ad kdevelop 5.6.2-3 on Arch Linux. It is hard to put into words what happens when I launch kdevelop. In the following image there is a screenshot of all the desktop (otherwise it would be impossible to spot the problem)

enter image description here

As you can see it is like the desktop is split into two parts and the right one is covering the kdevelop windows. Moving the window around there is no way to make it appear properly. Switching virtual desktop back and fort even weirder effects take places:

enter image description here

I remark that this happen only with kdevelop. I really do not know what is happening. I even try to build kdevelop and the problem is the same. Do you have any suggestion?

"ssh-ed25519 255" vs "ssh-ed25519 256"

Posted: 19 Mar 2021 08:26 AM PDT

We have an SSH server that uses ed25519 for signature verification. We provide users with the MD5 and SHA256 hash for the key as per ssh-keygen listing, which displays the "256" key. However, users clients are connecting and getting a "ssh-ed25519 255" key with a fingerprint that does not match.

How would I verify the "ssh-ed25519 255" fingerprint of our host key? I cannot find an appropriate flag in ssh-keygen -l that would set 255. It defaults to 256.

Update kernel on fedora without updating whole system

Posted: 19 Mar 2021 08:35 AM PDT

I want to update the (Only Kernel) of my fedora 33 , How do I upgrade it without upgrading whole system, can I do sudo dnf update kernel* is it safe?

Can't access files I own

Posted: 19 Mar 2021 09:09 AM PDT

I have created a folder /root/bin where I inteded to store my custom scripts. The idea is that these scripts shall be accessible to any user, so I added users to "users" group. I gave this group rwx permissions to the folder and all the files in the folder. I have set the owner of the group as well. However, I still may not access those scripts as any non-root users. Please help!

How do I use my secondary GPU for display output and primary only for computation?

Posted: 19 Mar 2021 09:53 AM PDT

I have two GPU's, GTX 1070 and GT 710. I have only one display and I would like this display to run off of the GT710 so that I can continue to work when I am training models using CUDA. I have been at this for quite a few hours and the furthest I have been able to get is to boot into Mint in "fallback mode" with the monitor connected to the GT 710.

I have been following the instructions here: https://forums.developer.nvidia.com/t/how-do-i-set-one-gpu-for-display-and-the-other-two-gpus-for-cuda-computing/49113

My system information is as follows

enter image description here

I have tried two methods

1)First Attempt: As suggested by user "birdie" the link above, I created the file nvidia.conf in directory /etc/X11/xorg.conf.d, with the following content

    Section "Device"          Identifier      "GT710"          BusID           "PCI:5:0:0" # my Bus ID for gt710          Driver          "nvidia"          VendorName      "NVIDIA"      EndSection  

Then I went to xorg.conf in /etc/X11/ and modified the entry for screen as follows

Section "Screen"      Identifier     "Screen0"      Device         "GT710" #modified here      Monitor        "Monitor0"      DefaultDepth    24      Option         "Stereo" "0"      Option         "nvidiaXineramaInfoOrder" "DFP-6"      Option         "metamodes" "2560x1440_75 +0+0"      Option         "SLI" "Off"      Option         "MultiGPU" "Off"      Option         "BaseMosaic" "off"      SubSection     "Display"          Depth       24      EndSubSection  EndSection  

By doing this I was able to boot into mint in fallback mode with my display connected to the GT710.

2)Second Attempt: I created a second device entry in /etc/X11/xorg.conf

    Section "Device"          Identifier     "Device1"          Driver         "nvidia"          VendorName     "NVIDIA Corporation"          BusID           "PCI:5:0:0"           BoardName      "GeForce GT 710"          option          "AllowEmptyInitialConfiguration"                          EndSection  

Then I edited the Screen entry in /etc/X11/xorg.conf as follows:

Section "Screen"      Identifier     "Screen0"      Device         "Device1" #edited here      Monitor        "Monitor0"      DefaultDepth    24      Option         "Stereo" "0"      Option         "nvidiaXineramaInfoOrder" "DFP-6"      Option         "metamodes" "2560x1440_75 +0+0"      Option         "SLI" "Off"      Option         "MultiGPU" "Off"      Option         "BaseMosaic" "off"      SubSection     "Display"          Depth       24      EndSubSection  EndSection  

Again I was able to boot into mint but only in fallback mode when connected to the GT710.

I would appreciate any help in making this work.

thank you

Why is moving a file the same as renaming a file?

Posted: 19 Mar 2021 08:46 AM PDT

I've heard for a while that for the mv tool in Linux, moving a file is the same as renaming a file. Here is the comment that piqued my interest recently:

"On one file system renaming and moving is exactly the same thing; "moving" is just renaming the directory-entry's full path (i. e. the part stating its parent directories) instead of just the directory-entry's base name (the part after the last slash). It is done via the system call rename(2); tools like mv test whether using this is possible and only if it is not fall back to copy-and-delete."

I want to know, how does renaming a file move the file? I thought that a file is moved by removing the entry in the old parent directory, and creating an entry in the new parent directory. I don't see how this is related to renaming a file.

unable to figure out who is consuming root disk space

Posted: 19 Mar 2021 09:15 AM PDT

Team, my system running ubuntu 16 and k8s 1.13.5 is reporting 79% full and i tried several utilities and no avail what is actually consuming it. I tried several options but output of none is summing to 345G or 83%

below is using ncdu utility which does not correspond to df -h output

/dev/sda2       439G  345G   72G  83% /  

Please ignore RAID below because it is mounted to different device and does not consume what / is reporting above.

ncdu 1.12 ~ Use the arrow keys to navigate, press ? for help                                                                                                                                                                                                                                        --- / --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------      3.4 TiB [##########] /raid                                                                                                                                                                                                                                                                         33.2 GiB [          ] /var      2.9 GiB [          ] /usr    589.9 MiB [          ] /lib    146.3 MiB [          ] /boot    102.9 MiB [          ] /opt     15.3 MiB [          ] /sbin  

then I ran du du -s /*

3090316 /usr  28696688    /var  

then du -Pshx /* * 2>/dev/null

14M /bin  141M    /boot  0   /dev  8.5M    /etc  4.1M    /home  4.0K    /host  0   /initrd.img  0   /initrd.img.old  590M    /lib  4.0K    /lib64  16K /lost+found  4.0K    /media  4.0K    /mnt  103M    /opt  0   /proc  3.4T    /raid  256K    /root  4.0M    /run  16M /sbin  8.0K    /snap  4.0K    /srv  0   /sys  11M /tmp  3.0G    /usr  29G /var  0   /vmlinuz  0   /vmlinuz.old  

Failed to add the host to the list of known hosts

Posted: 19 Mar 2021 10:59 AM PDT

My command is this

cat machines.txt | xargs -I {} ssh {} bash -c "'sudo echo " " > /var/log/messages'"  

I have a text which has the ip of my machines. I'm trying to figure out why sudo echo " " command is not working for me. its giving me this prompt.

Failed to add the host to the list of known hosts (/home/agilos/.ssh/known_hosts).  Permission denied (publickey).  xargs: ssh: exited with status 255; aborting  

Non root user unable to conect wifi network on the standard way [LINUX MINT]

Posted: 19 Mar 2021 10:22 AM PDT

I am a enthusiastic linux user and I offered my experience to perform system upgrade on 40 old Classmate PCs (SEE system information on image bellow ) which were runing a deprecated ubuntu version. So, with the proper authorizations, I performed the upgrade and in near future I hope that students can use them for their porpouses (like navigation, researchs, to access Google Classroom functionalities and to make projects and communication with Arduinos. Those last two were not possible before).

When I started I knew I would have some challenges regarding permissions because, for the students, I would create a account with some restrictions (security porpouses). But I did not expect difficulties with simple tasks, like to connect wifi netwoks at the school or nearby, for the students.

During instalation of the new Linux Mint XFCE 19.3 32bits (image loaded via USB) and even after restart (when I log in the standard non privileged user created - sudoer) everething seems to works fine and I am able to connect the networks I desire (and I seem to have good and stable conections). The problem arises when I login the new account created. This accont is not able to connect any network listed (the password is not even asked, the system only shows "you are disconected" and you can't do much). Let me be more clear: When I try to connect any network with this new user (aluno/student - not admin) it simply does not ask the wifi pass key, and show that you are disconected. Not even networks already set for the admin acc (escola) work here. I only get internet for this specific aluno user if I use cable (ethernet) or if I make the trick of setting network via hidden option (that is say I enter the option for setting hidden network, I type the SSID [which is actually not hidden, SIC], choose the WPA2 security and Type the Key) This is the most interesting aspect: why is it when I take one of those networks and pretend it is hidden and enter its exact name, choose the security and add manualy the password, the system connects. I know this is a stupid workaround that allow to connect without need further permissions, but other users won't know about it by default.

On attempts to solve, I already gave all privileges that I know of on user configuration, and I even added the user to the netdev group (via $ sudo usermod -aG netdev alunocj33). Nothing solves. I would apreciate some help with this issue.

What is happening and how to solve this problem??

Addendum: I did many search for solutions for this problem in the internet and found only few similar. First I thought the problem was on the card or on the drive installed since I found some other users reporting such unstabilities with RTL8188EE (but the alternative drives suggested to solve the issues wasn't availabre anymore - e.g. lwfinger/rtlwifi_new.git on GitHub).
I am trying to solve this since 2019 when I format the first units to use during my robotic classes. Then I relized the problem and should have ask for help. I am doing it now because that many machines with such strange behavior is a mistake. Please, if you have a clue on the solution, let me know. Sorry for my explanation, I have some difficulties since I am not native in english.

_______________ Further tests _______________

Unsecured wifi Network > the same bahavior of secured ones: It does not connect!!

Tethering USB > Connection is easily stablished (on the same way of ethernet cable).

journalctl run (below):

1st > attempt to connect normaly > FAIL

2nd > connecting same network via hidden option > SUCCESS

OBS: Could not use sudo because user aluno**** has no such permission. Even with sudo permission, the retun journalctl are the same for this user ( device (wlp2s0): state change: need-auth -> failed (reason 'no-secrets', sys-iface-state: 'managed' - tested on several machines).

alunocj25@escolacj25-EC10IS2:~$ journalctl -f  -- Logs begin at Fri 2021-01-29 13:11:30 -03. --  mar 15 16:40:04 escolacj25-EC10IS2 NetworkManager[721]: <warn>  [1615837204.0992] device (wlp2s0): No agents were available for this request.  mar 15 16:40:04 escolacj25-EC10IS2 NetworkManager[721]: <info>  [1615837204.0994] device (wlp2s0): state change: need-auth -> failed (reason 'no-secrets', sys-iface-state: 'managed')  mar 15 16:40:04 escolacj25-EC10IS2 NetworkManager[721]: <info>  [1615837204.1037] manager: NetworkManager state is now DISCONNECTED  mar 15 16:40:04 escolacj25-EC10IS2 NetworkManager[721]: <warn>  [1615837204.1059] device (wlp2s0): Activation: failed for connection 'PROFESSORES_CaldasJunior 1'  mar 15 16:40:04 escolacj25-EC10IS2 NetworkManager[721]: <info>  [1615837204.1100] device (wlp2s0): state change: failed -> disconnected (reason 'none', sys-iface-state: 'managed')  mar 15 16:40:24 escolacj25-EC10IS2 ntpd[803]: error resolving pool 0.ubuntu.pool.ntp.org: Name or service not known (-2)  mar 15 16:40:27 escolacj25-EC10IS2 ntpd[803]: error resolving pool 1.ubuntu.pool.ntp.org: Name or service not known (-2)  mar 15 16:40:30 escolacj25-EC10IS2 ntpd[803]: error resolving pool 3.ubuntu.pool.ntp.org: Name or service not known (-2)  mar 15 16:40:32 escolacj25-EC10IS2 ntpd[803]: error resolving pool ntp.ubuntu.com: Name or service not known (-2)  mar 15 16:40:32 escolacj25-EC10IS2 ntpd[803]: error resolving pool 2.ubuntu.pool.ntp.org: Name or service not known (-2)  mar 15 16:41:09 escolacj25-EC10IS2 NetworkManager[721]: <info>  [1615837269.7398] audit: op="connection-delete" uuid="be4449bb-19c4-437e-91fb-5e54f30fe063" name="PROFESSORES_CaldasJunior 1" pid=1676 uid=1001 result="success"  mar 15 16:41:29 escolacj25-EC10IS2 ntpd[803]: error resolving pool 0.ubuntu.pool.ntp.org: Name or service not known (-2)  mar 15 16:41:33 escolacj25-EC10IS2 ntpd[803]: error resolving pool 1.ubuntu.pool.ntp.org: Name or service not known (-2)  mar 15 16:41:33 escolacj25-EC10IS2 NetworkManager[721]: <info>  [1615837293.8535] device (wlp2s0): Activation: starting connection 'PROFESSORES_CaldasJunior' (ca5f8693-7437-433b-b647-912b8f854359)  mar 15 16:41:33 escolacj25-EC10IS2 NetworkManager[721]: <info>  [1615837293.8554] audit: op="connection-activate" uuid="ca5f8693-7437-433b-b647-912b8f854359" name="PROFESSORES_CaldasJunior" pid=1160 uid=1001 result="success"  mar 15 16:41:33 escolacj25-EC10IS2 NetworkManager[721]: <info>  [1615837293.8572] device (wlp2s0): state change: disconnected -> prepare (reason 'none', sys-iface-state: 'managed')  mar 15 16:41:33 escolacj25-EC10IS2 NetworkManager[721]: <info>  [1615837293.8590] manager: NetworkManager state is now CONNECTING  mar 15 16:41:33 escolacj25-EC10IS2 NetworkManager[721]: <info>  [1615837293.8637] device (wlp2s0): state change: prepare -> config (reason 'none', sys-iface-state: 'managed')  mar 15 16:41:33 escolacj25-EC10IS2 NetworkManager[721]: <info>  [1615837293.8653] device (wlp2s0): Activation: (wifi) access point 'PROFESSORES_CaldasJunior' has security, but secrets are required.  mar 15 16:41:33 escolacj25-EC10IS2 NetworkManager[721]: <info>  [1615837293.8655] device (wlp2s0): state change: config -> need-auth (reason 'none', sys-iface-state: 'managed')  mar 15 16:41:33 escolacj25-EC10IS2 NetworkManager[721]: <info>  [1615837293.8664] sup-iface[0x27c9170,wlp2s0]: wps: type pbc start...  mar 15 16:41:33 escolacj25-EC10IS2 NetworkManager[721]: <info>  [1615837293.9149] device (wlp2s0): supplicant interface state: inactive -> scanning  mar 15 16:41:34 escolacj25-EC10IS2 NetworkManager[721]: <warn>  [1615837294.3059] device (wlp2s0): No agents were available for this request.  mar 15 16:41:36 escolacj25-EC10IS2 ntpd[803]: error resolving pool ntp.ubuntu.com: Name or service not known (-2)  mar 15 16:41:36 escolacj25-EC10IS2 ntpd[803]: error resolving pool 3.ubuntu.pool.ntp.org: Name or service not known (-2)  mar 15 16:41:37 escolacj25-EC10IS2 ntpd[803]: error resolving pool 2.ubuntu.pool.ntp.org: Name or service not known (-2)  mar 15 16:41:40 escolacj25-EC10IS2 kernel: perf: interrupt took too long (3977 > 3972), lowering kernel.perf_event_max_sample_rate to 50250  mar 15 16:42:04 escolacj25-EC10IS2 NetworkManager[721]: <info>  [1615837324.2260] device (wlp2s0): state change: need-auth -> failed (reason 'no-secrets', sys-iface-state: 'managed')  mar 15 16:42:04 escolacj25-EC10IS2 NetworkManager[721]: <info>  [1615837324.2282] manager: NetworkManager state is now DISCONNECTED  mar 15 16:42:04 escolacj25-EC10IS2 NetworkManager[721]: <warn>  [1615837324.2313] device (wlp2s0): Activation: failed for connection 'PROFESSORES_CaldasJunior'  mar 15 16:42:04 escolacj25-EC10IS2 NetworkManager[721]: <info>  [1615837324.2369] device (wlp2s0): state change: failed -> disconnected (reason 'none', sys-iface-state: 'managed')  mar 15 16:42:04 escolacj25-EC10IS2 wpa_supplicant[722]: wlp2s0: Reject scan trigger since one is already pending  mar 15 16:42:23 escolacj25-EC10IS2 dbus-daemon[574]: [system] Activating via systemd: service name='org.freedesktop.hostname1' unit='dbus-org.freedesktop.hostname1.service' requested by ':1.40' (uid=1001 pid=1160 comm="nm-applet " label="unconfined")  mar 15 16:42:23 escolacj25-EC10IS2 systemd[1]: Starting Hostname Service...  mar 15 16:42:23 escolacj25-EC10IS2 dbus-daemon[574]: [system] Successfully activated service 'org.freedesktop.hostname1'  mar 15 16:42:23 escolacj25-EC10IS2 systemd[1]: Started Hostname Service.  mar 15 16:42:35 escolacj25-EC10IS2 ntpd[803]: error resolving pool 0.ubuntu.pool.ntp.org: Name or service not known (-2)  mar 15 16:42:40 escolacj25-EC10IS2 ntpd[803]: error resolving pool 3.ubuntu.pool.ntp.org: Name or service not known (-2)  mar 15 16:42:40 escolacj25-EC10IS2 ntpd[803]: error resolving pool 1.ubuntu.pool.ntp.org: Name or service not known (-2)  mar 15 16:42:41 escolacj25-EC10IS2 ntpd[803]: error resolving pool ntp.ubuntu.com: Name or service not known (-2)  mar 15 16:42:44 escolacj25-EC10IS2 ntpd[803]: error resolving pool 2.ubuntu.pool.ntp.org: Name or service not known (-2)  mar 15 16:43:10 escolacj25-EC10IS2 NetworkManager[721]: <info>  [1615837390.5620] keyfile: add connection in-memory (50722fef-1ca0-4b5f-ba24-8b31f5466692,"PROFESSORES_CaldasJunior 1")  mar 15 16:43:10 escolacj25-EC10IS2 NetworkManager[721]: <info>  [1615837390.5715] device (wlp2s0): Activation: starting connection 'PROFESSORES_CaldasJunior 1' (50722fef-1ca0-4b5f-ba24-8b31f5466692)  mar 15 16:43:10 escolacj25-EC10IS2 NetworkManager[721]: <info>  [1615837390.6419] settings-connection[0x2791cf8,50722fef-1ca0-4b5f-ba24-8b31f5466692]: write: successfully commited (keyfile: update /etc/NetworkManager/system-connections/PROFESSORES_CaldasJunior 1 (50722fef-1ca0-4b5f-ba24-8b31f5466692,"PROFESSORES_CaldasJunior 1") and persist connection)  mar 15 16:43:10 escolacj25-EC10IS2 NetworkManager[721]: <info>  [1615837390.6425] audit: op="connection-add-activate" uuid="50722fef-1ca0-4b5f-ba24-8b31f5466692" name="PROFESSORES_CaldasJunior 1" pid=1160 uid=1001 result="success"  mar 15 16:43:10 escolacj25-EC10IS2 NetworkManager[721]: <info>  [1615837390.6494] device (wlp2s0): state change: disconnected -> prepare (reason 'none', sys-iface-state: 'managed')  mar 15 16:43:10 escolacj25-EC10IS2 NetworkManager[721]: <info>  [1615837390.6512] manager: NetworkManager state is now CONNECTING  mar 15 16:43:10 escolacj25-EC10IS2 NetworkManager[721]: <info>  [1615837390.6582] device (wlp2s0): state change: prepare -> config (reason 'none', sys-iface-state: 'managed')  mar 15 16:43:10 escolacj25-EC10IS2 NetworkManager[721]: <info>  [1615837390.6607] device (wlp2s0): Activation: (wifi) access point 'PROFESSORES_CaldasJunior 1' has security, but secrets are required.  mar 15 16:43:10 escolacj25-EC10IS2 NetworkManager[721]: <info>  [1615837390.6609] device (wlp2s0): state change: config -> need-auth (reason 'none', sys-iface-state: 'managed')  mar 15 16:43:10 escolacj25-EC10IS2 NetworkManager[721]: <info>  [1615837390.6620] sup-iface[0x27c9170,wlp2s0]: wps: type pbc start...  mar 15 16:43:10 escolacj25-EC10IS2 NetworkManager[721]: <info>  [1615837390.6859] device (wlp2s0): state change: need-auth -> prepare (reason 'none', sys-iface-state: 'managed')  mar 15 16:43:10 escolacj25-EC10IS2 NetworkManager[721]: <info>  [1615837390.6891] device (wlp2s0): state change: prepare -> config (reason 'none', sys-iface-state: 'managed')  mar 15 16:43:10 escolacj25-EC10IS2 NetworkManager[721]: <info>  [1615837390.6904] device (wlp2s0): Activation: (wifi) connection 'PROFESSORES_CaldasJunior 1' has security, and secrets exist.  No new secrets needed.  mar 15 16:43:10 escolacj25-EC10IS2 NetworkManager[721]: <info>  [1615837390.6907] Config: added 'ssid' value 'PROFESSORES_CaldasJunior'  mar 15 16:43:10 escolacj25-EC10IS2 NetworkManager[721]: <info>  [1615837390.6908] Config: added 'scan_ssid' value '1'  mar 15 16:43:10 escolacj25-EC10IS2 NetworkManager[721]: <info>  [1615837390.6909] Config: added 'bgscan' value 'simple:30:-80:86400'  mar 15 16:43:10 escolacj25-EC10IS2 NetworkManager[721]: <info>  [1615837390.6911] Config: added 'key_mgmt' value 'WPA-PSK'  mar 15 16:43:10 escolacj25-EC10IS2 NetworkManager[721]: <info>  [1615837390.6912] Config: added 'auth_alg' value 'OPEN'  mar 15 16:43:10 escolacj25-EC10IS2 NetworkManager[721]: <info>  [1615837390.6913] Config: added 'psk' value '<hidden>'  mar 15 16:43:12 escolacj25-EC10IS2 wpa_supplicant[722]: wlp2s0: SME: Trying to authenticate with cc:32:e5:97:cb:c4 (SSID='PROFESSORES_CaldasJunior' freq=2462 MHz)  mar 15 16:43:12 escolacj25-EC10IS2 kernel: wlp2s0: authenticate with cc:32:e5:97:cb:c4  mar 15 16:43:12 escolacj25-EC10IS2 kernel: wlp2s0: send auth to cc:32:e5:97:cb:c4 (try 1/3)  mar 15 16:43:12 escolacj25-EC10IS2 kernel: wlp2s0: authenticated  mar 15 16:43:12 escolacj25-EC10IS2 wpa_supplicant[722]: wlp2s0: Trying to associate with cc:32:e5:97:cb:c4 (SSID='PROFESSORES_CaldasJunior' freq=2462 MHz)  mar 15 16:43:12 escolacj25-EC10IS2 NetworkManager[721]: <info>  [1615837392.2522] device (wlp2s0): supplicant interface state: scanning -> authenticating  mar 15 16:43:12 escolacj25-EC10IS2 kernel: wlp2s0: associate with cc:32:e5:97:cb:c4 (try 1/3)  mar 15 16:43:12 escolacj25-EC10IS2 kernel: wlp2s0: RX AssocResp from cc:32:e5:97:cb:c4 (capab=0x31 status=0 aid=1)  mar 15 16:43:12 escolacj25-EC10IS2 kernel: wlp2s0: associated  mar 15 16:43:12 escolacj25-EC10IS2 wpa_supplicant[722]: wlp2s0: Associated with cc:32:e5:97:cb:c4  mar 15 16:43:12 escolacj25-EC10IS2 wpa_supplicant[722]: wlp2s0: CTRL-EVENT-SUBNET-STATUS-UPDATE status=0  mar 15 16:43:12 escolacj25-EC10IS2 NetworkManager[721]: <info>  [1615837392.2773] device (wlp2s0): supplicant interface state: authenticating -> associating  mar 15 16:43:12 escolacj25-EC10IS2 NetworkManager[721]: <info>  [1615837392.2788] device (wlp2s0): supplicant interface state: associating -> 4-way handshake  mar 15 16:43:12 escolacj25-EC10IS2 wpa_supplicant[722]: wlp2s0: WPA: Key negotiation completed with cc:32:e5:97:cb:c4 [PTK=CCMP GTK=CCMP]  mar 15 16:43:12 escolacj25-EC10IS2 wpa_supplicant[722]: wlp2s0: CTRL-EVENT-CONNECTED - Connection to cc:32:e5:97:cb:c4 completed [id=0 id_str=]  mar 15 16:43:12 escolacj25-EC10IS2 wpa_supplicant[722]: bgscan simple: Failed to enable signal strength monitoring  mar 15 16:43:12 escolacj25-EC10IS2 kernel: IPv6: ADDRCONF(NETDEV_CHANGE): wlp2s0: link becomes ready  mar 15 16:43:12 escolacj25-EC10IS2 NetworkManager[721]: <info>  [1615837392.3191] device (wlp2s0): supplicant interface state: 4-way handshake -> completed  mar 15 16:43:12 escolacj25-EC10IS2 NetworkManager[721]: <info>  [1615837392.3193] device (wlp2s0): Activation: (wifi) Stage 2 of 5 (Device Configure) successful.  Connected to wireless network 'PROFESSORES_CaldasJunior'.  mar 15 16:43:12 escolacj25-EC10IS2 NetworkManager[721]: <info>  [1615837392.3198] device (wlp2s0): state change: config -> ip-config (reason 'none', sys-iface-state: 'managed')  mar 15 16:43:12 escolacj25-EC10IS2 NetworkManager[721]: <info>  [1615837392.3492] dhcp4 (wlp2s0): activation: beginning transaction (timeout in 45 seconds)  mar 15 16:43:12 escolacj25-EC10IS2 NetworkManager[721]: <info>  [1615837392.3570] dhcp4 (wlp2s0): dhclient started with pid 1810  mar 15 16:43:12 escolacj25-EC10IS2 avahi-daemon[564]: Joining mDNS multicast group on interface wlp2s0.IPv6 with address fe80::fb3d:a98a:602b:40ca.  mar 15 16:43:12 escolacj25-EC10IS2 avahi-daemon[564]: New relevant interface wlp2s0.IPv6 for mDNS.  mar 15 16:43:12 escolacj25-EC10IS2 avahi-daemon[564]: Registering new address record for fe80::fb3d:a98a:602b:40ca on wlp2s0.*.  mar 15 16:43:12 escolacj25-EC10IS2 dhclient[1810]: DHCPDISCOVER on wlp2s0 to 255.255.255.255 port 67 interval 3 (xid=0x71e96137)  mar 15 16:43:13 escolacj25-EC10IS2 dhclient[1810]: DHCPREQUEST of 192.168.0.107 on wlp2s0 to 255.255.255.255 port 67 (xid=0x3761e971)  mar 15 16:43:13 escolacj25-EC10IS2 dhclient[1810]: DHCPOFFER of 192.168.0.107 from 192.168.0.1  mar 15 16:43:13 escolacj25-EC10IS2 dhclient[1810]: DHCPACK of 192.168.0.107 from 192.168.0.1  mar 15 16:43:13 escolacj25-EC10IS2 NetworkManager[721]: <info>  [1615837393.5224] dhcp4 (wlp2s0):   address 192.168.0.107  mar 15 16:43:13 escolacj25-EC10IS2 NetworkManager[721]: <info>  [1615837393.5226] dhcp4 (wlp2s0):   plen 24 (255.255.255.0)  mar 15 16:43:13 escolacj25-EC10IS2 NetworkManager[721]: <info>  [1615837393.5227] dhcp4 (wlp2s0):   gateway 192.168.0.1  mar 15 16:43:13 escolacj25-EC10IS2 NetworkManager[721]: <info>  [1615837393.5229] dhcp4 (wlp2s0):   lease time 7200  mar 15 16:43:13 escolacj25-EC10IS2 NetworkManager[721]: <info>  [1615837393.5230] dhcp4 (wlp2s0):   nameserver '192.168.0.1'  mar 15 16:43:13 escolacj25-EC10IS2 NetworkManager[721]: <info>  [1615837393.5231] dhcp4 (wlp2s0): state changed unknown -> bound  mar 15 16:43:13 escolacj25-EC10IS2 avahi-daemon[564]: Joining mDNS multicast group on interface wlp2s0.IPv4 with address 192.168.0.107.  mar 15 16:43:13 escolacj25-EC10IS2 avahi-daemon[564]: New relevant interface wlp2s0.IPv4 for mDNS.  mar 15 16:43:13 escolacj25-EC10IS2 avahi-daemon[564]: Registering new address record for 192.168.0.107 on wlp2s0.IPv4.  mar 15 16:43:13 escolacj25-EC10IS2 NetworkManager[721]: <info>  [1615837393.5370] device (wlp2s0): state change: ip-config -> ip-check (reason 'none', sys-iface-state: 'managed')  mar 15 16:43:13 escolacj25-EC10IS2 NetworkManager[721]: <info>  [1615837393.5415] device (wlp2s0): state change: ip-check -> secondaries (reason 'none', sys-iface-state: 'managed')  mar 15 16:43:13 escolacj25-EC10IS2 NetworkManager[721]: <info>  [1615837393.5436] device (wlp2s0): state change: secondaries -> activated (reason 'none', sys-iface-state: 'managed')  mar 15 16:43:13 escolacj25-EC10IS2 NetworkManager[721]: <info>  [1615837393.5449] manager: NetworkManager state is now CONNECTED_LOCAL  mar 15 16:43:13 escolacj25-EC10IS2 dhclient[1810]: bound to 192.168.0.107 -- renewal in 2768 seconds.  mar 15 16:43:13 escolacj25-EC10IS2 NetworkManager[721]: <info>  [1615837393.7813] manager: NetworkManager state is now CONNECTED_SITE  mar 15 16:43:13 escolacj25-EC10IS2 NetworkManager[721]: <info>  [1615837393.7820] policy: set 'PROFESSORES_CaldasJunior 1' (wlp2s0) as default for IPv4 routing and DNS  mar 15 16:43:13 escolacj25-EC10IS2 NetworkManager[721]: <info>  [1615837393.7845] device (wlp2s0): Activation: successful, device activated.  mar 15 16:43:13 escolacj25-EC10IS2 dbus-daemon[574]: [system] Activating via systemd: service name='org.freedesktop.nm_dispatcher' unit='dbus-org.freedesktop.nm-dispatcher.service' requested by ':1.17' (uid=0 pid=721 comm="/usr/sbin/NetworkManager --no-daemon " label="unconfined")  mar 15 16:43:13 escolacj25-EC10IS2 systemd[1]: Starting Network Manager Script Dispatcher Service...  mar 15 16:43:13 escolacj25-EC10IS2 dbus-daemon[574]: [system] Successfully activated service 'org.freedesktop.nm_dispatcher'  mar 15 16:43:13 escolacj25-EC10IS2 systemd[1]: Started Network Manager Script Dispatcher Service.  mar 15 16:43:13 escolacj25-EC10IS2 nm-dispatcher[1822]: req:1 'up' [wlp2s0]: new request (2 scripts)  mar 15 16:43:13 escolacj25-EC10IS2 nm-dispatcher[1822]: req:1 'up' [wlp2s0]: start running ordered scripts...  mar 15 16:43:14 escolacj25-EC10IS2 systemd-resolved[458]: Server returned error NXDOMAIN, mitigating potential DNS violation DVE-2018-0001, retrying transaction with reduced feature level UDP.  mar 15 16:43:14 escolacj25-EC10IS2 systemd-resolved[458]: Server returned error NXDOMAIN, mitigating potential DNS violation DVE-2018-0001, retrying transaction with reduced feature level UDP.  mar 15 16:43:15 escolacj25-EC10IS2 NetworkManager[721]: <info>  [1615837395.1577] manager: NetworkManager state is now CONNECTED_GLOBAL  mar 15 16:43:15 escolacj25-EC10IS2 nm-dispatcher[1822]: req:2 'connectivity-change': new request (2 scripts)  mar 15 16:43:15 escolacj25-EC10IS2 nm-dispatcher[1822]: req:2 'connectivity-change': start running ordered scripts...  mar 15 16:43:16 escolacj25-EC10IS2 ntpd[803]: Listen normally on 4 wlp2s0 192.168.0.107:123  mar 15 16:43:16 escolacj25-EC10IS2 ntpd[803]: Listen normally on 5 wlp2s0 [fe80::fb3d:a98a:602b:40ca%3]:123  mar 15 16:43:16 escolacj25-EC10IS2 ntpd[803]: new interface(s) found: waking up resolver  mar 15 16:43:16 escolacj25-EC10IS2 ntpdate[1867]: the NTP socket is in use, exiting  

IMPORTANT: I found out on 17/03/21 something that must be related. When I reinstall gnome-keyring (which I had removed from all because it pop up window and I don't wan't anything storing/managing passwords or showing up/bothering during the use of the computer) the problem goes away for the user aluno/student.

Dual boot wifi adaptor not detected (Windows 10 & Kali Linux)

Posted: 19 Mar 2021 10:47 AM PDT

I recently installed Kali Linux on my PC, making it dual booting with Windows 10. I have a 500GB m.2 Samsung 980 Pro SSD where I've installed Windows 10 and I have another 500GB Samsung EVO 860 SSD where I've installed Kali Linux. I've installed Grub so when I turn on my computer, I have the option to pick Windows 10 or Kali.

If I pick Kali, I'm getting the following error before the login screen:

enter image description here

I'm able to login to Kali, however, if the above error shows, Kali is not able to detect my wifi adapter (Intel Wi-Fi 6 AX200).

HOWEVER, If I first boot into Windows 10, restart the PC, then boot into Kali, I get the following different set of errors, and wifi connects automatically and everything works.

enter image description here

I've tried this many times and the pattern is: if I want wifi to work in Kali, I'll need to boot into windows first then kali. Otherwise, if I boot straight into Kali, wifi adapter will not be found and wifi will not work.

How do I fix this wifi issue?

Hardware specs:

  • Gigabyte B550I Aorus Pro AX
  • AMD Ryzen 5 5600x
  • Samsung 980 Pro 500GB NVMe (Windows 10 installed)
  • Samsung 860 EVO 500GB SSD (Kali Linux installed)
  • Nvidia RTX3080 FE
  • Crucial Ballistix 32 GB (2 x 16 GB) DDR4-3200

Thanks

When I run newapkbuild in a container I get "ERROR: : Do not run abuild as root"

Posted: 19 Mar 2021 10:25 AM PDT

I'm trying to containerize my build work flow. I do not run Alpine on the metal or in a VM but I do launch Alpine Containers.

When building a new Alpine package, I'm using newapkbuild but because I'm in a container, the container thinks it's root (though it's mapped to non-root, and the whole container is rootless). But when I run newapkbuild, I'm getting

/ # /usr/bin/newapkbuild mypackage  >>> ERROR: : Do not run abuild as root  >>> ERROR: : Do not run abuild as root  

iwlwifi drivers not loading for ax200 in MX linux

Posted: 19 Mar 2021 08:07 AM PDT

Note: Tried backports, importing latest iwlwifi hardware and ubuntu live usb picked up adapter but then started outputting the same logs as MX Linux

Kernel is 5.8, wifi driver is the intel iwlwifi version for ax200 requiring a kernel of at least 5.1 and the wifi card appears in lspci -k but nothing I've tried is working as I can't find any documentation from intel surrounding this or any other thread someone has asked, so any help or suggestions would be appreciated. sudo dmesg | grep wifi outputs:

[    8.389266] iwlwifi 0000:01:00.0: firmware: failed to load iwlwifi-cc-a0-56.ucode (-2)   [    8.389279] iwlwifi 0000:01:00.0: Direct firmware load for iwlwifi-cc-a0-56.ucode failed with error -2   [    8.588769] iwlwifi 0000:01:00.0: firmware: direct-loading firmware iwlwifi-cc-a0-55.ucode   [    8.588779] iwlwifi 0000:01:00.0: api flags index 2 larger than supported by driver   [    8.588789] iwlwifi 0000:01:00.0: TLV_FW_FSEQ_VERSION: FSEQ Version: 89.3.35.22   [    8.588792] iwlwifi 0000:01:00.0: Found debug destination: EXTERNAL_DRAM   [    8.588793] iwlwifi 0000:01:00.0: Found debug configuration: 0   [    8.589074] iwlwifi 0000:01:00.0: loaded firmware version 55.d9698065.0 cc-a0-55.ucode op_mode iwlmvm   [    8.589099] iwlwifi 0000:01:00.0: firmware: failed to load iwl-debug-yoyo.bin (-2)   [    9.044347] iwlwifi 0000:01:00.0: Detected Intel(R) Wi-Fi 6 AX200 160MHz, REV=0x340   [    9.220725] iwlwifi 0000:01:00.0: base HW address: a8:7e:ea:ed:72:a9   [   28.267523] iwlwifi 0000:01:00.0: SecBoot CPU1 Status: 0x5b22, CPU2 Status: 0x3   [   28.267561] iwlwifi 0000:01:00.0: UMAC PC: 0x80480218   [   28.267585] iwlwifi 0000:01:00.0: LMAC PC: 0x104   [   28.267603] iwlwifi 0000:01:00.0: WRT: Collecting data: ini trigger 13 fired.   [   28.267680] iwlwifi 0000:01:00.0: Start IWL Error Log Dump:   [   28.267736] iwlwifi 0000:01:00.0: Status: 0x00000000, count: 6   [   28.267794] iwlwifi 0000:01:00.0: Loaded firmware version: 55.d9698065.0 cc-a0-55.ucode   [   28.267856] iwlwifi 0000:01:00.0: 0x00000071 | NMI_INTERRUPT_UMAC_FATAL       [   28.267903] iwlwifi 0000:01:00.0: 0x002022F0 | trm_hw_status0   [   28.267922] iwlwifi 0000:01:00.0: 0x00000000 | trm_hw_status1   [   28.267942] iwlwifi 0000:01:00.0: 0x004FA34A | branchlink2   [   28.267961] iwlwifi 0000:01:00.0: 0x004E4BBC | interruptlink1   [   28.267979] iwlwifi 0000:01:00.0: 0x004E4BBC | interruptlink2   [   28.267999] iwlwifi 0000:01:00.0: 0x004F3F8A | data1   [   28.268016] iwlwifi 0000:01:00.0: 0x00001000 | data2   [   28.268033] iwlwifi 0000:01:00.0: 0x00000000 | data3   [   28.268049] iwlwifi 0000:01:00.0: 0x00000000 | beacon time   [   28.268068] iwlwifi 0000:01:00.0: 0x00007F4D | tsf low   [   28.268085] iwlwifi 0000:01:00.0: 0x00000000 | tsf hi   [   28.268102] iwlwifi 0000:01:00.0: 0x00000000 | time gp1   [   28.268120] iwlwifi 0000:01:00.0: 0x0000DB62 | time gp2   [   28.268138] iwlwifi 0000:01:00.0: 0x00000001 | uCode revision type   [   28.268159] iwlwifi 0000:01:00.0: 0x00000037 | uCode version major   [   28.268179] iwlwifi 0000:01:00.0: 0xD9698065 | uCode version minor   [   28.268214] iwlwifi 0000:01:00.0: 0x00000340 | hw version   [   28.268250] iwlwifi 0000:01:00.0: 0x18C89000 | board version   [   28.268288] iwlwifi 0000:01:00.0: 0x8001FF03 | hcmd   [   28.268322] iwlwifi 0000:01:00.0: 0x00020000 | isr0   [   28.268355] iwlwifi 0000:01:00.0: 0x00000000 | isr1   [   28.268388] iwlwifi 0000:01:00.0: 0x08F00002 | isr2   [   28.268421] iwlwifi 0000:01:00.0: 0x00C0000C | isr3   [   28.268454] iwlwifi 0000:01:00.0: 0x00000000 | isr4   [   28.268506] iwlwifi 0000:01:00.0: 0x00000000 | last cmd Id   [   28.268548] iwlwifi 0000:01:00.0: 0x004F3F8A | wait_event   [   28.268585] iwlwifi 0000:01:00.0: 0x00000000 | l2p_control   [   28.268622] iwlwifi 0000:01:00.0: 0x00000020 | l2p_duration   [   28.268659] iwlwifi 0000:01:00.0: 0x00000000 | l2p_mhvalid   [   28.268689] iwlwifi 0000:01:00.0: 0x00000000 | l2p_addr_match   [   28.268708] iwlwifi 0000:01:00.0: 0x00000009 | lmpm_pmg_sel   [   28.268727] iwlwifi 0000:01:00.0: 0x00000000 | timestamp   [   28.268745] iwlwifi 0000:01:00.0: 0x0000F81C | flow_handler   [   28.268806] iwlwifi 0000:01:00.0: Start IWL Error Log Dump:   [   28.268843] iwlwifi 0000:01:00.0: Status: 0x00000000, count: 7   [   28.268882] iwlwifi 0000:01:00.0: 0x201000A3 | ADVANCED_SYSASSERT   [   28.268922] iwlwifi 0000:01:00.0: 0x00000000 | umac branchlink1   [   28.268961] iwlwifi 0000:01:00.0: 0x80465826 | umac branchlink2   [   28.269000] iwlwifi 0000:01:00.0: 0xC0086AC0 | umac interruptlink1   [   28.269041] iwlwifi 0000:01:00.0: 0x00000000 | umac interruptlink2   [   28.269082] iwlwifi 0000:01:00.0: 0xDEADBEEF | umac data1   [   28.269834] iwlwifi 0000:01:00.0: 0xDEADBEEF | umac data2   [   28.270616] iwlwifi 0000:01:00.0: 0xDEADBEEF | umac data3   [   28.271341] iwlwifi 0000:01:00.0: 0x00000037 | umac major   [   28.272018] iwlwifi 0000:01:00.0: 0xD9698065 | umac minor   [   28.272767] iwlwifi 0000:01:00.0: 0x0000DB54 | frame pointer   [   28.273448] iwlwifi 0000:01:00.0: 0xC0886BF8 | stack pointer   [   28.274127] iwlwifi 0000:01:00.0: 0x00000000 | last host cmd   [   28.274851] iwlwifi 0000:01:00.0: 0x00000000 | isr status reg   [   28.275533] iwlwifi 0000:01:00.0: Fseq Registers:   [   28.276229] iwlwifi 0000:01:00.0: 0x60000000 | FSEQ_ERROR_CODE   [   28.276911] iwlwifi 0000:01:00.0: 0x80290021 | FSEQ_TOP_INIT_VERSION   [   28.277605] iwlwifi 0000:01:00.0: 0x00050008 | FSEQ_CNVIO_INIT_VERSION   [   28.278302] iwlwifi 0000:01:00.0: 0x0000A503 | FSEQ_OTP_VERSION   [   28.279032] iwlwifi 0000:01:00.0: 0x80000003 | FSEQ_TOP_CONTENT_VERSION   [   28.279752] iwlwifi 0000:01:00.0: 0x4552414E | FSEQ_ALIVE_TOKEN   [   28.280471] iwlwifi 0000:01:00.0: 0x00100530 | FSEQ_CNVI_ID   [   28.281195] iwlwifi 0000:01:00.0: 0x00000532 | FSEQ_CNVR_ID   [   28.281932] iwlwifi 0000:01:00.0: 0x00100530 | CNVI_AUX_MISC_CHIP   [   28.282671] iwlwifi 0000:01:00.0: 0x00000532 | CNVR_AUX_MISC_CHIP   [   28.283399] iwlwifi 0000:01:00.0: 0x05B0905B | CNVR_SCU_SD_REGS_SD_REG_DIG_DCDC_VTRIM   [   28.284153] iwlwifi 0000:01:00.0: 0x0000025B | CNVR_SCU_SD_REGS_SD_REG_ACTIVE_VDIG_MIRROR   [   28.285008] iwlwifi 0000:01:00.0: WRT: Collecting data: ini trigger 4 fired.   [   28.285019] iwlwifi 0000:01:00.0: Failed to start RT ucode: -110   [   28.285809] iwlwifi 0000:01:00.0: Failed to start RT ucode: -110   [   28.620871] iwlwifi 0000:01:00.0: WRT: Failed to dump region: id=4, type=5   [   28.620879] iwlwifi 0000:01:00.0: WRT: Failed to dump region: id=6, type=5   [   29.995542] iwlwifi 0000:01:00.0: SecBoot CPU1 Status: 0x5b00, CPU2 Status: 0x3   [   29.995555] iwlwifi 0000:01:00.0: UMAC PC: 0x80480218   [   29.995564] iwlwifi 0000:01:00.0: LMAC PC: 0x104   [   29.995568] iwlwifi 0000:01:00.0: WRT: Collecting data: ini trigger 13 fired.   [   29.995635] iwlwifi 0000:01:00.0: Start IWL Error Log Dump:   [   29.995638] iwlwifi 0000:01:00.0: Status: 0x00000010, count: 6   [   29.995640] iwlwifi 0000:01:00.0: Loaded firmware version: 55.d9698065.0 cc-a0-55.ucode   [   29.995642] iwlwifi 0000:01:00.0: 0x00000071 | NMI_INTERRUPT_UMAC_FATAL       [   29.995644] iwlwifi 0000:01:00.0: 0x002022F0 | trm_hw_status0   [   29.995646] iwlwifi 0000:01:00.0: 0x00000000 | trm_hw_status1   [   29.995648] iwlwifi 0000:01:00.0: 0x004FA34A | branchlink2   [   29.995650] iwlwifi 0000:01:00.0: 0x004E4BBC | interruptlink1   [   29.995652] iwlwifi 0000:01:00.0: 0x004E4BBC | interruptlink2   [   29.995654] iwlwifi 0000:01:00.0: 0x004F3F8A | data1   [   29.995656] iwlwifi 0000:01:00.0: 0x00001000 | data2   [   29.995658] iwlwifi 0000:01:00.0: 0x00000000 | data3   [   29.995659] iwlwifi 0000:01:00.0: 0x00000000 | beacon time   [   29.995661] iwlwifi 0000:01:00.0: 0x00007EB4 | tsf low   [   29.995663] iwlwifi 0000:01:00.0: 0x00000000 | tsf hi   [   29.995665] iwlwifi 0000:01:00.0: 0x00000000 | time gp1   [   29.995667] iwlwifi 0000:01:00.0: 0x0000DAA8 | time gp2   [   29.995669] iwlwifi 0000:01:00.0: 0x00000001 | uCode revision type   [   29.995671] iwlwifi 0000:01:00.0: 0x00000037 | uCode version major   [   29.995673] iwlwifi 0000:01:00.0: 0xD9698065 | uCode version minor   [   29.995674] iwlwifi 0000:01:00.0: 0x00000340 | hw version   [   29.995676] iwlwifi 0000:01:00.0: 0x18C89000 | board version   [   29.995678] iwlwifi 0000:01:00.0: 0x8001FF03 | hcmd   [   29.995680] iwlwifi 0000:01:00.0: 0x00020000 | isr0   [   29.995682] iwlwifi 0000:01:00.0: 0x00000000 | isr1   [   29.995684] iwlwifi 0000:01:00.0: 0x08F00002 | isr2   [   29.995686] iwlwifi 0000:01:00.0: 0x00C0000C | isr3   [   29.995687] iwlwifi 0000:01:00.0: 0x00000000 | isr4   [   29.995689] iwlwifi 0000:01:00.0: 0x00000000 | last cmd Id   [   29.995691] iwlwifi 0000:01:00.0: 0x004F3F8A | wait_event   [   29.995693] iwlwifi 0000:01:00.0: 0x00000000 | l2p_control   [   29.995695] iwlwifi 0000:01:00.0: 0x00000020 | l2p_duration   [   29.995697] iwlwifi 0000:01:00.0: 0x00000000 | l2p_mhvalid   [   29.995698] iwlwifi 0000:01:00.0: 0x00000000 | l2p_addr_match   [   29.995700] iwlwifi 0000:01:00.0: 0x00000009 | lmpm_pmg_sel   [   29.995702] iwlwifi 0000:01:00.0: 0x00000000 | timestamp   [   29.995704] iwlwifi 0000:01:00.0: 0x0000F81C | flow_handler   [   29.995728] iwlwifi 0000:01:00.0: Start IWL Error Log Dump:   [   29.995730] iwlwifi 0000:01:00.0: Status: 0x00000010, count: 7   [   29.995732] iwlwifi 0000:01:00.0: 0x201000A3 | ADVANCED_SYSASSERT   [   29.995734] iwlwifi 0000:01:00.0: 0x00000000 | umac branchlink1   [   29.995736] iwlwifi 0000:01:00.0: 0x80465826 | umac branchlink2   [   29.995738] iwlwifi 0000:01:00.0: 0xC0086AC0 | umac interruptlink1   [   29.995740] iwlwifi 0000:01:00.0: 0x00000000 | umac interruptlink2   [   29.995742] iwlwifi 0000:01:00.0: 0xDEADBEEF | umac data1   [   29.995744] iwlwifi 0000:01:00.0: 0xDEADBEEF | umac data2   [   29.995746] iwlwifi 0000:01:00.0: 0xDEADBEEF | umac data3   [   29.995747] iwlwifi 0000:01:00.0: 0x00000037 | umac major   [   29.995749] iwlwifi 0000:01:00.0: 0xD9698065 | umac minor   [   29.995751] iwlwifi 0000:01:00.0: 0x0000DA9A | frame pointer   [   29.995753] iwlwifi 0000:01:00.0: 0xC0886BF8 | stack pointer   [   29.995755] iwlwifi 0000:01:00.0: 0x00000000 | last host cmd   [   29.995757] iwlwifi 0000:01:00.0: 0x00000000 | isr status reg   [   29.995763] iwlwifi 0000:01:00.0: Fseq Registers:   [   29.995766] iwlwifi 0000:01:00.0: 0x60000000 | FSEQ_ERROR_CODE   [   29.995770] iwlwifi 0000:01:00.0: 0x80290021 | FSEQ_TOP_INIT_VERSION   [   29.995774] iwlwifi 0000:01:00.0: 0x00050008 | FSEQ_CNVIO_INIT_VERSION   [   29.995778] iwlwifi 0000:01:00.0: 0x0000A503 | FSEQ_OTP_VERSION   [   29.995782] iwlwifi 0000:01:00.0: 0x80000003 | FSEQ_TOP_CONTENT_VERSION   [   29.995785] iwlwifi 0000:01:00.0: 0x4552414E | FSEQ_ALIVE_TOKEN   [   29.995789] iwlwifi 0000:01:00.0: 0x00100530 | FSEQ_CNVI_ID   [   29.995793] iwlwifi 0000:01:00.0: 0x00000532 | FSEQ_CNVR_ID   [   29.995796] iwlwifi 0000:01:00.0: 0x00100530 | CNVI_AUX_MISC_CHIP   [   29.995802] iwlwifi 0000:01:00.0: 0x00000532 | CNVR_AUX_MISC_CHIP   [   29.995808] iwlwifi 0000:01:00.0: 0x05B0905B | CNVR_SCU_SD_REGS_SD_REG_DIG_DCDC_VTRIM   [   29.995814] iwlwifi 0000:01:00.0: 0x0000025B | CNVR_SCU_SD_REGS_SD_REG_ACTIVE_VDIG_MIRROR   [   29.995819] iwlwifi 0000:01:00.0: Firmware error during reconfiguration - reprobe!   [   29.995822] iwlwifi 0000:01:00.0: Failed to start RT ucode: -110   [   29.995824] iwlwifi 0000:01:00.0: Failed to start RT ucode: -110   [   30.407259] iwlwifi 0000:01:00.0: firmware: failed to load iwlwifi-cc-a0-56.ucode (-2)   [   30.407263] iwlwifi 0000:01:00.0: Direct firmware load for iwlwifi-cc-a0-56.ucode failed with error -2   [   30.407771] iwlwifi 0000:01:00.0: firmware: direct-loading firmware iwlwifi-cc-a0-55.ucode   [   30.407780] iwlwifi 0000:01:00.0: api flags index 2 larger than supported by driver   [   30.407790] iwlwifi 0000:01:00.0: TLV_FW_FSEQ_VERSION: FSEQ Version: 89.3.35.22   [   30.407792] iwlwifi 0000:01:00.0: Found debug destination: EXTERNAL_DRAM   [   30.407793] iwlwifi 0000:01:00.0: Found debug configuration: 0   [   30.408135] iwlwifi 0000:01:00.0: loaded firmware version 55.d9698065.0 cc-a0-55.ucode op_mode iwlmvm   [   30.408155] iwlwifi 0000:01:00.0: firmware: failed to load iwl-debug-yoyo.bin (-2)   [   30.408172] iwlwifi 0000:01:00.0: Detected Intel(R) Wi-Fi 6 AX200 160MHz, REV=0x340   [   30.585969] iwlwifi 0000:01:00.0: base HW address: a8:7e:ea:ed:72:a9   [   32.107530] iwlwifi 0000:01:00.0: SecBoot CPU1 Status: 0x5b0c, CPU2 Status: 0x3   [   32.107544] iwlwifi 0000:01:00.0: UMAC PC: 0x80480218   [   32.107555] iwlwifi 0000:01:00.0: LMAC PC: 0x104   [   32.107563] iwlwifi 0000:01:00.0: WRT: Collecting data: ini trigger 13 fired.   [   32.107643] iwlwifi 0000:01:00.0: Start IWL Error Log Dump:   [   32.107646] iwlwifi 0000:01:00.0: Status: 0x00000000, count: 6   [   32.107648] iwlwifi 0000:01:00.0: Loaded firmware version: 55.d9698065.0 cc-a0-55.ucode   [   32.107661] iwlwifi 0000:01:00.0: 0x00000071 | NMI_INTERRUPT_UMAC_FATAL       [   32.107663] iwlwifi 0000:01:00.0: 0x002022F0 | trm_hw_status0   [   32.107665] iwlwifi 0000:01:00.0: 0x00000000 | trm_hw_status1   [   32.107667] iwlwifi 0000:01:00.0: 0x004FA34A | branchlink2   [   32.107669] iwlwifi 0000:01:00.0: 0x004E4BBC | interruptlink1   [   32.107671] iwlwifi 0000:01:00.0: 0x004E4BBC | interruptlink2   [   32.107673] iwlwifi 0000:01:00.0: 0x004F3F8A | data1   [   32.107675] iwlwifi 0000:01:00.0: 0x00001000 | data2   [   32.107677] iwlwifi 0000:01:00.0: 0x00000000 | data3   [   32.107678] iwlwifi 0000:01:00.0: 0x00000000 | beacon time   [   32.107680] iwlwifi 0000:01:00.0: 0x0000B52A | tsf low   [   32.107682] iwlwifi 0000:01:00.0: 0x00000000 | tsf hi   [   32.107684] iwlwifi 0000:01:00.0: 0x00000000 | time gp1   [   32.107686] iwlwifi 0000:01:00.0: 0x0001112D | time gp2   [   32.107688] iwlwifi 0000:01:00.0: 0x00000001 | uCode revision type   [   32.107690] iwlwifi 0000:01:00.0: 0x00000037 | uCode version major   [   32.107692] iwlwifi 0000:01:00.0: 0xD9698065 | uCode version minor   [   32.107694] iwlwifi 0000:01:00.0: 0x00000340 | hw version   [   32.107696] iwlwifi 0000:01:00.0: 0x18C89000 | board version   [   32.107698] iwlwifi 0000:01:00.0: 0x8001FF03 | hcmd   [   32.107699] iwlwifi 0000:01:00.0: 0x00020000 | isr0   [   32.107701] iwlwifi 0000:01:00.0: 0x00000000 | isr1   [   32.107703] iwlwifi 0000:01:00.0: 0x08F00002 | isr2   [   32.107705] iwlwifi 0000:01:00.0: 0x00C0000C | isr3   [   32.107707] iwlwifi 0000:01:00.0: 0x00000000 | isr4   [   32.107709] iwlwifi 0000:01:00.0: 0x00000000 | last cmd Id   [   32.107710] iwlwifi 0000:01:00.0: 0x004F3F8A | wait_event   [   32.107712] iwlwifi 0000:01:00.0: 0x00000000 | l2p_control   [   32.107714] iwlwifi 0000:01:00.0: 0x00000020 | l2p_duration   [   32.107716] iwlwifi 0000:01:00.0: 0x00000000 | l2p_mhvalid   [   32.107718] iwlwifi 0000:01:00.0: 0x00000000 | l2p_addr_match   [   32.107720] iwlwifi 0000:01:00.0: 0x00000009 | lmpm_pmg_sel   [   32.107722] iwlwifi 0000:01:00.0: 0x00000000 | timestamp   [   32.107724] iwlwifi 0000:01:00.0: 0x0000F81C | flow_handler   [   32.107748] iwlwifi 0000:01:00.0: Start IWL Error Log Dump:   [   32.107750] iwlwifi 0000:01:00.0: Status: 0x00000000, count: 7   [   32.107752] iwlwifi 0000:01:00.0: 0x20100222 | ADVANCED_SYSASSERT   [   32.107754] iwlwifi 0000:01:00.0: 0x00000000 | umac branchlink1   [   32.107756] iwlwifi 0000:01:00.0: 0x80465826 | umac branchlink2   [   32.107758] iwlwifi 0000:01:00.0: 0xC0086AC0 | umac interruptlink1   [   32.107760] iwlwifi 0000:01:00.0: 0x00000000 | umac interruptlink2   [   32.107762] iwlwifi 0000:01:00.0: 0xDEADBEEF | umac data1   [   32.107764] iwlwifi 0000:01:00.0: 0xDEADBEEF | umac data2   [   32.107766] iwlwifi 0000:01:00.0: 0xDEADBEEF | umac data3   [   32.107767] iwlwifi 0000:01:00.0: 0x00000037 | umac major   [   32.107769] iwlwifi 0000:01:00.0: 0xD9698065 | umac minor   [   32.107771] iwlwifi 0000:01:00.0: 0x0001111F | frame pointer   [   32.107773] iwlwifi 0000:01:00.0: 0xC0886ADC | stack pointer   [   32.107775] iwlwifi 0000:01:00.0: 0x00000000 | last host cmd   [   32.107777] iwlwifi 0000:01:00.0: 0x00000000 | isr status reg   [   32.107783] iwlwifi 0000:01:00.0: Fseq Registers:   [   32.107787] iwlwifi 0000:01:00.0: 0x60000000 | FSEQ_ERROR_CODE   [   32.107790] iwlwifi 0000:01:00.0: 0x80290021 | FSEQ_TOP_INIT_VERSION   [   32.107795] iwlwifi 0000:01:00.0: 0x00050008 | FSEQ_CNVIO_INIT_VERSION   [   32.107801] iwlwifi 0000:01:00.0: 0x0000A503 | FSEQ_OTP_VERSION   [   32.107806] iwlwifi 0000:01:00.0: 0x80000003 | FSEQ_TOP_CONTENT_VERSION   [   32.107811] iwlwifi 0000:01:00.0: 0x4552414E | FSEQ_ALIVE_TOKEN   [   32.107826] iwlwifi 0000:01:00.0: 0x00100530 | FSEQ_CNVI_ID   [   32.107831] iwlwifi 0000:01:00.0: 0x00000532 | FSEQ_CNVR_ID   [   32.107837] iwlwifi 0000:01:00.0: 0x00100530 | CNVI_AUX_MISC_CHIP   [   32.107844] iwlwifi 0000:01:00.0: 0x00000532 | CNVR_AUX_MISC_CHIP   [   32.107851] iwlwifi 0000:01:00.0: 0x05B0905B | CNVR_SCU_SD_REGS_SD_REG_DIG_DCDC_VTRIM   [   32.107856] iwlwifi 0000:01:00.0: 0x0000025B | CNVR_SCU_SD_REGS_SD_REG_ACTIVE_VDIG_MIRROR   [   32.107956] iwlwifi 0000:01:00.0: WRT: Collecting data: ini trigger 4 fired.   [   32.107963] iwlwifi 0000:01:00.0: Failed to start RT ucode: -110   [   32.107966] iwlwifi 0000:01:00.0: Failed to start RT ucode: -110   [   32.442932] iwlwifi 0000:01:00.0: WRT: Failed to dump region: id=4, type=5   [   32.442938] iwlwifi 0000:01:00.0: WRT: Failed to dump region: id=6, type=5   [   33.835557] iwlwifi 0000:01:00.0: SecBoot CPU1 Status: 0x5a7f, CPU2 Status: 0x3   [   33.835574] iwlwifi 0000:01:00.0: UMAC PC: 0x80480218   [   33.835584] iwlwifi 0000:01:00.0: LMAC PC: 0x104   [   33.835593] iwlwifi 0000:01:00.0: WRT: Collecting data: ini trigger 13 fired.   [   33.835669] iwlwifi 0000:01:00.0: Start IWL Error Log Dump:   [   33.835672] iwlwifi 0000:01:00.0: Status: 0x00000010, count: 6   [   33.835676] iwlwifi 0000:01:00.0: Loaded firmware version: 55.d9698065.0 cc-a0-55.ucode   [   33.835680] iwlwifi 0000:01:00.0: 0x00000071 | NMI_INTERRUPT_UMAC_FATAL       [   33.835684] iwlwifi 0000:01:00.0: 0x002022F0 | trm_hw_status0   [   33.835687] iwlwifi 0000:01:00.0: 0x00000000 | trm_hw_status1   [   33.835690] iwlwifi 0000:01:00.0: 0x004FA34A | branchlink2   [   33.835693] iwlwifi 0000:01:00.0: 0x004E4BBC | interruptlink1   [   33.835696] iwlwifi 0000:01:00.0: 0x004E4BBC | interruptlink2   [   33.835699] iwlwifi 0000:01:00.0: 0x004F3F8A | data1   [   33.835702] iwlwifi 0000:01:00.0: 0x00001000 | data2   [   33.835705] iwlwifi 0000:01:00.0: 0x00000000 | data3   [   33.835707] iwlwifi 0000:01:00.0: 0x00000000 | beacon time   [   33.835709] iwlwifi 0000:01:00.0: 0x0000B090 | tsf low   [   33.835711] iwlwifi 0000:01:00.0: 0x00000000 | tsf hi   [   33.835713] iwlwifi 0000:01:00.0: 0x00000000 | time gp1   [   33.835715] iwlwifi 0000:01:00.0: 0x00010C02 | time gp2   [   33.835717] iwlwifi 0000:01:00.0: 0x00000001 | uCode revision type   [   33.835719] iwlwifi 0000:01:00.0: 0x00000037 | uCode version major   [   33.835721] iwlwifi 0000:01:00.0: 0xD9698065 | uCode version minor   [   33.835723] iwlwifi 0000:01:00.0: 0x00000340 | hw version   [   33.835724] iwlwifi 0000:01:00.0: 0x18C89000 | board version   [   33.835726] iwlwifi 0000:01:00.0: 0x8001FF03 | hcmd   [   33.835728] iwlwifi 0000:01:00.0: 0x00020000 | isr0   [   33.835730] iwlwifi 0000:01:00.0: 0x00000000 | isr1   [   33.835732] iwlwifi 0000:01:00.0: 0x08F00002 | isr2   [   33.835733] iwlwifi 0000:01:00.0: 0x00C0000C | isr3   [   33.835735] iwlwifi 0000:01:00.0: 0x00000000 | isr4   [   33.835737] iwlwifi 0000:01:00.0: 0x00000000 | last cmd Id   [   33.835739] iwlwifi 0000:01:00.0: 0x004F3F8A | wait_event   [   33.835741] iwlwifi 0000:01:00.0: 0x00000000 | l2p_control   [   33.835743] iwlwifi 0000:01:00.0: 0x00000020 | l2p_duration   [   33.835745] iwlwifi 0000:01:00.0: 0x00000000 | l2p_mhvalid   [   33.835747] iwlwifi 0000:01:00.0: 0x00000000 | l2p_addr_match   [   33.835748] iwlwifi 0000:01:00.0: 0x00000009 | lmpm_pmg_sel   [   33.835750] iwlwifi 0000:01:00.0: 0x00000000 | timestamp   [   33.835752] iwlwifi 0000:01:00.0: 0x0000F81C | flow_handler   [   33.835777] iwlwifi 0000:01:00.0: Start IWL Error Log Dump:   [   33.835780] iwlwifi 0000:01:00.0: Status: 0x00000010, count: 7   [   33.835782] iwlwifi 0000:01:00.0: 0x20100222 | ADVANCED_SYSASSERT   [   33.835784] iwlwifi 0000:01:00.0: 0x00000000 | umac branchlink1   [   33.835786] iwlwifi 0000:01:00.0: 0x80465826 | umac branchlink2   [   33.835788] iwlwifi 0000:01:00.0: 0xC0086AC0 | umac interruptlink1   [   33.835791] iwlwifi 0000:01:00.0: 0x00000000 | umac interruptlink2   [   33.835792] iwlwifi 0000:01:00.0: 0xDEADBEEF | umac data1   [   33.835794] iwlwifi 0000:01:00.0: 0xDEADBEEF | umac data2   [   33.835796] iwlwifi 0000:01:00.0: 0xDEADBEEF | umac data3   [   33.835798] iwlwifi 0000:01:00.0: 0x00000037 | umac major   [   33.835800] iwlwifi 0000:01:00.0: 0xD9698065 | umac minor   [   33.835802] iwlwifi 0000:01:00.0: 0x00010BF4 | frame pointer   [   33.835804] iwlwifi 0000:01:00.0: 0xC0886ADC | stack pointer   [   33.835806] iwlwifi 0000:01:00.0: 0x00000000 | last host cmd   [   33.835807] iwlwifi 0000:01:00.0: 0x00000000 | isr status reg   [   33.835814] iwlwifi 0000:01:00.0: Fseq Registers:   [   33.835818] iwlwifi 0000:01:00.0: 0x60000000 | FSEQ_ERROR_CODE   [   33.835822] iwlwifi 0000:01:00.0: 0x80290021 | FSEQ_TOP_INIT_VERSION   [   33.835826] iwlwifi 0000:01:00.0: 0x00050008 | FSEQ_CNVIO_INIT_VERSION   [   33.835830] iwlwifi 0000:01:00.0: 0x0000A503 | FSEQ_OTP_VERSION   [   33.835834] iwlwifi 0000:01:00.0: 0x80000003 | FSEQ_TOP_CONTENT_VERSION   [   33.835838] iwlwifi 0000:01:00.0: 0x4552414E | FSEQ_ALIVE_TOKEN   [   33.835842] iwlwifi 0000:01:00.0: 0x00100530 | FSEQ_CNVI_ID   [   33.835847] iwlwifi 0000:01:00.0: 0x00000532 | FSEQ_CNVR_ID   [   33.835851] iwlwifi 0000:01:00.0: 0x00100530 | CNVI_AUX_MISC_CHIP   [   33.835857] iwlwifi 0000:01:00.0: 0x00000532 | CNVR_AUX_MISC_CHIP   [   33.835865] iwlwifi 0000:01:00.0: 0x05B0905B | CNVR_SCU_SD_REGS_SD_REG_DIG_DCDC_VTRIM   [   33.835871] iwlwifi 0000:01:00.0: 0x0000025B | CNVR_SCU_SD_REGS_SD_REG_ACTIVE_VDIG_MIRROR   [   33.835877] iwlwifi 0000:01:00.0: Firmware error during reconfiguration - reprobe!   [   33.835882] iwlwifi 0000:01:00.0: Failed to start RT ucode: -110   [   33.835885] iwlwifi 0000:01:00.0: Failed to start RT ucode: -110   [   34.258401] iwlwifi 0000:01:00.0: firmware: failed to load iwlwifi-cc-a0-56.ucode (-2)   [   34.258404] iwlwifi 0000:01:00.0: Direct firmware load for iwlwifi-cc-a0-56.ucode failed with error -2   [   34.258835] iwlwifi 0000:01:00.0: firmware: direct-loading firmware iwlwifi-cc-a0-55.ucode   [   34.258845] iwlwifi 0000:01:00.0: api flags index 2 larger than supported by driver   [   34.258854] iwlwifi 0000:01:00.0: TLV_FW_FSEQ_VERSION: FSEQ Version: 89.3.35.22   [   34.258857] iwlwifi 0000:01:00.0: Found debug destination: EXTERNAL_DRAM   [   34.258858] iwlwifi 0000:01:00.0: Found debug configuration: 0   [   34.259194] iwlwifi 0000:01:00.0: loaded firmware version 55.d9698065.0 cc-a0-55.ucode op_mode iwlmvm   [   34.259203] iwlwifi 0000:01:00.0: firmware: failed to load iwl-debug-yoyo.bin (-2)   [   34.259222] iwlwifi 0000:01:00.0: Detected Intel(R) Wi-Fi 6 AX200 160MHz, REV=0x340   [   35.307544] iwlwifi 0000:01:00.0: SecBoot CPU1 Status: 0x5b48, CPU2 Status: 0x3   [   35.307556] iwlwifi 0000:01:00.0: UMAC PC: 0x80480218   [   35.307565] iwlwifi 0000:01:00.0: LMAC PC: 0x104   [   35.307570] iwlwifi 0000:01:00.0: WRT: Collecting data: ini trigger 13 fired.   [   35.307637] iwlwifi 0000:01:00.0: Start IWL Error Log Dump:   [   35.307639] iwlwifi 0000:01:00.0: Status: 0x00000000, count: 6   [   35.307641] iwlwifi 0000:01:00.0: Loaded firmware version: 55.d9698065.0 cc-a0-55.ucode   [   35.307644] iwlwifi 0000:01:00.0: 0x00000071 | NMI_INTERRUPT_UMAC_FATAL       [   35.307646] iwlwifi 0000:01:00.0: 0x002022F0 | trm_hw_status0   [   35.307648] iwlwifi 0000:01:00.0: 0x00000000 | trm_hw_status1   [   35.307650] iwlwifi 0000:01:00.0: 0x004FA34A | branchlink2   [   35.307652] iwlwifi 0000:01:00.0: 0x004E4BBC | interruptlink1   [   35.307654] iwlwifi 0000:01:00.0: 0x004E4BBC | interruptlink2   [   35.307656] iwlwifi 0000:01:00.0: 0x004F3F8A | data1   [   35.307657] iwlwifi 0000:01:00.0: 0x00001000 | data2   [   35.307659] iwlwifi 0000:01:00.0: 0x00000000 | data3   [   35.307661] iwlwifi 0000:01:00.0: 0x00000000 | beacon time   [   35.307663] iwlwifi 0000:01:00.0: 0x0000B0C0 | tsf low   [   35.307665] iwlwifi 0000:01:00.0: 0x00000000 | tsf hi   [   35.307667] iwlwifi 0000:01:00.0: 0x00000000 | time gp1   [   35.307669] iwlwifi 0000:01:00.0: 0x00010CFB | time gp2   [   35.307670] iwlwifi 0000:01:00.0: 0x00000001 | uCode revision type   [   35.307672] iwlwifi 0000:01:00.0: 0x00000037 | uCode version major   [   35.307674] iwlwifi 0000:01:00.0: 0xD9698065 | uCode version minor   [   35.307676] iwlwifi 0000:01:00.0: 0x00000340 | hw version   [   35.307678] iwlwifi 0000:01:00.0: 0x18C89000 | board version   [   35.307680] iwlwifi 0000:01:00.0: 0x8001FF03 | hcmd   [   35.307682] iwlwifi 0000:01:00.0: 0x00020000 | isr0   [   35.307684] iwlwifi 0000:01:00.0: 0x00000000 | isr1   [   35.307686] iwlwifi 0000:01:00.0: 0x08F00002 | isr2   [   35.307687] iwlwifi 0000:01:00.0: 0x00C0000C | isr3   [   35.307689] iwlwifi 0000:01:00.0: 0x00000000 | isr4   [   35.307691] iwlwifi 0000:01:00.0: 0x00000000 | last cmd Id   [   35.307693] iwlwifi 0000:01:00.0: 0x004F3F8A | wait_event   [   35.307695] iwlwifi 0000:01:00.0: 0x00000000 | l2p_control   [   35.307697] iwlwifi 0000:01:00.0: 0x00000020 | l2p_duration   [   35.307698] iwlwifi 0000:01:00.0: 0x00000000 | l2p_mhvalid   [   35.307700] iwlwifi 0000:01:00.0: 0x00000000 | l2p_addr_match   [   35.307702] iwlwifi 0000:01:00.0: 0x00000009 | lmpm_pmg_sel   [   35.307704] iwlwifi 0000:01:00.0: 0x00000000 | timestamp   [   35.307706] iwlwifi 0000:01:00.0: 0x0000F81C | flow_handler   [   35.307730] iwlwifi 0000:01:00.0: Start IWL Error Log Dump:   [   35.307732] iwlwifi 0000:01:00.0: Status: 0x00000000, count: 7   [   35.307734] iwlwifi 0000:01:00.0: 0x20100222 | ADVANCED_SYSASSERT   [   35.307736] iwlwifi 0000:01:00.0: 0x00000000 | umac branchlink1   [   35.307738] iwlwifi 0000:01:00.0: 0x80465826 | umac branchlink2   [   35.307740] iwlwifi 0000:01:00.0: 0xC0086AC0 | umac interruptlink1   [   35.307742] iwlwifi 0000:01:00.0: 0x00000000 | umac interruptlink2   [   35.307744] iwlwifi 0000:01:00.0: 0xDEADBEEF | umac data1   [   35.307745] iwlwifi 0000:01:00.0: 0xDEADBEEF | umac data2   [   35.307747] iwlwifi 0000:01:00.0: 0xDEADBEEF | umac data3   [   35.307749] iwlwifi 0000:01:00.0: 0x00000037 | umac major   [   35.307751] iwlwifi 0000:01:00.0: 0xD9698065 | umac minor   [   35.307753] iwlwifi 0000:01:00.0: 0x00010CED | frame pointer   [   35.307755] iwlwifi 0000:01:00.0: 0xC0886ADC | stack pointer   [   35.307757] iwlwifi 0000:01:00.0: 0x00000000 | last host cmd   [   35.307758] iwlwifi 0000:01:00.0: 0x00000000 | isr status reg   [   35.307764] iwlwifi 0000:01:00.0: Fseq Registers:   [   35.307768] iwlwifi 0000:01:00.0: 0x60000000 | FSEQ_ERROR_CODE   [   35.307772] iwlwifi 0000:01:00.0: 0x80290021 | FSEQ_TOP_INIT_VERSION   [   35.307776] iwlwifi 0000:01:00.0: 0x00050008 | FSEQ_CNVIO_INIT_VERSION   [   35.307780] iwlwifi 0000:01:00.0: 0x0000A503 | FSEQ_OTP_VERSION   [   35.307784] iwlwifi 0000:01:00.0: 0x80000003 | FSEQ_TOP_CONTENT_VERSION   [   35.307787] iwlwifi 0000:01:00.0: 0x4552414E | FSEQ_ALIVE_TOKEN   [   35.307791] iwlwifi 0000:01:00.0: 0x00100530 | FSEQ_CNVI_ID   [   35.307795] iwlwifi 0000:01:00.0: 0x00000532 | FSEQ_CNVR_ID   [   35.307799] iwlwifi 0000:01:00.0: 0x00100530 | CNVI_AUX_MISC_CHIP   [   35.307804] iwlwifi 0000:01:00.0: 0x00000532 | CNVR_AUX_MISC_CHIP   [   35.307810] iwlwifi 0000:01:00.0: 0x05B0905B | CNVR_SCU_SD_REGS_SD_REG_DIG_DCDC_VTRIM   [   35.307816] iwlwifi 0000:01:00.0: 0x0000025B | CNVR_SCU_SD_REGS_SD_REG_ACTIVE_VDIG_MIRROR   [   35.307821] iwlwifi 0000:01:00.0: Failed to start RT ucode: -110   [   35.663630] iwlwifi 0000:01:00.0: Failed to run INIT ucode: -110  

select(2) on FIFO on macOS

Posted: 19 Mar 2021 09:04 AM PDT

On Linux the included program returns from select and exits:

$ gcc -Wall -Wextra select_test.c -o select_test  $ ./select_test  reading from read end  closing write end  first read returned 0  second read returned 0  selecting with read fd in fdset  select returned  

On OS X, the select blocks forever and the program does not exit. The Linux behavior matches my expectation and appears to conform to the following bit of the POSIX manual page for select:

A descriptor shall be considered ready for reading when a call to an input function with O_NONBLOCK clear would not block, whether or not the function would transfer data successfully. (The function might return data, an end-of-file indication, or an error other than one indicating that it is blocked, and in each of these cases the descriptor shall be considered ready for reading.)

Since read(2) on the read end of the fifo will always return EOF, my reading says that it should always be considered ready by select.

Is macOS's behavior here well-known or expected? Is there something else in this example that leads to the behavior difference?

A further note is that if I remove the read calls then macOS's select returns. This and some other experiments seem to indicate that once an EOF has been read from the file, it will no longer be marked as ready if select is called on it later.

Example Program

#include <sys/types.h>  #include <sys/stat.h>  #include <sys/select.h>  #include <fcntl.h>  #include <unistd.h>  #include <stdio.h>  #include <stdlib.h>    #define FILENAME "select_test_tmp.fifo"    int main()   {      pid_t pid;      int r_fd, w_fd;      unsigned char buffer[10];      fd_set readfds;        mkfifo(FILENAME, S_IRWXU);        pid = fork();      if (pid == -1)       {          perror("fork");          exit(1);      }        if (pid == 0)       {          w_fd = open(FILENAME, O_WRONLY);            if (w_fd == -1)           {              perror("open");              exit(1);          }            printf("closing write end\n");          close(w_fd);          exit(0);      }        r_fd = open(FILENAME, O_RDONLY);      if (r_fd == -1)       {          perror("open");          exit(1);      }        printf("reading from read end\n");        if (read(r_fd, &buffer, 10) == 0)       {          printf("first read returned 0\n");      }       else       {          printf("first read returned non-zero\n");      }        if (read(r_fd, &buffer, 10) == 0)       {          printf("second read returned 0\n");      }       else       {          printf("second read returned non-zero\n");      }        FD_ZERO(&readfds);      FD_SET(r_fd, &readfds);        printf("selecting with read fd in fdset\n");      if (select(r_fd + 1, &readfds, NULL, NULL, NULL) == -1)       {          perror("select");          exit(1);      }        printf("select returned\n");      unlink(FILENAME);      exit(0);  }  

Debian Jessie (8.7) LXDE how to type multiple languages

Posted: 19 Mar 2021 09:23 AM PDT

Background information: Debian Jessie (8.7) LXDE Desktop Environment. ttf-unfonts-core and fonts-unfonts-extra packages installed (so I can view Korean characters).

Right now I can view and type English (US) of course since I setup Debian using English (time zone set to Korea of course). But, I also want to be able to type Korean (English as main language, Korean secondary). I have tried using "Keyboard Layout Handler", but unchecking "Keep system layouts" and adding Korean language does not work. To switch to Korean I tried moving "KR" up in the "Keyboard Layouts" section in "Keyboard Layout Handler". And setting the keyboard shortcut toggle and using that. I still can't type Korean (only English).

How do I type English and Korean (switch between them and set English as main language if possible)? Any help is appreciated! Thanks!

Move to the previous line of a multi-line command

Posted: 19 Mar 2021 09:33 AM PDT

When editing multi-line commands, with escaped newlines, I cannot move up lines.

For example, suppose I enter echo \ one one line, then I press Enter, and then I want to edit the echo \ part of the command. Pressing Up doesn't move back to the first command line.

This works for long commands which wrap, but not with escaped newlines:

_physical_up_line()   { zle backward-char -n $COLUMNS }  _physical_down_line() { zle forward-char  -n $COLUMNS }  zle -N physical-up-line _physical_up_line  zle -N physical-down-line _physical_down_line  bindkey -M vicmd "R" physical-up-line  bindkey -M vicmd "N" physical-down-line  

Can I change a shortcut key to Windows key?

Posted: 19 Mar 2021 10:02 AM PDT

I'm trying to change the shortcut key for "Run Application" ( Alt+F2 ) to the Windows key.

When I click "Show the panel's Run application dialog box" in Keyboard Shorcuts, it says "New Shortcut", waiting for my key combination. I press the Windows key… and nothing happens.

What process created this X11 window?

Posted: 19 Mar 2021 10:43 AM PDT

Given an X11 window ID, is there a way to find the ID of the process that created it?

Of course this isn't always possible, for example if the window came over a TCP connection. For that case I'd like the IP and port associated with the remote end.

The question was asked before on Stack Overflow, and a proposed method was to use the _NET_WM_PID property. But that's set by the application. Is there a way to do it if the application doesn't play nice?

No comments:

Post a Comment