View previous topic :: View next topic |
Author |
Message |
albright Advocate
![Advocate Advocate](/images/ranks/rank-G-1-advocate.gif)
![](images/avatars/524660825462570600c7fb.jpg)
Joined: 16 Nov 2003 Posts: 2588 Location: Near Toronto
|
Posted: Sun Oct 07, 2018 4:03 pm Post subject: What is this ck-remov-direc kernel error? |
|
|
I frequently get this error showing up in system log:
Quote: | kernel: traps: ck-remove-direc[25005] trap int3 ip:7f4c2e4efa11 \
sp:7ffec4475240 error:0 in libglib-2.0.so.0.5600.2[7f4c2e49e000+115000] |
Can anyone enlighten me what this means, if it is serious and how to fix? _________________ .... there is nothing - absolutely nothing - half so much worth
doing as simply messing about with Linux ...
(apologies to Kenneth Graeme) |
|
Back to top |
|
![](templates/gentoo/images/spacer.gif) |
albright Advocate
![Advocate Advocate](/images/ranks/rank-G-1-advocate.gif)
![](images/avatars/524660825462570600c7fb.jpg)
Joined: 16 Nov 2003 Posts: 2588 Location: Near Toronto
|
Posted: Sun Oct 07, 2018 5:19 pm Post subject: |
|
|
sorry to reply to myself but these errors are triggered when
a script runs (every 6 minutes);
the script, called runhide, is a silly thing that checks if firefox is
running and if not runs firefox and puts it in the
background (because I'm tired of waiting the 2-3 seconds it
takes to start firefox with a 2018 computer)
the script looks like this:
Code: | #!/bin/bash
chkff=`pgrep firefox`
if [[ $chkff = "" ]]
then
DISPLAY=:0.0 /usr/bin/firefox &> /dev/null &
sleep 2
export DISPLAY=:0.0 && export XAUTHORITY=/home/user/.Xauthority ffid=`wmctrl -l | grep Firefox | awk '{print $1}'`
export DISPLAY=:0.0 && export XAUTHORITY=/home/user/.Xauthority && xdotool windowunmap $ffid
else
exit
fi
|
and the cron job that runs it looks like this:
Code: | */6 * * * * user DISPLAY=:0.0 XAUTHORITY=/home/user/.Xauthority \
ssh user@192.168.0.3 /home/user/docs/gandalf_scripts/runhide >/dev/null 2>&1 |
("user" is replacing the real user name)
So if someone can see what is triggering the ck-remove-dir error it would be appreciated _________________ .... there is nothing - absolutely nothing - half so much worth
doing as simply messing about with Linux ...
(apologies to Kenneth Graeme) |
|
Back to top |
|
![](templates/gentoo/images/spacer.gif) |
Anon-E-moose Watchman
![Watchman Watchman](/images/ranks/rank-G-2-watchman.gif)
![](images/avatars/3064969284ad468b81342a.jpg)
Joined: 23 May 2008 Posts: 6222 Location: Dallas area
|
Posted: Sun Oct 07, 2018 5:46 pm Post subject: |
|
|
Something to do with ConsoleKit _________________ UM780, 6.12 zen kernel, gcc 13, openrc, wayland |
|
Back to top |
|
![](templates/gentoo/images/spacer.gif) |
|