증거 공개 속도가 매우 느림

증거 공개 속도가 매우 느림

데비안을 업데이트한 이후로 evince부팅이 느려졌습니다. 약 30분 정도 걸렸습니다. 개봉 후 모든 것이 정상이지만 개봉 속도가 느립니다. 예전에는 그렇게 오래 걸리지 않았습니다. 단 몇 초밖에 걸리지 않았습니다. 어떻게 하면 다시 빨리 작동하게 할 수 있나요?

$ uname -a
Linux mypc 5.10.0-9-amd64 #1 SMP Debian 5.10.70-1 (2021-09-30) x86_64 GNU/Linux

나는 그것이 evince다음 줄에서 약 30분 동안 멈춰 있는 것을 발견했습니다.

$ strace evince
...
eventfd2(0, EFD_CLOEXEC|EFD_NONBLOCK)   = 11                                    
write(11, "\1\0\0\0\0\0\0\0", 8)        = 8                                     
write(10, "\1\0\0\0\0\0\0\0", 8)        = 8                                     
futex(0x562f5b8ffac0, FUTEX_WAKE_PRIVATE, 1) = 1                                
futex(0x562f5b909b30, FUTEX_WAKE_PRIVATE, 1) = 1                                
futex(0x562f5b8bd158, FUTEX_WAKE_PRIVATE, 1) = 1                                
poll([{fd=11, events=POLLIN}], 1, 25000) = 1 ([{fd=11, revents=POLLIN}])        
read(11, "\1\0\0\0\0\0\0\0", 16)        = 8                                     
poll([{fd=11, events=POLLIN}], 1, 25000) = 0 (Timeout) # <- hanging here for a while

그런 다음 정상적으로 계속 evince열리고 evince정상적으로 작동합니다.

내 것이 있는데 .xinitrc올바르게 구성했는지 잘 모르겠습니다. 따라서 이것이 문제일 수 있습니다.

$ cat ~/.xinitrc 
#!/bin/bash

# update the xterm colors, font size, etc
[[ -f ~/.Xresources ]] && xrdb -merge ~/.Xresources

# run the window manager in the background first
metacity &

# get the window manager process id
wm_pid=$!

# make the window manager process id available to kill later if required
export wm_pid

# run urxvt instead of xterm since this seems able to render greek symbols etc
urxvt &

# do not let the window manager become a zombie
wait $wm_pid

그런 다음 startx에서 전화하세요 .bashrc. 관련 부분은 다음과 같습니다.

$ tail -20 ~/.bashrc

# go straight to x on login. only do this for tty1 so that we can still use the
# other tty consoles without starting x. also only do this when there is no
# display, otherwise the terminal will try and do this after x starts aswell.
# finally, only do it when x is installed (command -v startx checks if startx
# exists).
# note: as of xorg-server 1.16, x is rootless but can only be started on the
# current vt (1)
[[ -z $DISPLAY ]] && [[ $(tty) = /dev/tty1 ]] && \
command -v startx > /dev/null 2>&1 && \
startx -- :0 vt1

# if using rxvt or urxvt immediately set the window to fullscreen
if [[ $TERM == *"rxvt"* ]]; then
    # make the window with rxvt in the name the active window
    wmctrl -a rxvt

    # make the active window fullscreen
    wmctrl -r ":ACTIVE:" -b add,fullscreen
fi

편집: 일부 dbus 정보를 추가했습니다.

$ ls -l ~/.dbus/session-bus/
total 28
-rw-r--r-- 1 me me 465 Nov  8 06:23 c984eb16cbd294a01d56c2ac523f7100-0
-rw-r--r-- 1 me me 465 Nov  6 14:11 c984eb16cbd294a01d56c2ac523f7100-1
-rw-r--r-- 1 me me 476 Apr 24  2017 c984eb16cbd294a01d56c2ac523f7100-10
-rw-r--r-- 1 me me 465 Jun  5  2017 c984eb16cbd294a01d56c2ac523f7100-100
-rw-r--r-- 1 me me 476 Apr  7  2017 c984eb16cbd294a01d56c2ac523f7100-11
-rw-r--r-- 1 me me 465 Nov  6 14:37 c984eb16cbd294a01d56c2ac523f7100-2
-rw-r--r-- 1 me me 463 May  6  2016 c984eb16cbd294a01d56c2ac523f7100-3
$ echo $DBUS_SESSION_BUS_ADDRESS
# empty!

관련 정보