prompt
stringlengths
1
63.6k
completion
stringlengths
1
53.1k
I have an RX5500XT using amdgpu per the Gentoo Wiki on an OpenRC install. It runs fine single monitor, but if I try to start XFCE with more than one monitor plugged in it fails. After poking about in my Gentoo install all day, I tried booting from an Ubuntu 20.04 flash drive. It yields the same result, boots and runs fine with one monitor but not with three. An RPD (Raspberry Pi Desktop) flash drive hangs even on one monitor. I was curious if someone else with a navi10 based AMD gpu has a working mult-monitor setup working. And, if so, did you accomplish it strictly following the Gentoo wiki? I know that the RX5500XT is actually navi14 but it is listed as navi10 in the wiki. When I first started, I could unplug two of the monitors and it would continue to the XFCE desktop. Then, hot plugging the other two monitors allowed me to use them too as an extended desktop. Right now, unplugging the other two allows it to continue but plugging them back in, the mouse and keyboard inputs no longer work. If no one has any insight, I will boot with multiple monitors to generate the relevant Xorg log and post the errors. Thanks
I have up to three displays (a mix of DP and HDMI) working with an RX 5700 XT and LXQt/KWin. I don't remember doing anything special, going with the "For ease of installation, it is recommended to choose "AMD GPU" as a module (M) and skip the firmware selection below." method regarding firmware. Do the displays work when in a tty, before starting X? Does the thing actually hang, or produce a blank screen? Yeah, a Xorg log might give some more insight into the matter. :]
When I reboot my system, plasma-nm widget does not establish a wifi connection automatically, I should do it manually The same thing happens after sleeping. How to fix the issue? Code: $ lspci | grep -i wireless 00:14.3 Network controller: Intel Corporation Wireless-AC 9560 [Jefferson Peak] (rev 10)
Should tell networkmanager to allow the network connection to be usable by anyone on the system if it's not already set.
Posting this in case some noob like me struggles with Elantech touchpad config in future. -> In /etc/portage/make.conf :- Input devices="libinput" (do not use synaptics, evdev isn't necessary). -> emerge xorg-drivers -> In /etc/X11/, create a directory called xorg.conf.d & paste the below in a new file called "30-touchpad.conf" (or whatever you would like to call it): Code: Section "InputClass" Identifier "ETPS/2 Elantech Touchpad" Driver "libinput" MatchisTouchpad "on" MatchDevicePath "/dev/input/event" Option "Tapping" "on" Option "NaturalScrolling" "false" Option "TappingButtonMap" "lmr" EndSection Name of the touchpad can be found in "$ libinput list-devices" -> In gnome, you can set it directly by: Code: gsettings list-recursively org.gnome.desktop.peripherals.touchpad gsettings set org.gnome.desktop.peripherals.touchpad tape-to-click true gsettings set org.gnome.desktop.peripherals.touchpad natural-scroll false -> restart X
You can do without adding to make.conf INPUT_DEVICE="libinput" , if it is not present it sets libinput by default (Same goes for VIDEO_CARDS , if unset it will install all drivers) ... To see its value just type: Code: portageq envvar INPUT_DEVICES
After having removed infinality, I faced the problem with fonts almost immediately. However, I came across this topic , added there mentioned parameters to my ~/.Xresources and this seems to have salvaged Latin fonts. But, CJK are still desperately garbled. Cf infinality https://imgur.com/a/QblRsi8 vs no infinality https://imgur.com/a/wyuebkq And, honestly, I have no idea how all this stuff works. Why Latin fonts improved, but CJK stay garbled. And, this is situation in Firefox (font name IPAMincho). But system fonts affected too (scim input, file names in Thunar). Is there any way to fix these rendring issues? I use Xfce and openbox. I know there are font rendering settings in Xfce, but they seem to have absolutely no effect on CJK. TA UPD: after some tries and fails, I seem to have achieved some improvement in FF by selecting alternative fonts to IPAMincho under appropriate "locales" (Preferences > Languages and Appearance > Advanced > Japanese or variants of Chinese, for me it was Chinese/Japanese). For Japanese/Chinese, Noto font family does some good job. No further tweakings of hinting/aliasing were necessary. The only weird fact, that for some sites it was not enough to set just Japanese "locale" to correctly display kana/kanji. Somehow Chinese was involved. The only pending problem is displaying file names and widgets (like window headers with titles). It looks like applications just use aliases to render text and system supplies actual fonts. I have Liberation Sans Regular as Default and I find myself quite content with it. But it lacks CJK codepoints and, by hypothesis, system falls back to some not-so-good-looking font when CJK codepoints are encountered. Hence the question, can this behaviour be corrected somehow by adding "correct" fallback or default font change is the only solution?
After having experimented a bit, I think I've found the solution. Here I post the steps for those, who ran in this problem in the hope that it'll be of help: First, you have to find quality fonts you want for rendering CJK texts. In my case it was Google's Noto family. These fonts are available from portage: Code: # emerge -av noto It goes without saying, that you have cjk flag enabled either globally, or for this package/emerge. Then, in openbox, for antialiasing and hinting, as mentioned in another thread, it's worth to create file ~/.Xdefaults with following contents: Code: Xft.dpi: 96 Xft.autohint: 0 Xft.lcdfilter: lcddefault Xft.hintstyle: hintslight Xft.hinting: 1 Xft.antialias: 1 Xft.rgba: rgb In Xfce, one should be able to turn this in Settings manager. Note: you can figure out your actual dpi by running this command Code: xdpyinfo | grep dots Enable Noto fonts with eselect fontconfig . Enable user config. To enable fonts substitutions for CJK code points, create file ~/.config/fontconfig/fonts.conf : Code: <?xml version="1.0"?> <!DOCTYPE fontconfig SYSTEM "fonts.dtd"> <fontconfig> <!-- Default serif font --> <alias binding="strong"> <family>serif</family> <prefer> <family>Liberation Serif</family> </prefer> </alias> <!-- Default sans-serif font --> <alias binding="strong"> <family>sans-serif</family> <prefer> <family>Liberation Sans</family> </prefer> </alias> <!-- Default monospace font --> <alias binding="strong"> <family>monospace</family> <prefer> <family>Liberation Mono</family> </prefer> </alias> <!-- Default system-ui font --> <alias binding="strong"> <family>system-ui</family> <prefer> <family>Liberation Sans</family> </prefer> </alias> <!-- Serif CJK --> <!-- Default serif when the "lang" attribute is not given --> <!-- You can change this font to the language variant you want --> <match target="pattern"> <test name="family"> <string>serif</string> </test> <edit name="family" mode="append" binding="strong"> <string>Noto Serif CJK JP</string> </edit> </match> <!-- Japanese --> <!-- "lang=ja" or "lang=ja-*" --> <match target="pattern"> <test name="lang" compare="contains"> <string>ja</string> </test> <test name="family"> <string>serif</string> </test> <edit name="family" mode="append" binding="strong"> <string>Noto Serif CJK JP</string> </edit> </match> <!-- Korean --> <!-- "lang=ko" or "lang=ko-*" --> <match target="pattern"> <test name="lang" compare="contains"> <string>ko</string> </test> <test name="family"> <string>serif</string> </test> <edit name="family" mode="append" binding="strong"> <string>Noto Serif CJK KR</string> </edit> </match> <!-- Chinese --> <!-- "lang=zh" or "lang=zh-*" --> <match target="pattern"> <test name="lang" compare="contains"> <string>zh</string> </test> <test name="family"> <string>serif</string> </test> <edit name="family" mode="append" binding="strong"> <string>Noto Sans Mono CJK SC</string> </edit> </match> <!-- "lang=zh-hans" or "lang=zh-hans-*" --> <match target="pattern"> <test name="lang" compare="contains"> <string>zh-hans</string> </test> <test name="family"> <string>serif</string> </test> <edit name="family" mode="append" binding="strong"> <string>Noto Sans Mono CJK SC</string> </edit> </match> <!-- "lang=zh-hant" or "lang=zh-hant-*" --> <match target="pattern"> <test name="lang" compare="contains"> <string>zh-hant</string> </test> <test name="family"> <string>serif</string> </test> <edit name="family" mode="append" binding="strong"> <string>Noto Sans Mono CJK TC</string> </edit> </match> <!-- Compatible --> <!-- "lang=zh-cn" or "lang=zh-cn-*" --> <match target="pattern"> <test name="lang" compare="contains"> <string>zh-cn</string> </test> <test name="family"> <string>serif</string> </test> <edit name="family" mode="append" binding="strong"> <string>Noto Sans Mono CJK SC</string> </edit> </match> <!-- "lang=zh-tw" or "lang=zh-tw-*" --> <match target="pattern"> <test name="lang" compare="contains"> <string>zh-tw</string> </test> <test name="family"> <string>serif</string> </test> <edit name="family" mode="append" binding="strong"> <string>Noto Sans Mono CJK TC</string> </edit> </match> <!-- Sans CJK --> <!-- Default sans-serif when the "lang" attribute is not given --> <!-- You can change this font to the language variant you want --> <match target="pattern"> <test name="family"> <string>sans-serif</string> </test> <edit name="family" mode="append" binding="strong"> <string>Noto Serif CJK JP</string> </edit> </match> <!-- Japanese --> <!-- "lang=ja" or "lang=ja-*" --> <match target="pattern"> <test name="lang" compare="contains"> <string>ja</string> </test> <test name="family"> <string>sans-serif</string> </test> <edit name="family" mode="append" binding="strong"> <string>Noto Serif CJK JP</string> </edit> </match> <!-- Korean --> <!-- "lang=ko" or "lang=ko-*" --> <match target="pattern"> <test name="lang" compare="contains"> <string>ko</string> </test> <test name="family"> <string>sans-serif</string> </test> <edit name="family" mode="append" binding="strong"> <string>Noto Serif CJK KR</string> </edit> </match> <!-- Chinese --> <!-- "lang=zh" or "lang=zh-*" --> <match target="pattern"> <test name="lang" compare="contains"> <string>zh</string> </test> <test name="family"> <string>sans-serif</string> </test> <edit name="family" mode="append" binding="strong"> <string>Noto Serif CJK SC</string> </edit> </match> <!-- "lang=zh-hans" or "lang=zh-hans-*" --> <match target="pattern"> <test name="lang" compare="contains"> <string>zh-hans</string> </test> <test name="family"> <string>sans-serif</string> </test> <edit name="family" mode="append" binding="strong"> <string>Noto Serif CJK SC</string> </edit> </match> <!-- "lang=zh-hant" or "lang=zh-hant-*" --> <match target="pattern"> <test name="lang" compare="contains"> <string>zh-hant</string> </test> <test name="family"> <string>sans-serif</string> </test> <edit name="family" mode="append" binding="strong"> <string>Noto Serif CJK TC</string> </edit> </match> <!-- "lang=zh-hant-hk" or "lang=zh-hant-hk-*" --> <match target="pattern"> <test name="lang" compare="contains"> <string>zh-hant-hk</string> </test> <test name="family"> <string>sans-serif</string> </test> <edit name="family" mode="append" binding="strong"> <string>Noto Serif CJK HK</string> </edit> </match> <!-- Compatible --> <!-- "lang=zh-cn" or "lang=zh-cn-*" --> <match target="pattern"> <test name="lang" compare="contains"> <string>zh-cn</string> </test> <test name="family"> <string>sans-serif</string> </test> <edit name="family" mode="append" binding="strong"> <string>Noto Serif CJK SC</string> </edit> </match> <!-- "lang=zh-tw" or "lang=zh-tw-*" --> <match target="pattern"> <test name="lang" compare="contains"> <string>zh-tw</string> </test> <test name="family"> <string>sans-serif</string> </test> <edit name="family" mode="append" binding="strong"> <string>Noto Serif CJK TC</string> </edit> </match> <!-- "lang=zh-hk" or "lang=zh-hk-*" --> <match target="pattern"> <test name="lang" compare="contains"> <string>zh-hk</string> </test> <test name="family"> <string>sans-serif</string> </test> <edit name="family" mode="append" binding="strong"> <string>Noto Serif CJK HK</string> </edit> </match> <!-- Mono CJK --> <!-- Default monospace when the "lang" attribute is not given --> <!-- You can change this font to the language variant you want --> <match target="pattern"> <test name="family"> <string>monospace</string> </test> <edit name="family" mode="append" binding="strong"> <string>Noto Sans Mono CJK SC</string> </edit> </match> <!-- Japanese --> <!-- "lang=ja" or "lang=ja-*" --> <match target="pattern"> <test name="lang" compare="contains"> <string>ja</string> </test> <test name="family"> <string>monospace</string> </test> <edit name="family" mode="append" binding="strong"> <string>Noto Sans Mono CJK JP</string> </edit> </match> <!-- Korean --> <!-- "lang=ko" or "lang=ko-*" --> <match target="pattern"> <test name="lang" compare="contains"> <string>ko</string> </test> <test name="family"> <string>monospace</string> </test> <edit name="family" mode="append" binding="strong"> <string>Noto Sans Mono CJK KR</string> </edit> </match> <!-- Chinese --> <!-- "lang=zh" or "lang=zh-*" --> <match target="pattern"> <test name="lang" compare="contains"> <string>zh</string> </test> <test name="family"> <string>monospace</string> </test> <edit name="family" mode="append" binding="strong"> <string>Noto Sans Mono CJK SC</string> </edit> </match> <!-- "lang=zh-hans" or "lang=zh-hans-*" --> <match target="pattern"> <test name="lang" compare="contains"> <string>zh-hans</string> </test> <test name="family"> <string>monospace</string> </test> <edit name="family" mode="append" binding="strong"> <string>Noto Sans Mono CJK SC</string> </edit> </match> <!-- "lang=zh-hant" or "lang=zh-hant-*" --> <match target="pattern"> <test name="lang" compare="contains"> <string>zh-hant</string> </test> <test name="family"> <string>monospace</string> </test> <edit name="family" mode="append" binding="strong"> <string>Noto Sans Mono CJK TC</string> </edit> </match> <!-- "lang=zh-hant-hk" or "lang=zh-hant-hk-*" --> <match target="pattern"> <test name="lang" compare="contains"> <string>zh-hant-hk</string> </test> <test name="family"> <string>monospace</string> </test> <edit name="family" mode="append" binding="strong"> <string>Noto Sans Mono CJK HK</string> </edit> </match> <!-- Compatible --> <!-- "lang=zh-cn" or "lang=zh-cn-*" --> <match target="pattern"> <test name="lang" compare="contains"> <string>zh-cn</string> </test> <test name="family"> <string>monospace</string> </test> <edit name="family" mode="append" binding="strong"> <string>Noto Sans Mono CJK SC</string> </edit> </match> <!-- "lang=zh-tw" or "lang=zh-tw-*" --> <match target="pattern"> <test name="lang" compare="contains"> <string>zh-tw</string> </test> <test name="family"> <string>monospace</string> </test> <edit name="family" mode="append" binding="strong"> <string>Noto Sans Mono CJK TC</string> </edit> </match> <!-- "lang=zh-hk" or "lang=zh-hk-*" --> <match target="pattern"> <test name="lang" compare="contains"> <string>zh-hk</string> </test> <test name="family"> <string>monospace</string> </test> <edit name="family" mode="append" binding="strong"> <string>Noto Sans Mono CJK HK</string> </edit> </match> <!-- System UI CJK --> <!-- Default system-ui when the "lang" attribute is not given --> <!-- You can change this font to the language variant you want --> <match target="pattern"> <test name="family"> <string>system-ui</string> </test> <edit name="family" mode="append" binding="strong"> <string>Noto Sans Mono CJK JP</string> </edit> </match> <!-- Japanese --> <!-- "lang=ja" or "lang=ja-*" --> <match target="pattern"> <test name="lang" compare="contains"> <string>ja</string> </test> <test name="family"> <string>system-ui</string> </test> <edit name="family" mode="append" binding="strong"> <string>Noto Sans Mono CJK JP</string> </edit> </match> <!-- Korean --> <!-- "lang=ko" or "lang=ko-*" --> <match target="pattern"> <test name="lang" compare="contains"> <string>ko</string> </test> <test name="family"> <string>system-ui</string> </test> <edit name="family" mode="append" binding="strong"> <string>Noto Sans Mono CJK KR</string> </edit> </match> <!-- Chinese --> <!-- "lang=zh" or "lang=zh-*" --> <match target="pattern"> <test name="lang" compare="contains"> <string>zh</string> </test> <test name="family"> <string>system-ui</string> </test> <edit name="family" mode="append" binding="strong"> <string>Noto Sans Mono CJK SC</string> </edit> </match> <!-- "lang=zh-hans" or "lang=zh-hans-*" --> <match target="pattern"> <test name="lang" compare="contains"> <string>zh-hans</string> </test> <test name="family"> <string>system-ui</string> </test> <edit name="family" mode="append" binding="strong"> <string>Noto Sans Mono CJK SC</string> </edit> </match> <!-- "lang=zh-hant" or "lang=zh-hant-*" --> <match target="pattern"> <test name="lang" compare="contains"> <string>zh-hant</string> </test> <test name="family"> <string>system-ui</string> </test> <edit name="family" mode="append" binding="strong"> <string>Noto Sans Mono CJK TC</string> </edit> </match> <!-- "lang=zh-hant-hk" or "lang=zh-hant-hk-*" --> <match target="pattern"> <test name="lang" compare="contains"> <string>zh-hant-hk</string> </test> <test name="family"> <string>system-ui</string> </test> <edit name="family" mode="append" binding="strong"> <string>Noto Sans Mono CJK HK</string> </edit> </match> <!-- Compatible --> <!-- "lang=zh-cn" or "lang=zh-cn-*" --> <match target="pattern"> <test name="lang" compare="contains"> <string>zh-cn</string> </test> <test name="family"> <string>system-ui</string> </test> <edit name="family" mode="append" binding="strong"> <string>Noto Sans Mono CJK SC</string> </edit> </match> <!-- "lang=zh-tw" or "lang=zh-tw-*" --> <match target="pattern"> <test name="lang" compare="contains"> <string>zh-tw</string> </test> <test name="family"> <string>system-ui</string> </test> <edit name="family" mode="append" binding="strong"> <string>Noto Sans Mono CJK TC</string> </edit> </match> <!-- "lang=zh-hk" or "lang=zh-hk-*" --> <match target="pattern"> <test name="lang" compare="contains"> <string>zh-hk</string> </test> <test name="family"> <string>system-ui</string> </test> <edit name="family" mode="append" binding="strong"> <string>Noto Sans Mono CJK HK</string> </edit> </match> </fontconfig> Elements, preceding line <!-- Serif CJK --> may be skipped safely, if you'd configured your system fonts in Xfce's Settings manager. Then you have to adjust matches below according tou your tastes and chosen fonts. After having done all the preparations, run Code: fc-cache -r to invalidate font caches and restart applications or the whole X session. With appropriately edited ~/.config/fontconfig/fonts.conf in place, you don't need to adjust Firefox locale settings. In my case achieved result looks like this: https://imgur.com/a/odWFU2Q Fonts.conf template was taken here Sorry for any inaccuracies. HTH.
My AMD CPU is integrated with Graphic: "AMD Ryzen 5 3400G with Radeon Vega Graphics" Code: lspci | grep -i VGA 09:00.0 VGA compatible controller: Advanced Micro Devices, Inc. [AMD/ATI] Picasso (rev c8) I try to compile kernel with: Code: < > ATI Radeon" < * > AMD GPU" and load: "-*- Firmware loading facility" (amdgpu/picasso_ce.bin amdgpu/picasso_k_smc.bin amdgpu/picasso_mc.bin amdgpu/picasso_me.bin amdgpu/picasso_mec2.bin amdgpu/picasso_mec.bin amdgpu/picasso_pfp.bin amdgpu/picasso_rlc.bin amdgpu/picasso_sdma1.bin amdgpu/picasso_sdma.bin amdgpu/picasso_smc.bin amdgpu/picasso_uvd.bin amdgpu/picasso_vce.bin) But, I'm getting kernel error when compiling: Code: ... CC drivers/base/firmware_loader/main.o UPD drivers/base/firmware_loader/builtin/amdgpu/picasso_ce.bin.gen.S AS drivers/base/firmware_loader/builtin/amdgpu/picasso_ce.bin.gen.o UPD drivers/base/firmware_loader/builtin/amdgpu/picasso_k_smc.bin.gen.S make[4]: *** No rule to make target '/lib/firmware/amdgpu/picasso_k_smc.bin', needed by 'drivers/base/firmware_loader/builtin/amdgpu/picasso_k_smc.bin.gen.o'. Stop. make[3]: *** [scripts/Makefile.build:496: drivers/base/firmware_loader/builtin] Error 2 make[2]: *** [scripts/Makefile.build:496: drivers/base/firmware_loader] Error 2 make[1]: *** [scripts/Makefile.build:496: drivers/base] Error 2 make: *** [Makefile:1726: drivers] Error 2 Code: emerge --info Portage 3.0.13 (python 3.8.8-final-0, default/linux/amd64/17.1/desktop, gcc-10.2.0, glibc-2.32-r7, 5.4.97-gentoo x86_64) ================================================================= System uname: Linux-5.4.97-gentoo-x86_64-AMD_Ryzen_5_3400G_with_Radeon_Vega_Graphics-with-glibc2.2.5 KiB Mem: 14296916 total, 14068588 free KiB Swap: 0 total, 0 free Timestamp of repository gentoo: Fri, 26 Mar 2021 00:45:01 +0000 Head commit of repository gentoo: 8ec83dba82e65f6e08762983379376767e58400b sh bash 5.0_p18 ld GNU ld (Gentoo 2.35.1 p2) 2.35.1 app-shells/bash: 5.0_p18::gentoo dev-java/java-config: 2.3.1::gentoo dev-lang/perl: 5.30.3::gentoo dev-lang/python: 3.8.8::gentoo, 3.9.2::gentoo dev-util/cmake: 3.18.5::gentoo sys-apps/baselayout: 2.7::gentoo sys-apps/openrc: 0.42.1-r1::gentoo sys-apps/sandbox: 2.20::gentoo sys-devel/autoconf: 2.13-r1::gentoo, 2.69-r5::gentoo sys-devel/automake: 1.16.2-r1::gentoo sys-devel/binutils: 2.35.1-r1::gentoo sys-devel/gcc: 10.2.0-r5::gentoo sys-devel/gcc-config: 2.3.3::gentoo sys-devel/libtool: 2.4.6-r6::gentoo sys-devel/make: 4.3::gentoo sys-kernel/linux-headers: 5.10::gentoo (virtual/os-headers) sys-libs/glibc: 2.32-r7::gentoo Repositories: gentoo location: /var/db/repos/gentoo sync-type: rsync sync-uri: rsync://rsync.gentoo.org/gentoo-portage priority: -1000 sync-rsync-verify-jobs: 1 sync-rsync-verify-metamanifest: yes sync-rsync-extra-opts: sync-rsync-verify-max-age: 24 ACCEPT_KEYWORDS="amd64" ACCEPT_LICENSE="* -@EULA @FREE" CBUILD="x86_64-pc-linux-gnu" CFLAGS="-O2 -pipe" CHOST="x86_64-pc-linux-gnu" CONFIG_PROTECT="/etc /usr/lib64/fax /usr/share/gnupg/qualified.txt /var/spool/fax/etc" CONFIG_PROTECT_MASK="/etc/ca-certificates.conf /etc/env.d /etc/fonts/fonts.conf /etc/gconf /etc/gentoo-release /etc/revdep-rebuild /etc/sandbox.d /etc/terminfo /etc/texmf/language.dat.d /etc/texmf/language.def.d /etc/texmf/updmap.d /etc/texmf/web2c /var/spool/fax/etc/xferfaxlog" CXXFLAGS="-O2 -pipe" DISTDIR="/var/cache/distfiles" EMERGE_DEFAULT_OPTS="--autounmask-write=y --keep-going --with-bdeps=y" ENV_UNSET="CARGO_HOME DBUS_SESSION_BUS_ADDRESS DISPLAY GOBIN GOPATH PERL5LIB PERL5OPT PERLPREFIX PERL_CORE PERL_MB_OPT PERL_MM_OPT XAUTHORITY XDG_CACHE_HOME XDG_CONFIG_HOME XDG_DATA_HOME XDG_RUNTIME_DIR" FCFLAGS="-O2 -pipe" FEATURES="assume-digests binpkg-docompress binpkg-dostrip binpkg-logs collision-protect config-protect-if-modified distlocks ebuild-locks fixlafiles ipc-sandbox merge-sync multilib-strict network-sandbox news parallel-fetch pid-sandbox preserve-libs protect-owned qa-unresolved-soname-deps sandbox sfperms strict unknown-features-warn unmerge-logs unmerge-orphans userfetch userpriv usersandbox usersync xattr" FFLAGS="-O2 -pipe" GENTOO_MIRRORS="http://mirror.csclub.uwaterloo.ca/gentoo-distfiles/ http://gentoo.osuosl.org/ ftp://mirror.csclub.uwaterloo.ca/gentoo-distfiles/ http://linux.rz.ruhr-uni-bochum.de/download/gentoo-mirror/ ftp://linux.rz.ruhr-uni-bochum.de/gentoo-mirror/ ftp://ftp.spline.inf.fu-berlin.de/mirrors/gentoo/ http://ftp.spline.inf.fu-berlin.de/mirrors/gentoo/" LANG="en_US.utf8" LDFLAGS="-Wl,-O1 -Wl,--as-needed" PKGDIR="/var/cache/binpkgs" PORTAGE_CONFIGROOT="/" PORTAGE_RSYNC_OPTS="--recursive --links --safe-links --perms --times --omit-dir-times --compress --force --whole-file --delete --stats --human-readable --timeout=180 --exclude=/distfiles --exclude=/local --exclude=/packages --exclude=/.git" PORTAGE_TMPDIR="/var/tmp" USE="X a52 aac acpi alsa amd64 apache2 bluetooth branding bzip2 cairo cdda cdr cgi cleartype cli corefonts crypt cups dbus dri dts dvd dvdr elogind emboss encode exif fam flac foomaticdb fortran gdbm gif gimp gimpprint gpm gtk gui iconv icu ipv6 java jpeg kpathsea lcms libglvnd libnotify libtirpc lock mad mng mp3 mp4 mpeg multilib ncurses nls nptl ogg opengl openmp pam pango pcre pdf png policykit ppds qt5 qtk readline scanner sdl seccomp session spell split-usr ssl startup-notification svg tcpd tetex thunar tiff truetype type1 udev udisks unicode upower usb vorbis wxwidgets x264 xattr xcb xml xv xvid zlib" ABI_X86="64" ADA_TARGET="gnat_2018" ALSA_CARDS="ali5451 als4000 atiixp atiixp-modem bt87x ca0106 cmipci emu10k1x ens1370 ens1371 es1938 es1968 fm801 hda-intel intel8x0 intel8x0m maestro3 trident usb-audio via82xx via82xx-modem ymfpci" APACHE2_MODULES="authn_core authz_core socache_shmcb unixd actions alias auth_basic authn_alias authn_anon authn_dbm authn_default authn_file authz_dbm authz_default authz_groupfile authz_host authz_owner authz_user autoindex cache cgi cgid dav dav_fs dav_lock deflate dir disk_cache env expires ext_filter file_cache filter headers include info log_config logio mem_cache mime mime_magic negotiation rewrite setenvif speling status unique_id userdir usertrack vhost_alias" CALLIGRA_FEATURES="karbon sheets words" COLLECTD_PLUGINS="df interface irq load memory rrdtool swap syslog" CPU_FLAGS_X86="mmx mmxext sse sse2" ELIBC="glibc" GPSD_PROTOCOLS="ashtech aivdm earthmate evermore fv18 garmin garmintxt gpsclock greis isync itrax mtk3301 nmea ntrip navcom oceanserver oldstyle oncore rtcm104v2 rtcm104v3 sirf skytraq superstar2 timing tsip tripmate tnt ublox ubx" GRUB_PLATFORMS="efi-64" INPUT_DEVICES="evdev" KERNEL="linux" L10N="en en-CA" LCD_DEVICES="bayrad cfontz cfontz633 glk hd44780 lb216 lcdm001 mtxorb ncurses text" LIBREOFFICE_EXTENSIONS="presenter-console presenter-minimizer" LUA_SINGLE_TARGET="lua5-1" LUA_TARGETS="lua5-1" OFFICE_IMPLEMENTATION="libreoffice" PHP_TARGETS="php7-3 php7-4" POSTGRES_TARGETS="postgres10 postgres11" PYTHON_SINGLE_TARGET="python3_8" PYTHON_TARGETS="python3_8" RUBY_TARGETS="ruby26" USERLAND="GNU" VIDEO_CARDS="radeon" XTABLES_ADDONS="quota2 psd pknock lscan length2 ipv4options ipset ipp2p iface geoip fuzzy condition tee tarpit sysrq proto steal rawnat logmark ipmark dhcpmac delude chaos account" Unset: CC, CPPFLAGS, CTARGET, CXX, INSTALL_MASK, LC_ALL, LINGUAS, MAKEOPTS, PORTAGE_BINHOST, PORTAGE_BUNZIP2_COMMAND, PORTAGE_COMPRESS, PORTAGE_COMPRESS_FLAGS, PORTAGE_RSYNC_EXTRA_OPTS Currently my kernel is compiled with options: Code: < * > ATI Radeon" < > AMD GPU" But X - is not starting. Code: cat /home/fd/.local/share/xorg/Xorg.0.log [ 121.165] X.Org X Server 1.20.10 X Protocol Version 11, Revision 0 [ 121.165] Build Operating System: Linux 5.4.97-gentoo x86_64 Gentoo [ 121.165] Current Operating System: Linux amd_ma 5.4.97-gentoo #2 SMP Thu Apr 8 01:43:59 MDT 2021 x86_64 [ 121.165] Kernel command line: BOOT_IMAGE=/vmlinuz-5.4.97-gentoo root=/dev/nvme0n1p2 ro [ 121.165] Build Date: 08 April 2021 02:15:43AM [ 121.165] [ 121.165] Current version of pixman: 0.40.0 [ 121.165] Before reporting problems, check http://wiki.x.org to make sure that you have the latest version. [ 121.165] Markers: (--) probed, (**) from config file, (==) default setting, (++) from command line, (!!) notice, (II) informational, (WW) warning, (EE) error, (NI) not implemented, (??) unknown. [ 121.165] (==) Log file: "/home/fd/.local/share/xorg/Xorg.0.log", Time: Thu Apr 8 21:14:31 2021 [ 121.165] (==) Using system config directory "/usr/share/X11/xorg.conf.d" [ 121.165] (==) No Layout section. Using the first Screen section. [ 121.165] (==) No screen section available. Using defaults. [ 121.165] (**) |-->Screen "Default Screen Section" (0) [ 121.165] (**) | |-->Monitor "<default monitor>" [ 121.165] (==) No monitor specified for screen "Default Screen Section". Using a default monitor configuration. [ 121.165] (==) Automatically adding devices [ 121.165] (==) Automatically enabling devices [ 121.165] (==) Automatically adding GPU devices [ 121.165] (==) Max clients allowed: 256, resource mask: 0x1fffff [ 121.165] (WW) The directory "/usr/share/fonts/TTF/" does not exist. [ 121.165] Entry deleted from font path. [ 121.165] (WW) The directory "/usr/share/fonts/OTF/" does not exist. [ 121.165] Entry deleted from font path. [ 121.165] (WW) The directory "/usr/share/fonts/Type1/" does not exist. [ 121.165] Entry deleted from font path. [ 121.165] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/100dpi/". [ 121.165] Entry deleted from font path. [ 121.165] (Run 'mkfontdir' on "/usr/share/fonts/100dpi/"). [ 121.165] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/75dpi/". [ 121.165] Entry deleted from font path. [ 121.165] (Run 'mkfontdir' on "/usr/share/fonts/75dpi/"). [ 121.165] (==) FontPath set to: /usr/share/fonts/misc/ [ 121.165] (==) ModulePath set to "/usr/lib64/xorg/modules" [ 121.165] (II) The server relies on udev to provide the list of input devices. If no devices become available, reconfigure udev or disable AutoAddDevices. [ 121.165] (II) Loader magic: 0x5591a9ac0d00 [ 121.165] (II) Module ABI versions: [ 121.165] X.Org ANSI C Emulation: 0.4 [ 121.165] X.Org Video Driver: 24.1 [ 121.165] X.Org XInput driver : 24.1 [ 121.165] X.Org Server Extension : 10.0 [ 121.166] (--) using VT number 7 [ 121.166] (II) systemd-logind: logind integration requires -keeptty and -keeptty was not provided, disabling logind integration [ 121.168] (--) PCI:*(9@0:0:0) 1002:15d8:1043:876b rev 200, Mem @ 0xd0000000/268435456, 0xe0000000/2097152, 0xfce00000/524288, I/O @ 0x0000e000/256 [ 121.168] (II) LoadModule: "glx" [ 121.168] (II) Loading /usr/lib64/xorg/modules/extensions/libglx.so [ 121.168] (II) Module glx: vendor="X.Org Foundation" [ 121.168] compiled for 1.20.10, module version = 1.0.0 [ 121.168] ABI class: X.Org Server Extension, version 10.0 [ 121.168] (==) Matched ati as autoconfigured driver 0 [ 121.168] (==) Matched modesetting as autoconfigured driver 1 [ 121.168] (==) Matched fbdev as autoconfigured driver 2 [ 121.168] (==) Matched vesa as autoconfigured driver 3 [ 121.168] (==) Assigned the driver to the xf86ConfigLayout [ 121.168] (II) LoadModule: "ati" [ 121.168] (II) Loading /usr/lib64/xorg/modules/drivers/ati_drv.so [ 121.168] (II) Module ati: vendor="X.Org Foundation" [ 121.168] compiled for 1.20.10, module version = 19.1.0 [ 121.168] Module class: X.Org Video Driver [ 121.168] ABI class: X.Org Video Driver, version 24.1 [ 121.168] (II) LoadModule: "radeon" [ 121.168] (II) Loading /usr/lib64/xorg/modules/drivers/radeon_drv.so [ 121.169] (II) Module radeon: vendor="X.Org Foundation" [ 121.169] compiled for 1.20.10, module version = 19.1.0 [ 121.169] Module class: X.Org Video Driver [ 121.169] ABI class: X.Org Video Driver, version 24.1 [ 121.169] (II) LoadModule: "modesetting" [ 121.169] (II) Loading /usr/lib64/xorg/modules/drivers/modesetting_drv.so [ 121.169] (II) Module modesetting: vendor="X.Org Foundation" [ 121.169] compiled for 1.20.10, module version = 1.20.10 [ 121.169] Module class: X.Org Video Driver [ 121.169] ABI class: X.Org Video Driver, version 24.1 [ 121.169] (II) LoadModule: "fbdev" [ 121.169] (II) Loading /usr/lib64/xorg/modules/drivers/fbdev_drv.so [ 121.169] (II) Module fbdev: vendor="X.Org Foundation" [ 121.169] compiled for 1.20.10, module version = 0.5.0 [ 121.169] Module class: X.Org Video Driver [ 121.169] ABI class: X.Org Video Driver, version 24.1 [ 121.169] (II) LoadModule: "vesa" [ 121.169] (II) Loading /usr/lib64/xorg/modules/drivers/vesa_drv.so [ 121.169] (II) Module vesa: vendor="X.Org Foundation" [ 121.169] compiled for 1.20.10, module version = 2.5.0 [ 121.169] Module class: X.Org Video Driver [ 121.169] ABI class: X.Org Video Driver, version 24.1 [ 121.169] (II) RADEON: Driver for ATI/AMD Radeon chipsets: ATI Radeon Mobility X600 (M24), ATI FireMV 2400, ATI Radeon Mobility X300 (M24), ATI FireGL M24 GL, ATI Radeon X600 (RV380), ATI FireGL V3200 (RV380), ATI Radeon IGP320 (A3), ATI Radeon IGP330/340/350 (A4), ATI Radeon 9500, ATI Radeon 9600TX, ATI FireGL Z1, ATI Radeon 9800SE, ATI Radeon 9800, ATI FireGL X2, ATI Radeon 9600, ATI Radeon 9600SE, ATI Radeon 9600XT, ATI FireGL T2, ATI Radeon 9650, ATI FireGL RV360, ATI Radeon 7000 IGP (A4+), ATI Radeon 8500 AIW, ATI Radeon IGP320M (U1), ATI Radeon IGP330M/340M/350M (U2), ATI Radeon Mobility 7000 IGP, ATI Radeon 9000/PRO, ATI Radeon 9000, ATI Radeon X800 (R420), ATI Radeon X800PRO (R420), ATI Radeon X800SE (R420), ATI FireGL X3 (R420), ATI Radeon Mobility 9800 (M18), ATI Radeon X800 SE (R420), ATI Radeon X800XT (R420), ATI Radeon X800 VE (R420), ATI Radeon X850 (R480), ATI Radeon X850 XT (R480), ATI Radeon X850 SE (R480), ATI Radeon X850 PRO (R480), ATI Radeon X850 XT PE (R480), ATI Radeon Mobility M7, ATI Mobility FireGL 7800 M7, ATI Radeon Mobility M6, ATI FireGL Mobility 9000 (M9), ATI Radeon Mobility 9000 (M9), ATI Radeon 9700 Pro, ATI Radeon 9700/9500Pro, ATI FireGL X1, ATI Radeon 9800PRO, ATI Radeon 9800XT, ATI Radeon Mobility 9600/9700 (M10/M11), ATI Radeon Mobility 9600 (M10), ATI Radeon Mobility 9600 (M11), ATI FireGL Mobility T2 (M10), ATI FireGL Mobility T2e (M11), ATI Radeon, ATI FireGL 8700/8800, ATI Radeon 8500, ATI Radeon 9100, ATI Radeon 7500, ATI Radeon VE/7000, ATI ES1000, ATI Radeon Mobility X300 (M22), ATI Radeon Mobility X600 SE (M24C), ATI FireGL M22 GL, ATI Radeon X800 (R423), ATI Radeon X800PRO (R423), ATI Radeon X800LE (R423), ATI Radeon X800SE (R423), ATI Radeon X800 XTP (R430), ATI Radeon X800 XL (R430), ATI Radeon X800 SE (R430), ATI Radeon X800 (R430), ATI FireGL V7100 (R423), ATI FireGL V5100 (R423), ATI FireGL unknown (R423), ATI Mobility FireGL V5000 (M26), ATI Mobility Radeon X700 XL (M26), ATI Mobility Radeon X700 (M26), ATI Radeon X550XTX, ATI Radeon 9100 IGP (A5), ATI Radeon Mobility 9100 IGP (U3), ATI Radeon XPRESS 200, ATI Radeon XPRESS 200M, ATI Radeon 9250, ATI Radeon 9200, ATI Radeon 9200SE, ATI FireMV 2200, ATI Radeon X300 (RV370), ATI Radeon X600 (RV370), ATI Radeon X550 (RV370), ATI FireGL V3100 (RV370), ATI FireMV 2200 PCIE (RV370), ATI Radeon Mobility 9200 (M9+), ATI Mobility Radeon X800 XT (M28), ATI Mobility FireGL V5100 (M28), ATI Mobility Radeon X800 (M28), ATI Radeon X850, ATI unknown Radeon / FireGL (R480), ATI Radeon X800XT (R423), ATI FireGL V5000 (RV410), ATI Radeon X700 XT (RV410), ATI Radeon X700 PRO (RV410), ATI Radeon X700 SE (RV410), ATI Radeon X700 (RV410), ATI Radeon X1800, ATI Mobility Radeon X1800 XT, ATI Mobility Radeon X1800, ATI Mobility FireGL V7200, ATI FireGL V7200, ATI FireGL V5300, ATI Mobility FireGL V7100, ATI FireGL V7300, ATI FireGL V7350, ATI Radeon X1600, ATI RV505, ATI Radeon X1300/X1550, ATI Radeon X1550, ATI M54-GL, ATI Mobility Radeon X1400, ATI Radeon X1550 64-bit, ATI Mobility Radeon X1300, ATI Radeon X1300, ATI FireGL V3300, ATI FireGL V3350, ATI Mobility Radeon X1450, ATI Mobility Radeon X2300, ATI Mobility Radeon X1350, ATI FireMV 2250, ATI Radeon X1650, ATI Mobility FireGL V5200, ATI Mobility Radeon X1600, ATI Radeon X1300 XT/X1600 Pro, ATI FireGL V3400, ATI Mobility FireGL V5250, ATI Mobility Radeon X1700, ATI Mobility Radeon X1700 XT, ATI FireGL V5200, ATI Radeon X2300HD, ATI Mobility Radeon HD 2300, ATI Radeon X1950, ATI Radeon X1900, ATI AMD Stream Processor, ATI RV560, ATI Mobility Radeon X1900, ATI Radeon X1950 GT, ATI RV570, ATI FireGL V7400, ATI Radeon 9100 PRO IGP, ATI Radeon Mobility 9200 IGP, ATI Radeon X1200, ATI RS740, ATI RS740M, ATI Radeon HD 2900 XT, ATI Radeon HD 2900 Pro, ATI Radeon HD 2900 GT, ATI FireGL V8650, ATI FireGL V8600, ATI FireGL V7600, ATI Radeon 4800 Series, ATI Radeon HD 4870 x2, ATI Radeon HD 4850 x2, ATI FirePro V8750 (FireGL), ATI FirePro V7760 (FireGL), ATI Mobility RADEON HD 4850, ATI Mobility RADEON HD 4850 X2, ATI FirePro RV770, AMD FireStream 9270, AMD FireStream 9250, ATI FirePro V8700 (FireGL), ATI Mobility RADEON HD 4870, ATI Mobility RADEON M98, ATI FirePro M7750, ATI M98, ATI Mobility Radeon HD 4650, ATI Radeon RV730 (AGP), ATI Mobility Radeon HD 4670, ATI FirePro M5750, ATI RV730XT [Radeon HD 4670], ATI RADEON E4600, ATI Radeon HD 4600 Series, ATI RV730 PRO [Radeon HD 4650], ATI FirePro V7750 (FireGL), ATI FirePro V5700 (FireGL), ATI FirePro V3750 (FireGL), ATI Mobility Radeon HD 4830, ATI Mobility Radeon HD 4850, ATI FirePro M7740, ATI RV740, ATI Radeon HD 4770, ATI Radeon HD 4700 Series, ATI RV610, ATI Radeon HD 2400 XT, ATI Radeon HD 2400 Pro, ATI Radeon HD 2400 PRO AGP, ATI FireGL V4000, ATI Radeon HD 2350, ATI Mobility Radeon HD 2400 XT, ATI Mobility Radeon HD 2400, ATI RADEON E2400, ATI FireMV 2260, ATI RV670, ATI Radeon HD3870, ATI Mobility Radeon HD 3850, ATI Radeon HD3850, ATI Mobility Radeon HD 3850 X2, ATI Mobility Radeon HD 3870, ATI Mobility Radeon HD 3870 X2, ATI Radeon HD3870 X2, ATI FireGL V7700, ATI Radeon HD3690, AMD Firestream 9170, ATI Radeon HD 4550, ATI Radeon RV710, ATI Radeon HD 4350, ATI Mobility Radeon 4300 Series, ATI Mobility Radeon 4500 Series, ATI FirePro RG220, ATI Mobility Radeon 4330, ATI RV630, ATI Mobility Radeon HD 2600, ATI Mobility Radeon HD 2600 XT, ATI Radeon HD 2600 XT AGP, ATI Radeon HD 2600 Pro AGP, ATI Radeon HD 2600 XT, ATI Radeon HD 2600 Pro, ATI Gemini RV630, ATI Gemini Mobility Radeon HD 2600 XT, ATI FireGL V5600, ATI FireGL V3600, ATI Radeon HD 2600 LE, ATI Mobility FireGL Graphics Processor, ATI Radeon HD 3470, ATI Mobility Radeon HD 3430, ATI Mobility Radeon HD 3400 Series, ATI Radeon HD 3450, ATI Radeon HD 3430, ATI FirePro V3700, ATI FireMV 2450, ATI Radeon HD 3600 Series, ATI Radeon HD 3650 AGP, ATI Radeon HD 3600 PRO, ATI Radeon HD 3600 XT, ATI Mobility Radeon HD 3650, ATI Mobility Radeon HD 3670, ATI Mobility FireGL V5700, ATI Mobility FireGL V5725, ATI Radeon HD 3200 Graphics, ATI Radeon 3100 Graphics, ATI Radeon HD 3300 Graphics, ATI Radeon 3000 Graphics, SUMO, SUMO2, ATI Radeon HD 4200, ATI Radeon 4100, ATI Mobility Radeon HD 4200, ATI Mobility Radeon 4100, ATI Radeon HD 4290, ATI Radeon HD 4250, AMD Radeon HD 6310 Graphics, AMD Radeon HD 6250 Graphics, AMD Radeon HD 6300 Series Graphics, AMD Radeon HD 6200 Series Graphics, PALM, CYPRESS, ATI FirePro (FireGL) Graphics Adapter, AMD Firestream 9370, AMD Firestream 9350, ATI Radeon HD 5800 Series, ATI Radeon HD 5900 Series, ATI Mobility Radeon HD 5800 Series, ATI Radeon HD 5700 Series, ATI Radeon HD 6700 Series, ATI Mobility Radeon HD 5000 Series, ATI Mobility Radeon HD 5570, ATI Radeon HD 5670, ATI Radeon HD 5570, ATI Radeon HD 5500 Series, REDWOOD, ATI Mobility Radeon Graphics, CEDAR, ATI FirePro 2270, ATI Radeon HD 5450, CAYMAN, AMD Radeon HD 6900 Series, AMD Radeon HD 6900M Series, Mobility Radeon HD 6000 Series, BARTS, AMD Radeon HD 6800 Series, AMD Radeon HD 6700 Series, TURKS, CAICOS, ARUBA, TAHITI, PITCAIRN, VERDE, OLAND, HAINAN, BONAIRE, KABINI, MULLINS, KAVERI, HAWAII [ 121.170] (II) modesetting: Driver for Modesetting Kernel Drivers: kms [ 121.170] (II) FBDEV: driver for framebuffer: fbdev [ 121.170] (II) VESA: driver for VESA chipsets: vesa [ 121.170] (EE) Fatal server error: [ 121.170] (EE) xf86OpenConsole: Cannot open virtual console 7 (Permission denied) [ 121.170] (EE) [ 121.170] (EE) Please consult the The X.Org Foundation support at http://wiki.x.org for help. [ 121.170] (EE) Please also check the log file at "/home/fd/.local/share/xorg/Xorg.0.log" for additional information. [ 121.170] (EE) [ 121.170] (WW) xf86CloseConsole: KDSETMODE failed: Bad file descriptor [ 121.170] (WW) xf86CloseConsole: VT_GETMODE failed: Bad file descriptor [ 121.170] (EE) Server terminated with error (1). Closing log file.
kukibl wrote: I have exactly the same APU. I do not have access to my Gentoo machine at the moment, but I am pretty sure you should use amdgpu for VIDEO_CARDS. Also, in my kernel configuration I left everything related to amdgpu and Radeon enabled as module (although only amdgpu module is used). https://wiki.gentoo.org/wiki/AMDGPU#Kernel Edit: I do not see that Xorg tried loading amdgpu at all. I guess this driver is not installed/pulled by xorg-drivers and Mesa. Can you double check what you have in make.conf? VIDEO_CARDS="??????" I change the setting to: VIDEO_CARDS="amdgpu" re-compiled: x11-base/xorg-drivers media-libs/mesa and the X will not start. Besides, "media-libs/mesa" doesn't have a "amdgpu" driver. I tried: VIDEO_CARDS="radeon" - X will not strat with: VIDEO_CARDS="radeonsi" - X starts OK
Hi, I'm having trouble that font is being rendered horribly since I updated my system on the 11th of March. I was using freetype with infinality use flag previously to get a good font but after my font stopped working properly I thought it was time to move over to freetype only since as far as I know infinality isn't really maintained. Font does render OK in some applications (like Steam, Teamspeak, Spotify, keepassx) and other applications really bad (Firefox, Chrome, Thunderbird and ESPECIALLY bad in Discord where it's barely working. However in Discord it didn't work very well before this happened either. Text on some pages renders better than other pages though in Firefox. The gentoo forums page renders better as an example. I'm not really sure what information is relevant for this. Packages updated on the 10th of March: Code: Sat Mar 10 21:33:44 2018 >>> net-misc/ethertypes-0 Sat Mar 10 21:34:03 2018 >>> app-text/qpdf-8.0.2 Sat Mar 10 21:35:37 2018 >>> dev-libs/libunistring-0.9.9 Sat Mar 10 21:35:40 2018 >>> app-misc/ca-certificates-20170717.3.36 Sat Mar 10 21:35:47 2018 >>> dev-perl/Text-CSV_XS-1.340.0 Sat Mar 10 21:36:08 2018 >>> dev-libs/nspr-4.19 Sat Mar 10 21:37:05 2018 >>> dev-libs/protobuf-3.5.2 Sat Mar 10 21:37:08 2018 >>> sys-apps/sed-4.4-r1 Sat Mar 10 21:37:17 2018 >>> dev-python/ply-3.11 Sat Mar 10 21:37:24 2018 >>> dev-python/futures-3.2.0 Sat Mar 10 21:37:27 2018 >>> net-firewall/ebtables-2.0.10.4-r2 Sat Mar 10 21:37:32 2018 >>> dev-python/msgpack-0.5.6 Sat Mar 10 21:37:59 2018 >>> sys-kernel/gentoo-sources-4.15.8 Sat Mar 10 21:38:02 2018 >>> dev-python/pycparser-2.18-r1 Sat Mar 10 21:38:05 2018 >>> x11-libs/libdrm-2.4.91 Sat Mar 10 21:38:09 2018 >>> dev-vcs/mercurial-4.5.2 Sat Mar 10 21:38:18 2018 >>> media-gfx/feh-2.25 Sat Mar 10 21:38:21 2018 >>> dev-python/neovim-python-client-0.2.1-r1 Sat Mar 10 21:38:38 2018 >>> sys-apps/gawk-4.2.1-r1 Sat Mar 10 21:38:42 2018 >>> sys-libs/e2fsprogs-libs-1.44.0 Sat Mar 10 21:38:48 2018 >>> x11-misc/util-macros-1.19.2 Sat Mar 10 21:39:00 2018 >>> x11-proto/xcb-proto-1.13 Sat Mar 10 21:39:30 2018 >>> x11-libs/libxcb-1.13 Sat Mar 10 21:39:38 2018 >>> x11-apps/mkfontscale-1.1.3 Sat Mar 10 21:39:44 2018 >>> dev-libs/libinput-1.10.2 Sat Mar 10 21:39:59 2018 >>> sys-apps/portage-2.3.24-r1 Sat Mar 10 21:40:09 2018 >>> x11-apps/iceauth-1.0.8 Sat Mar 10 21:40:12 2018 >>> x11-misc/xbitmaps-1.1.2 Sat Mar 10 21:40:17 2018 >>> x11-apps/xrdb-1.1.1 Sat Mar 10 21:40:20 2018 >>> x11-apps/xkbcomp-1.4.1 Sat Mar 10 21:40:24 2018 >>> x11-apps/xset-1.2.4 Sat Mar 10 21:40:29 2018 >>> x11-apps/xprop-1.2.3 Sat Mar 10 21:40:32 2018 >>> net-analyzer/vnstat-1.18 Sat Mar 10 21:40:36 2018 >>> x11-libs/xpyb-1.3.1-r4 Sat Mar 10 21:40:40 2018 >>> x11-apps/xinit-1.4.0 Sat Mar 10 21:40:44 2018 >>> app-admin/logrotate-3.14.0 Sat Mar 10 21:41:02 2018 >>> media-gfx/graphite2-1.3.11 Sat Mar 10 21:41:06 2018 >>> app-antivirus/clamav-0.99.4 Sat Mar 10 21:41:22 2018 >>> sys-libs/libomp-6.0.0 Sat Mar 10 21:41:40 2018 >>> media-libs/harfbuzz-1.7.6 Sat Mar 10 21:41:56 2018 >>> dev-python/pycairo-1.16.3 Sat Mar 10 21:42:28 2018 >>> app-portage/eix-0.33.2 Sat Mar 10 21:42:34 2018 >>> app-admin/keepassxc-2.3.1 Sat Mar 10 21:43:26 2018 >>> dev-libs/nss-3.36 Sat Mar 10 21:43:29 2018 >>> net-firewall/iptables-1.6.2-r2 Sat Mar 10 21:43:32 2018 >>> app-editors/nano-2.9.4 Sat Mar 10 21:43:36 2018 >>> sys-apps/util-linux-2.31.1-r1 Sat Mar 10 21:44:15 2018 >>> media-libs/fontconfig-2.13.0 Sat Mar 10 21:45:26 2018 >>> sys-apps/systemd-238 Sat Mar 10 21:46:05 2018 >>> sys-apps/dbus-1.12.6 Sat Mar 10 21:47:21 2018 >>> x11-base/xorg-server-1.19.5-r1 Sat Mar 10 21:47:25 2018 >>> sys-fs/e2fsprogs-1.44.0 Sat Mar 10 21:47:36 2018 >>> dev-java/icedtea-bin-3.7.0 Sat Mar 10 21:47:43 2018 >>> net-misc/teamviewer-13.0.9865 Sat Mar 10 21:47:49 2018 >>> sys-kernel/dracut-047 Sat Mar 10 21:47:53 2018 >>> net-print/cups-filters-1.20.1 Sat Mar 10 21:47:57 2018 >>> net-nds/rpcbind-0.2.4-r2 Sat Mar 10 21:48:07 2018 >>> net-im/skypeforlinux-8.17.0.2 Sat Mar 10 21:48:10 2018 >>> sys-fs/cryptsetup-2.0.2 Sat Mar 10 21:48:14 2018 >>> www-client/google-chrome-65.0.3325.146 Sat Mar 10 21:49:10 2018 >>> x11-drivers/nvidia-drivers-390.25 Sat Mar 10 21:49:21 2018 >>> x11-drivers/xf86-input-libinput-0.26.0 Sat Mar 10 21:55:44 2018 >>> sys-apps/systemd-238 Sat Mar 10 21:57:20 2018 >>> x11-drivers/nvidia-drivers-390.25 Rendering in Firefox (when it's bad): https://screenshotscdn.firefoxusercontent.com/images/67cd7e4a-a0e6-4b70-8aed-3d36011ec54c.png Rendering in Firefox (when it's better): https://screenshotscdn.firefoxusercontent.com/images/61214575-fd9f-41da-80b6-53a5dbca9cfc.png Rendering in Discord: https://i.imgur.com/A8jCGpU.png Use flags for freetype: Code: media-libs/freetype-2.9:2::gentoo USE="X adobe-cff bzip2 png -bindist -cleartype_hinting -debug -doc -fontforge -harfbuzz -infinality -static-libs -utils" ABI_X86="32 (64) (-x32)" Currently selected font configuration in `eselect fontconfig`. Yes a lot of stuff is enabled but I got desperate. Code: [1] 10-autohint.conf [2] 10-hinting-full.conf [3] 10-hinting-medium.conf [4] 10-hinting-none.conf [5] 10-hinting-slight.conf [6] 10-no-sub-pixel.conf [7] 10-scale-bitmap-fonts.conf [8] 10-sub-pixel-bgr.conf [9] 10-sub-pixel-rgb.conf * [10] 10-sub-pixel-vbgr.conf [11] 10-sub-pixel-vrgb.conf [12] 10-unhinted.conf [13] 11-lcdfilter-default.conf * [14] 11-lcdfilter-legacy.conf [15] 11-lcdfilter-light.conf [16] 20-unhint-small-dejavu-sans.conf * [17] 20-unhint-small-dejavu-sans-mono.conf * [18] 20-unhint-small-dejavu-serif.conf * [19] 20-unhint-small-vera.conf * [20] 25-ttf-arphic-ukai-render.conf [21] 25-ttf-arphic-uming-bitmaps.conf [22] 25-ttf-arphic-uming-render.conf [23] 25-unhint-nonlatin.conf [24] 30-metric-aliases.conf [25] 31-cantarell.conf * [26] 35-ttf-arphic-ukai-aliases.conf * [27] 35-ttf-arphic-uming-aliases.conf * [28] 40-nonlatin.conf [29] 41-ttf-arphic-ukai.conf * [30] 41-ttf-arphic-uming.conf * [31] 42-luxi-mono.conf * [32] 43-wqy-zenhei-sharp.conf * [33] 44-wqy-zenhei.conf * [34] 45-generic.conf [35] 45-latin.conf * [36] 49-sansserif.conf * [37] 50-user.conf [38] 51-local.conf * [39] 57-dejavu-sans.conf * [40] 57-dejavu-sans-mono.conf * [41] 57-dejavu-serif.conf * [42] 59-google-droid-sans.conf * [43] 59-google-droid-sans-mono.conf * [44] 59-google-droid-serif.conf * [45] 60-generic.conf [46] 60-latin.conf * [47] 60-liberation.conf * [48] 63-source-pro.conf * [49] 64-ttf-arphic-uming.conf * [50] 65-fonts-persian.conf * [51] 65-khmer.conf * [52] 65-nonlatin.conf * [53] 66-ja-ipafonts.conf * [54] 66-takao-fonts.conf * [55] 69-unifont.conf * [56] 70-no-bitmaps.conf [57] 70-yes-bitmaps.conf [58] 75-ttf-arphic-ukai-select.conf * [59] 80-delicious.conf * [60] 90-synthetic.conf * [61] 90-ttf-arphic-ukai-embolden.conf * [62] 90-ttf-arphic-uming-embolden.conf * Any suggestions are welcome.. I don't really know what to change to fix the issue. If any more information is needed please tell me. Thanks. [Moderator edit: changed [q uote] tags to [c ode] tags to preserve output layout. -Hu]
You need at least some form of hinting turned on.
Hi. I am making my way through a Gentoo install for a home built machine for the HD TV. I have done a test installation of Gentoo on an old laptop, so I am somewhat familiar with the process, but I am new to getting a real graphics card to work. I believe I just solved the linux-firmware issue (I asked about that on the Gentoo Installation forum), rebuilt the kernel with the amdgpu drivers and firmware built in, and am logged into the system in text mode with the font noticeably different than it was before the drivers and firmware were present. Additionally, /dev/dri/ and /dev/dri/card0 are now present (neither were before building in the drivers and firmware). For reference, my graphics card is a Sapphire Radeon RX 550. I followed the instructions here ( https://wiki.gentoo.org/wiki/AMDGPU ) with the caveat that RX 550 is listed as both Polaris 11 and Polaris 12 (possibly an error?). I researched online and found other sources say RX 550 is Polaris 12 so I used that list of firmware. Given that I now have /dev/dri and the font looks different, I was hoping this would be it and startx would lauch, but it is failing again now. Please see the Xorg.0.log below: Code: [ 46.611] X.Org X Server 1.20.10 X Protocol Version 11, Revision 0 [ 46.611] Build Operating System: Linux 5.4.97-gentoo-default-config x86_64 Gentoo [ 46.611] Current Operating System: Linux mediamachine 5.4.97-gentoo-graphics-config #2 SMP Thu Apr 1 18:11:30 PDT 2021 x86_64 [ 46.611] Kernel command line: BOOT_IMAGE=/vmlinuz-5.4.97-gentoo-graphics-config root=PARTUUID=28752c05-45f8-4157-8528-909b23f3b242 ro [ 46.611] Build Date: 31 March 2021 10:17:36PM [ 46.611] [ 46.611] Current version of pixman: 0.40.0 [ 46.611] Before reporting problems, check http://wiki.x.org to make sure that you have the latest version. [ 46.611] Markers: (--) probed, (**) from config file, (==) default setting, (++) from command line, (!!) notice, (II) informational, (WW) warning, (EE) error, (NI) not implemented, (??) unknown. [ 46.611] (==) Log file: "/home/name/.local/share/xorg/Xorg.0.log", Time: Thu Apr 1 18:16:09 2021 [ 46.615] (==) Using system config directory "/usr/share/X11/xorg.conf.d" [ 46.615] (==) No Layout section. Using the first Screen section. [ 46.615] (==) No screen section available. Using defaults. [ 46.615] (**) |-->Screen "Default Screen Section" (0) [ 46.615] (**) | |-->Monitor "<default monitor>" [ 46.616] (==) No monitor specified for screen "Default Screen Section". Using a default monitor configuration. [ 46.616] (==) Automatically adding devices [ 46.616] (==) Automatically enabling devices [ 46.616] (==) Automatically adding GPU devices [ 46.616] (==) Max clients allowed: 256, resource mask: 0x1fffff [ 46.617] (WW) The directory "/usr/share/fonts/TTF/" does not exist. [ 46.617] Entry deleted from font path. [ 46.617] (WW) The directory "/usr/share/fonts/OTF/" does not exist. [ 46.617] Entry deleted from font path. [ 46.617] (WW) The directory "/usr/share/fonts/Type1/" does not exist. [ 46.617] Entry deleted from font path. [ 46.617] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/100dpi/". [ 46.617] Entry deleted from font path. [ 46.617] (Run 'mkfontdir' on "/usr/share/fonts/100dpi/"). [ 46.617] (==) FontPath set to: /usr/share/fonts/misc/, /usr/share/fonts/75dpi/ [ 46.617] (==) ModulePath set to "/usr/lib64/xorg/modules" [ 46.617] (II) The server relies on udev to provide the list of input devices. If no devices become available, reconfigure udev or disable AutoAddDevices. [ 46.617] (II) Loader magic: 0x558533869d00 [ 46.617] (II) Module ABI versions: [ 46.617] X.Org ANSI C Emulation: 0.4 [ 46.617] X.Org Video Driver: 24.1 [ 46.617] X.Org XInput driver : 24.1 [ 46.618] X.Org Server Extension : 10.0 [ 46.618] (++) using VT number 1 [ 46.618] (II) systemd-logind: took control of session /org/freedesktop/login1/session/_31 [ 46.618] (II) xfree86: Adding drm device (/dev/dri/card0) [ 46.619] (II) systemd-logind: got fd for /dev/dri/card0 226:0 fd 10 paused 0 [ 46.621] (--) PCI:*(7@0:0:0) 1002:699f:1da2:e367 rev 199, Mem @ 0xe0000000/268435456, 0xf0000000/2097152, 0xfcf00000/262144, I/O @ 0x0000e000/256, BIOS @ 0x????????/131072 [ 46.621] (II) LoadModule: "glx" [ 46.624] (II) Loading /usr/lib64/xorg/modules/extensions/libglx.so [ 46.639] (II) Module glx: vendor="X.Org Foundation" [ 46.639] compiled for 1.20.10, module version = 1.0.0 [ 46.639] ABI class: X.Org Server Extension, version 10.0 [ 46.639] (II) Applying OutputClass "AMDgpu" to /dev/dri/card0 [ 46.639] loading driver: amdgpu [ 46.639] (==) Matched amdgpu as autoconfigured driver 0 [ 46.639] (==) Matched ati as autoconfigured driver 1 [ 46.639] (==) Matched modesetting as autoconfigured driver 2 [ 46.639] (==) Matched fbdev as autoconfigured driver 3 [ 46.639] (==) Matched vesa as autoconfigured driver 4 [ 46.639] (==) Assigned the driver to the xf86ConfigLayout [ 46.639] (II) LoadModule: "amdgpu" [ 46.640] (II) Loading /usr/lib64/xorg/modules/drivers/amdgpu_drv.so [ 46.645] (II) Module amdgpu: vendor="X.Org Foundation" [ 46.645] compiled for 1.20.10, module version = 19.1.0 [ 46.645] Module class: X.Org Video Driver [ 46.645] ABI class: X.Org Video Driver, version 24.1 [ 46.645] (II) LoadModule: "ati" [ 46.645] (II) Loading /usr/lib64/xorg/modules/drivers/ati_drv.so [ 46.645] (II) Module ati: vendor="X.Org Foundation" [ 46.645] compiled for 1.20.10, module version = 19.1.0 [ 46.645] Module class: X.Org Video Driver [ 46.645] ABI class: X.Org Video Driver, version 24.1 [ 46.646] (II) LoadModule: "modesetting" [ 46.646] (II) Loading /usr/lib64/xorg/modules/drivers/modesetting_drv.so [ 46.647] (II) Module modesetting: vendor="X.Org Foundation" [ 46.647] compiled for 1.20.10, module version = 1.20.10 [ 46.647] Module class: X.Org Video Driver [ 46.647] ABI class: X.Org Video Driver, version 24.1 [ 46.647] (II) LoadModule: "fbdev" [ 46.648] (WW) Warning, couldn't open module fbdev [ 46.648] (EE) Failed to load module "fbdev" (module does not exist, 0) [ 46.648] (II) LoadModule: "vesa" [ 46.648] (WW) Warning, couldn't open module vesa [ 46.648] (EE) Failed to load module "vesa" (module does not exist, 0) [ 46.648] (II) AMDGPU: Driver for AMD Radeon: All GPUs supported by the amdgpu kernel driver [ 46.648] (II) modesetting: Driver for Modesetting Kernel Drivers: kms [ 46.648] (WW) Falling back to old probe method for modesetting [ 46.649] (WW) VGA arbiter: cannot open kernel arbiter, no multi-card support [ 46.649] (II) AMDGPU(0): Creating default Display subsection in Screen section "Default Screen Section" for depth/fbbpp 24/32 [ 46.649] (==) AMDGPU(0): Depth 24, (--) framebuffer bpp 32 [ 46.649] (II) AMDGPU(0): Pixel depth = 24 bits stored in 4 bytes (32 bpp pixmaps) [ 46.649] (==) AMDGPU(0): Default visual is TrueColor [ 46.649] (==) AMDGPU(0): RGB weight 888 [ 46.649] (II) AMDGPU(0): Using 8 bits per RGB (8 bit DAC) [ 46.649] (--) AMDGPU(0): Chipset: "Radeon RX550/550 Series" (ChipID = 0x699f) [ 46.649] (II) Loading sub module "fb" [ 46.649] (II) LoadModule: "fb" [ 46.649] (II) Loading /usr/lib64/xorg/modules/libfb.so [ 46.650] (II) Module fb: vendor="X.Org Foundation" [ 46.650] compiled for 1.20.10, module version = 1.0.0 [ 46.650] ABI class: X.Org ANSI C Emulation, version 0.4 [ 46.650] (II) Loading sub module "dri2" [ 46.650] (II) LoadModule: "dri2" [ 46.650] (II) Module "dri2" already built-in [ 46.892] (II) Loading sub module "glamoregl" [ 46.892] (II) LoadModule: "glamoregl" [ 46.892] (II) Loading /usr/lib64/xorg/modules/libglamoregl.so [ 46.901] (II) Module glamoregl: vendor="X.Org Foundation" [ 46.901] compiled for 1.20.10, module version = 1.0.1 [ 46.901] ABI class: X.Org ANSI C Emulation, version 0.4 [ 46.939] (II) AMDGPU(0): Refusing to try glamor on llvmpipe [ 46.940] (EE) AMDGPU(0): glamor detected, failed to initialize EGL. [ 46.940] (WW) AMDGPU(0): amdgpu_glamor_pre_init returned FALSE, using ShadowFB [ 46.940] (II) Loading sub module "shadow" [ 46.940] (II) LoadModule: "shadow" [ 46.940] (II) Loading /usr/lib64/xorg/modules/libshadow.so [ 46.941] (II) Module shadow: vendor="X.Org Foundation" [ 46.941] compiled for 1.20.10, module version = 1.1.0 [ 46.941] ABI class: X.Org ANSI C Emulation, version 0.4 [ 46.941] (II) AMDGPU(0): KMS Pageflipping: enabled [ 46.941] (II) AMDGPU(0): Output DisplayPort-0 has no monitor section [ 46.941] (II) AMDGPU(0): Output HDMI-A-0 has no monitor section [ 46.941] (II) AMDGPU(0): Output DVI-D-0 has no monitor section [ 46.944] (II) AMDGPU(0): EDID for output DisplayPort-0 [ 46.944] (II) AMDGPU(0): EDID for output HDMI-A-0 [ 46.944] (II) AMDGPU(0): Manufacturer: SAM Model: e33 Serial#: 2048 [ 46.944] (II) AMDGPU(0): Year: 2017 Week: 8 [ 46.944] (II) AMDGPU(0): EDID Version: 1.3 [ 46.944] (II) AMDGPU(0): Digital Display Input [ 46.944] (II) AMDGPU(0): Max Image Size [cm]: horiz.: 102 vert.: 57 [ 46.944] (II) AMDGPU(0): Gamma: 2.20 [ 46.944] (II) AMDGPU(0): No DPMS capabilities specified [ 46.944] (II) AMDGPU(0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4 [ 46.944] (II) AMDGPU(0): First detailed timing is preferred mode [ 46.944] (II) AMDGPU(0): redX: 0.641 redY: 0.330 greenX: 0.301 greenY: 0.601 [ 46.944] (II) AMDGPU(0): blueX: 0.150 blueY: 0.061 whiteX: 0.280 whiteY: 0.290 [ 46.944] (II) AMDGPU(0): Supported established timings: [ 46.944] (II) AMDGPU(0): 720x400@70Hz [ 46.944] (II) AMDGPU(0): 640x480@60Hz [ 46.944] (II) AMDGPU(0): 640x480@67Hz [ 46.944] (II) AMDGPU(0): 640x480@72Hz [ 46.944] (II) AMDGPU(0): 640x480@75Hz [ 46.944] (II) AMDGPU(0): 800x600@60Hz [ 46.944] (II) AMDGPU(0): 800x600@72Hz [ 46.944] (II) AMDGPU(0): 800x600@75Hz [ 46.944] (II) AMDGPU(0): 832x624@75Hz [ 46.944] (II) AMDGPU(0): 1024x768@60Hz [ 46.944] (II) AMDGPU(0): 1024x768@70Hz [ 46.944] (II) AMDGPU(0): 1024x768@75Hz [ 46.944] (II) AMDGPU(0): 1280x1024@75Hz [ 46.944] (II) AMDGPU(0): 1152x864@75Hz [ 46.944] (II) AMDGPU(0): Manufacturer's mask: 0 [ 46.944] (II) AMDGPU(0): Supported standard timings: [ 46.944] (II) AMDGPU(0): #0: hsize: 1152 vsize 864 refresh: 75 vid: 20337 [ 46.944] (II) AMDGPU(0): #1: hsize: 1280 vsize 720 refresh: 60 vid: 49281 [ 46.944] (II) AMDGPU(0): #2: hsize: 1280 vsize 800 refresh: 60 vid: 129 [ 46.944] (II) AMDGPU(0): #3: hsize: 1280 vsize 1024 refresh: 60 vid: 32897 [ 46.944] (II) AMDGPU(0): #4: hsize: 1440 vsize 900 refresh: 60 vid: 149 [ 46.944] (II) AMDGPU(0): #5: hsize: 1600 vsize 900 refresh: 60 vid: 49321 [ 46.944] (II) AMDGPU(0): #6: hsize: 1680 vsize 1050 refresh: 60 vid: 179 [ 46.944] (II) AMDGPU(0): Supported detailed timing: [ 46.944] (II) AMDGPU(0): clock: 148.5 MHz Image Size: 1210 x 680 mm [ 46.944] (II) AMDGPU(0): h_active: 1920 h_sync: 2008 h_sync_end 2052 h_blank_end 2200 h_border: 0 [ 46.944] (II) AMDGPU(0): v_active: 1080 v_sync: 1084 v_sync_end 1089 v_blanking: 1125 v_border: 0 [ 46.944] (II) AMDGPU(0): Supported detailed timing: [ 46.944] (II) AMDGPU(0): clock: 85.5 MHz Image Size: 1210 x 680 mm [ 46.944] (II) AMDGPU(0): h_active: 1366 h_sync: 1436 h_sync_end 1579 h_blank_end 1792 h_border: 0 [ 46.944] (II) AMDGPU(0): v_active: 768 v_sync: 771 v_sync_end 774 v_blanking: 798 v_border: 0 [ 46.944] (II) AMDGPU(0): Ranges: V min: 24 V max: 75 Hz, H min: 15 H max: 81 kHz, PixClock max 235 MHz [ 46.944] (II) AMDGPU(0): Monitor name: SAMSUNG [ 46.944] (II) AMDGPU(0): Supported detailed timing: [ 46.944] (II) AMDGPU(0): clock: 74.2 MHz Image Size: 1210 x 680 mm [ 46.944] (II) AMDGPU(0): h_active: 1920 h_sync: 2448 h_sync_end 2492 h_blank_end 2640 h_border: 0 [ 46.944] (II) AMDGPU(0): v_active: 540 v_sync: 542 v_sync_end 547 v_blanking: 562 v_border: 0 [ 46.944] (II) AMDGPU(0): Supported detailed timing: [ 46.944] (II) AMDGPU(0): clock: 74.2 MHz Image Size: 1210 x 680 mm [ 46.944] (II) AMDGPU(0): h_active: 1920 h_sync: 2008 h_sync_end 2052 h_blank_end 2200 h_border: 0 [ 46.944] (II) AMDGPU(0): v_active: 540 v_sync: 542 v_sync_end 547 v_blanking: 562 v_border: 0 [ 46.944] (II) AMDGPU(0): Supported detailed timing: [ 46.944] (II) AMDGPU(0): clock: 74.2 MHz Image Size: 1210 x 680 mm [ 46.944] (II) AMDGPU(0): h_active: 1280 h_sync: 1720 h_sync_end 1760 h_blank_end 1980 h_border: 0 [ 46.944] (II) AMDGPU(0): v_active: 720 v_sync: 725 v_sync_end 730 v_blanking: 750 v_border: 0 [ 46.944] (II) AMDGPU(0): Supported detailed timing: [ 46.944] (II) AMDGPU(0): clock: 74.2 MHz Image Size: 1210 x 680 mm [ 46.944] (II) AMDGPU(0): h_active: 1280 h_sync: 1390 h_sync_end 1430 h_blank_end 1650 h_border: 0 [ 46.944] (II) AMDGPU(0): v_active: 720 v_sync: 725 v_sync_end 730 v_blanking: 750 v_border: 0 [ 46.944] (II) AMDGPU(0): Number of EDID sections to follow: 1 [ 46.944] (II) AMDGPU(0): EDID (in hex): [ 46.944] (II) AMDGPU(0): 00ffffffffffff004c2d330e00080000 [ 46.944] (II) AMDGPU(0): 081b0103806639780a23ada4544d9926 [ 46.944] (II) AMDGPU(0): 0f474abdef80714f81c0810081809500 [ 46.945] (II) AMDGPU(0): a9c0b3000101023a801871382d40582c [ 46.945] (II) AMDGPU(0): 4500baa84200001e662156aa51001e30 [ 46.945] (II) AMDGPU(0): 468f3300baa84200001e000000fd0018 [ 46.945] (II) AMDGPU(0): 4b0f5117000a202020202020000000fc [ 46.945] (II) AMDGPU(0): 0053414d53554e470a202020202001db [ 46.945] (II) AMDGPU(0): 020332f14d901f041305140312202122 [ 46.945] (II) AMDGPU(0): 07162c0907071507503d04c057070083 [ 46.945] (II) AMDGPU(0): 010000e2000fe305030167030c001000 [ 46.945] (II) AMDGPU(0): b83c011d80d0721c1620102c2580baa8 [ 46.945] (II) AMDGPU(0): 4200009e011d8018711c1620582c2500 [ 46.945] (II) AMDGPU(0): baa84200009e011d00bc52d01e20b828 [ 46.945] (II) AMDGPU(0): 5540baa84200001e011d007251d01e20 [ 46.945] (II) AMDGPU(0): 6e285500baa84200001e000000000068 [ 46.945] (--) AMDGPU(0): HDMI max TMDS frequency 300000KHz [ 46.945] (II) AMDGPU(0): Printing probed modes for output HDMI-A-0 [ 46.945] (II) AMDGPU(0): Modeline "1920x1080"x60.0 148.50 1920 2008 2052 2200 1080 1084 1089 1125 +hsync +vsync (67.5 kHz eP) [ 46.945] (II) AMDGPU(0): Modeline "1920x1080"x50.0 148.50 1920 2448 2492 2640 1080 1084 1089 1125 +hsync +vsync (56.2 kHz e) [ 46.945] (II) AMDGPU(0): Modeline "1920x1080"x59.9 148.35 1920 2008 2052 2200 1080 1084 1089 1125 +hsync +vsync (67.4 kHz e) [ 46.945] (II) AMDGPU(0): Modeline "1920x1080"x30.0 74.25 1920 2008 2052 2200 1080 1084 1089 1125 +hsync +vsync (33.8 kHz e) [ 46.945] (II) AMDGPU(0): Modeline "1920x1080"x25.0 74.25 1920 2448 2492 2640 1080 1084 1089 1125 +hsync +vsync (28.1 kHz e) [ 46.945] (II) AMDGPU(0): Modeline "1920x1080"x24.0 74.25 1920 2558 2602 2750 1080 1084 1089 1125 +hsync +vsync (27.0 kHz e) [ 46.945] (II) AMDGPU(0): Modeline "1920x1080"x30.0 74.18 1920 2008 2052 2200 1080 1084 1089 1125 +hsync +vsync (33.7 kHz e) [ 46.945] (II) AMDGPU(0): Modeline "1920x1080"x24.0 74.18 1920 2558 2602 2750 1080 1084 1089 1125 +hsync +vsync (27.0 kHz e) [ 46.945] (II) AMDGPU(0): Modeline "1680x1050"x59.9 119.00 1680 1728 1760 1840 1050 1053 1059 1080 +hsync -vsync (64.7 kHz e) [ 46.945] (II) AMDGPU(0): Modeline "1600x900"x60.0 108.00 1600 1624 1704 1800 900 901 904 1000 +hsync +vsync (60.0 kHz e) [ 46.945] (II) AMDGPU(0): Modeline "1280x1024"x75.0 135.00 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync (80.0 kHz e) [ 46.945] (II) AMDGPU(0): Modeline "1280x1024"x60.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz e) [ 46.945] (II) AMDGPU(0): Modeline "1440x900"x59.9 88.75 1440 1488 1520 1600 900 903 909 926 +hsync -vsync (55.5 kHz e) [ 46.945] (II) AMDGPU(0): Modeline "1366x768"x59.8 85.50 1366 1436 1579 1792 768 771 774 798 +hsync +vsync (47.7 kHz e) [ 46.945] (II) AMDGPU(0): Modeline "1280x800"x59.9 71.00 1280 1328 1360 1440 800 803 809 823 +hsync -vsync (49.3 kHz e) [ 46.945] (II) AMDGPU(0): Modeline "1152x864"x75.0 108.00 1152 1216 1344 1600 864 865 868 900 +hsync +vsync (67.5 kHz e) [ 46.945] (II) AMDGPU(0): Modeline "1280x720"x60.0 74.25 1280 1390 1430 1650 720 725 730 750 +hsync +vsync (45.0 kHz e) [ 46.945] (II) AMDGPU(0): Modeline "1280x720"x50.0 74.25 1280 1720 1760 1980 720 725 730 750 +hsync +vsync (37.5 kHz e) [ 46.945] (II) AMDGPU(0): Modeline "1280x720"x59.9 74.18 1280 1390 1430 1650 720 725 730 750 +hsync +vsync (45.0 kHz e) [ 46.945] (II) AMDGPU(0): Modeline "1024x768"x75.0 78.75 1024 1040 1136 1312 768 769 772 800 +hsync +vsync (60.0 kHz e) [ 46.945] (II) AMDGPU(0): Modeline "1024x768"x70.1 75.00 1024 1048 1184 1328 768 771 777 806 -hsync -vsync (56.5 kHz e) [ 46.945] (II) AMDGPU(0): Modeline "1024x768"x60.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz e) [ 46.945] (II) AMDGPU(0): Modeline "832x624"x74.6 57.28 832 864 928 1152 624 625 628 667 -hsync -vsync (49.7 kHz e) [ 46.945] (II) AMDGPU(0): Modeline "800x600"x72.2 50.00 800 856 976 1040 600 637 643 666 +hsync +vsync (48.1 kHz e) [ 46.945] (II) AMDGPU(0): Modeline "800x600"x75.0 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync (46.9 kHz e) [ 46.945] (II) AMDGPU(0): Modeline "800x600"x60.3 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz e) [ 46.945] (II) AMDGPU(0): Modeline "720x576"x50.0 27.00 720 732 796 864 576 581 586 625 -hsync -vsync (31.2 kHz e) [ 46.945] (II) AMDGPU(0): Modeline "720x480"x60.0 27.03 720 736 798 858 480 489 495 525 -hsync -vsync (31.5 kHz e) [ 46.945] (II) AMDGPU(0): Modeline "720x480"x59.9 27.00 720 736 798 858 480 489 495 525 -hsync -vsync (31.5 kHz e) [ 46.945] (II) AMDGPU(0): Modeline "640x480"x75.0 31.50 640 656 720 840 480 481 484 500 -hsync -vsync (37.5 kHz e) [ 46.945] (II) AMDGPU(0): Modeline "640x480"x72.8 31.50 640 664 704 832 480 489 492 520 -hsync -vsync (37.9 kHz e) [ 46.945] (II) AMDGPU(0): Modeline "640x480"x66.7 30.24 640 704 768 864 480 483 486 525 -hsync -vsync (35.0 kHz e) [ 46.945] (II) AMDGPU(0): Modeline "640x480"x60.0 25.20 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz e) [ 46.945] (II) AMDGPU(0): Modeline "640x480"x59.9 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz e) [ 46.945] (II) AMDGPU(0): Modeline "720x400"x70.1 28.32 720 738 846 900 400 412 414 449 -hsync +vsync (31.5 kHz e) [ 46.945] (II) AMDGPU(0): EDID for output DVI-D-0 [ 46.945] (II) AMDGPU(0): Output DisplayPort-0 disconnected [ 46.945] (II) AMDGPU(0): Output HDMI-A-0 connected [ 46.945] (II) AMDGPU(0): Output DVI-D-0 disconnected [ 46.945] (II) AMDGPU(0): Using exact sizes for initial modes [ 46.945] (II) AMDGPU(0): Output HDMI-A-0 using initial mode 1920x1080 +0+0 [ 46.945] (II) AMDGPU(0): mem size init: gart size :ff972000 vram size: s:ff2e7000 visible:f2e7000 [ 46.945] (==) AMDGPU(0): DPI set to (96, 96) [ 46.945] (==) AMDGPU(0): Using gamma correction (1.0, 1.0, 1.0) [ 46.945] (II) Loading sub module "ramdac" [ 46.945] (II) LoadModule: "ramdac" [ 46.945] (II) Module "ramdac" already built-in [ 46.945] (II) UnloadModule: "modesetting" [ 46.945] (II) Unloading modesetting [ 46.949] (II) AMDGPU(0): Front buffer pitch: 7680 bytes [ 46.950] (==) AMDGPU(0): DRI3 disabled [ 46.950] (==) AMDGPU(0): Backing store enabled [ 46.950] (WW) AMDGPU(0): Direct rendering disabled [ 46.950] (II) AMDGPU(0): 2D and 3D acceleration disabled [ 46.950] (==) AMDGPU(0): DPMS enabled [ 46.950] (==) AMDGPU(0): Silken mouse enabled [ 46.961] (II) Initializing extension Generic Event Extension [ 46.961] (II) Initializing extension SHAPE [ 46.961] (II) Initializing extension MIT-SHM [ 46.961] (II) Initializing extension XInputExtension [ 46.963] (II) Initializing extension XTEST [ 46.963] (II) Initializing extension BIG-REQUESTS [ 46.963] (II) Initializing extension SYNC [ 46.963] (II) Initializing extension XKEYBOARD [ 46.963] (II) Initializing extension XC-MISC [ 46.963] (II) Initializing extension XFIXES [ 46.963] (II) Initializing extension RENDER [ 46.963] (II) Initializing extension RANDR [ 46.963] (II) Initializing extension COMPOSITE [ 46.963] (II) Initializing extension DAMAGE [ 46.963] (II) Initializing extension MIT-SCREEN-SAVER [ 46.963] (II) Initializing extension DOUBLE-BUFFER [ 46.963] (II) Initializing extension RECORD [ 46.963] (II) Initializing extension DPMS [ 46.963] (II) Initializing extension Present [ 46.963] (II) Initializing extension DRI3 [ 46.963] (II) Initializing extension X-Resource [ 46.963] (II) Initializing extension XVideo [ 46.963] (II) Initializing extension XVideo-MotionCompensation [ 46.963] (II) Initializing extension GLX [ 46.963] (II) AIGLX: Screen 0 is not DRI2 capable [ 46.965] (II) IGLX: Loaded and initialized swrast [ 46.965] (II) GLX: Initialized DRISWRAST GL provider for screen 0 [ 46.965] (II) Initializing extension XFree86-VidModeExtension [ 46.965] (II) Initializing extension XFree86-DGA [ 46.965] (II) Initializing extension XFree86-DRI [ 46.966] (II) Initializing extension DRI2 [ 46.966] (II) AMDGPU(0): Setting screen physical size to 508 x 285 [ 46.977] (EE) [ 46.977] (EE) Backtrace: [ 46.978] (EE) 0: /usr/bin/X (xorg_backtrace+0x53) [0x5585337dcc03] [ 46.978] (EE) 1: /usr/bin/X (0x558533624000+0x1bca25) [0x5585337e0a25] [ 46.978] (EE) 2: /lib64/libpthread.so.0 (0x7f390f331000+0x127e0) [0x7f390f3437e0] [ 46.978] (EE) 3: /lib64/libc.so.6 (gsignal+0x141) [0x7f390f1aea21] [ 46.978] (EE) 4: /lib64/libc.so.6 (abort+0x112) [0x7f390f198536] [ 46.978] (EE) 5: /lib64/libc.so.6 (0x7f390f176000+0x2241f) [0x7f390f19841f] [ 46.978] (EE) 6: /lib64/libc.so.6 (0x7f390f176000+0x314d2) [0x7f390f1a74d2] [ 46.978] (EE) 7: /usr/lib64/xorg/modules/drivers/amdgpu_drv.so (0x7f390ed80000+0x8f33) [0x7f390ed88f33] [ 46.978] (EE) 8: /usr/lib64/xorg/modules/drivers/amdgpu_drv.so (0x7f390ed80000+0x92a2) [0x7f390ed892a2] [ 46.978] (EE) 9: /usr/lib64/xorg/modules/drivers/amdgpu_drv.so (0x7f390ed80000+0x156ad) [0x7f390ed956ad] [ 46.978] (EE) 10: /usr/lib64/xorg/modules/drivers/amdgpu_drv.so (0x7f390ed80000+0x1772a) [0x7f390ed9772a] [ 46.978] (EE) 11: /usr/lib64/xorg/modules/drivers/amdgpu_drv.so (0x7f390ed80000+0x193ac) [0x7f390ed993ac] [ 46.978] (EE) 12: /usr/bin/X (MapWindow+0x25c) [0x5585336aaa3c] [ 46.978] (EE) 13: /usr/bin/X (0x558533624000+0x5ddf4) [0x558533681df4] [ 46.978] (EE) 14: /lib64/libc.so.6 (__libc_start_main+0xeb) [0x7f390f199e6b] [ 46.978] (EE) 15: /usr/bin/X (_start+0x2a) [0x55853366ad5a] [ 46.978] (EE) [ 46.978] (EE) Fatal server error: [ 46.978] (EE) Caught signal 6 (Aborted). Server aborting [ 46.978] (EE) [ 46.978] (EE) Please consult the The X.Org Foundation support at http://wiki.x.org for help. [ 46.978] (EE) Please also check the log file at "/home/name/.local/share/xorg/Xorg.0.log" for additional information. [ 46.978] (EE) [ 46.998] (EE) Server terminated with error (1). Closing log file. As you can see, there is a backtrace that terminates by reporting a fatal server error with signal 6. I am not sure if the prior item (Setting screen size...) is the item that failed, or the last item to be done successfully. Other than that, I am not sure what to look for. Please let me know if any other information would be helpful. The only other thing that jumps out at me is the reference to systemd-logind, as I use openrc and elogind, but maybe this text is hard coded into Xorg?
Maybe you are missing the kernel settings. Look here: https://wiki.gentoo.org/wiki/Libinput https://wiki.gentoo.org/wiki/USB/Guide#Config_options_for_the_kernel
This is embarrassing. I took xdm (lightdm) out of default, stopped xdm, logged out (even rebooted), but cannot startx as my normal user. The exact same .xinitrc that works perfectly on my other box, brings me to either a blank gray or black screen with a mouse cursor but no controls, or a black screen with no mouse. I can use CTRL/ALT/BACKSPACE to stop X and go back to the login shell, but that's it. I ssh from other box, start xdm, and login prompt and desktop work fine as normal. I'm stumped. I'm not the only one having startx as user problems, as I've been following this thread here: https://forums.gentoo.org/viewtopic-t-1129155.html Xorg.0.log does not show any meaningful errors or warnings. Code: [ 1523.722] (EE) Failed to load module "fbdev" (module does not exist, 0) [ 1523.722] (WW) Warning, couldn't open module fbdev [ 1523.723] (WW) Falling back to old probe method for modesetting [ 1523.723] (WW) VGA arbiter: cannot open kernel arbiter, no multi-card support I get these same errors in Xorg.0.log running from xdm also. It's actually running radeon module. Code: lspci -v ... 01:00.0 VGA compatible controller: Advanced Micro Devices, Inc. [AMD/ATI] Turks PRO [Radeon HD 7570] (prog-if 00 [VGA controller]) Subsystem: Pegatron Turks PRO [Radeon HD 7570] Flags: bus master, fast devsel, latency 0, IRQ 33 Memory at c0000000 (64-bit, prefetchable) [size=256M] Memory at fe620000 (64-bit, non-prefetchable) [size=128K] I/O ports at e000 [size=256] Expansion ROM at 000c0000 [disabled] [size=128K] Capabilities: <access denied> Kernel driver in use: radeon ...
Tony0945 wrote: It led me to add everything X to my local overlay so I am not caught without an X display on the workstations. Nothing of that kind is going to happen............. Tony0945 wrote: Am I understanding that xdm is going away or, as the ebuild suggests, only the the openrc init scripts are being changed and renamed? xorg-server[-systemd] is pulling in the required d-m-i package anyway, for the foreseeable future, then the dependency will likely be transferred to the DMs.
Let me start by pointing out that while I am a long-time Gentoo user, this is my first post on the forums. So far I have always been able to find the information I neded either by using the search, in the Wiki, man pages, or elsewhere. So if I missed a resource or made some other beginners mistake with this post, I apologize in advance. I just setup a new Gentoo system. My main system so far is almost nine(!) years old and I more or less stuck to 'what I know' (legacy Grub, ext4 root, heck I might even still have runscript services lying around). Basically: if stuff works, why change it? But setting up an entirely new system is a great opportunity to rethink some of those decisions and check out some 'new stuff. I have got a basic system running from a zfs root, booting directly from UEFI without any bootloader in-between, and didn't even need to install Python 2 for that. I also went through many man pages again pages and changed a lot about my portage configuration and general workflow compared to my old system based on my new knowledge etc. When it came to getting a full desktop experience beyond my current GNU screen in a TTY setup, I decided to be daring once more and give Wayland a shot. On my old main rig, I boot to a plain login prompt, login to TTY1 and (once I feel the need for it), start my window manager via startx. As I am used to tiling WMs for many years, Sway seemed to be the option to go for for my Wayland experiment. When checking the USE flags, the elogind one popped out at me as I head just read the news item about X dropping SUID by default recommending elogind for non-systemd setups. As I went without systemd for my new system as well (this is not the lame hate here, I just never needed it and am very happy with OpenRC), I figured this would be the right environment to test out that new way of handling permissions before I risk breaking my main system with an update. So I went ahead and set the USE flag. Since the corresponding wiki article warned about mixing elogind with consolekit and recommended setting it globally , I did just that. To my surprise, Python 2 was pulled in as a dependency of Spidermonkey pulled in by polkit but I understand this is just a matter of time to be resolved by upstream. I just didn't expect that switching to 'the new recommended way' would force me to install EOL software on a brand new system. Anyhow, I managed to rebuild the affected packages successfully and install Sway. I figured before trying to launch it, I better reboot to make sure elogind can do 'its thing'. Since the wiki said it would start automatically upon user login if build with USE=pam (which I did as recommended by the defaults and warning in the USE flag description not to mess with it), I did not add it to any runlevel. Upon reboot and login, I tried launching Sway by simply running sway (as that should work for elogind systems according to the wiki ) but I got an error: Code: error: XDG_RUNTIME_DIR not set in the environment. Of course I could have tried to manually create a directory with the approriate permissions and set the variable myself but to my understanding that would kinda defeat the purpose of the whole elogind thing I just installed Python 2 for and that is supposedly 'more secure' with all its fancy PAM-voodoo and an entire 'kit' for policing. So instead of being an old narrow-minded minimalist bloke, I tried to understand what's going on but quickly noticed that my knowledge of that part of system administration is basically nonexistent I don't seem to find the right sources. Thus I ended up making my first post on the forum. I undertstood that the thing that is supposed to start elogind upon login is dbus, which brings us to the next fancy 'new' service I have no experience with. Basically all I ever needed it for so far was to get my old USB scanner to work. So I run Code: sudo rc-service dbus start before trying to scan just like I run Code: sudo rc-service cupsd start before printing. Both are tasks I do so rarely that I simply never saw the need to constantly run deamons for them. So I did add the service to the boot runlevel just in case ( Code: sudo rc-update elogind boot ), rebooted again (just in case young people wonder how I do this without a session manager and all the policy kits and deamons: Code: sudo reboot ) but to no avail: Sway won't start but I can't blame it since Code: loginctl --list-sessions confirms there are none. This experience now got me worried that I might brick my main (Xorg) system with the next update unless I insist in staying 'oldschool' and running the X server as root. But I want to learn and move forward as I clearly missed keeping up with some parts of Linux development over the last years. I guess that is the main disadvantage of using a rolling distribution focussed on choice: You can get stuck in the past. But it is your fault. So I come here for advise on how to properly setup my system with elogind (I guess) but without having to install some graphical splash/login-screen thing like lightdm for the occasion of me deciding that GNU screen in a TTY is not convenient enough ( i.e. the latest when I want to browse the web as elinks usually just won't cut it anymore on today's web). I went through this whole thread and hope I won't trigger some flame war here but it appears I fall into the rare category of users for whom the news item was either not enough or that were not bright enough to get it. I did not include any logs since I don't know which ones would be relevant here (looks more like case of PEBKAC to me) and I am limited to screen's copy mode, retyping on my other machine, or moving logs via scp. But if any additional information would help, let me know. Thank you in advance for taking the time to (hopefully) teach an (actually not that) old dog some new tricks, for the countless times these forums have helped me in the past without me even asking, and for making me type BBCode again for the first time in many years.
GDH-gentoo posted a request for some information that may be relevant, but that request seems to have been overlooked. Please collect that information and post it. We need to eliminate possible reasons for failure. With the information we have, all of these are possible (and the list may not be exhaustive): PAM is not notifying elogind of your session when you log in. elogind is not running to receive the notification dbus is not running to transfer the notification dbus is losing the notification despite that all the components are running elogind is not handling the notification correctly The requested data may not rule out all of those, but once we know some of the candidates that are not at fault, we can narrow in on why it is broken.
Hi, I've done an encrypted install of gentoo using distkernel and dracut. I'm unable to start X and I get the following error: https://ibb.co/80zJ1Vt I've add i915 driver to dracut, installed xf86-video-intel, added elogind to run level boot. My video cards section of make.conf reads : "intel i915 i965 iris" (initially did not have i915 but added it and recompiled xorg drivers and server). Would appreciate advice on moving forward. Thanks!
the_actuary, From your image, you are missing DRI support in the kernel. Please put your kernel .config onto a pastbin site.
Dear Gentoo experts! Today I upgraded qtwebengine from 5.15.2 to 5.15.2_p20210224. after that kmail does list all my emails but doesn't display the content. (display the source works). I now go back to old version but that will take hours. I tried to reemerge kmail libkdepim kdepim-runtime kdepim-addons kontact, no luck. Any hint or solution for this art of problem?
Split the two preceding posts off of Konqueror support thread , because this affects a lot more than just Konqueror, and I hope more people will find the information this way. Atha wrote: I just updated dev-qt/qtwebengine from version 5.15.2 to version 5.15.2_p20210224 yesterday and since then I cannot get a page rendered anymore. Konqueror opens but the window area where the rendered page contents goes below the bookmarks bar is empty. In the console I see lines coming repeatedly showing this error: Code: [559741:559741:0307/192100.406267:ERROR:network_service_instance_impl.cc(286)] Network service crashed, restarting service. See bug 773919 . Somehow I never bumped into this, even though I've been running with 'git master' of Qt for some years now...
I'm currently customizing the looks of my XDM, but I have problems setting the label for the password field. All guides I have found say that it can be set in the Xresources file using the xlogin*passwdPrompt setting, but this setting has no effect for me. Other label settings, like xlogin*namePrompt , work. There's nothing interesting in /var/log/xdm.log . Thanks for any pointers on what I'm doing wrong /etc/X11/xdm/Xresources : Code: ! Geometry xlogin*geometry: 600x500+0+0 ! Fore- and background colors for the box. Foreground is used for input text xlogin*foreground: grey50 xlogin*background: white ! Font colors xlogin*greetColor: white xlogin*promptColor: black xlogin*failColor: red ! Font xlogin*greetFace: Helvetica-12 xlogin*face: Helvetica-12 xlogin*promptFace: Helvetica-12:bold xlogin*failFace: Helvetica-12:bold ! Texts !xlogin*greeting: xlogin*namePrompt: login xlogin*passwdPrompt: pass xlogin*fail: login failed ! Borders xlogin*borderWidth: 0 xlogin*frameWidth: 0 xlogin*innerFramesWidth: 0 xlogin*shdColor: white xlogin*hiColor: white
Have you tried other variations like passPrompt, passwordPrompt? You could try running "strings" on the xdm binary to see if you can spot the setting name it's looking for.
I have just finished installing gentoo with icewm, but it seems I cannot get harrdware acceleration to work: Code: adel@samsung ~ $ glxinfo name of display: :0 Error: couldn't find RGB GLX visual or fbconfig adel@samsung ~ $ glxgears Error: couldn't get an RGB, Double-buffered visual my graphics card, lspci -k: Code: 01:00.0 3D controller: NVIDIA Corporation GF117M [GeForce 610M/710M/810M/820M / GT 620M/625M/630M/720M] (rev a1) Subsystem: Samsung Electronics Co Ltd GeForce GT 620M Kernel driver in use: nvidia Kernel modules: nvidia_drm, nvidia I have tried xorg-server with the minimal flag and without it : Code: [ebuild R ] x11-base/xorg-server-1.20.10-r2:0/1.20.10::gentoo USE="minimal* systemd udev xorg -debug -dmx -doc (-elogind) -ipv6 -kdrive (-libressl) (-selinux) -suid -test -unwind -wayland -xcsecurity -xephyr -xnest -xvfb" 0 KiB Code: Calculating dependencies... done! [ebuild R ] x11-base/xorg-drivers-1.20-r2::gentoo INPUT_DEVICES="evdev -elographics -joystick -libinput -synaptics -vmmouse -void -wacom" VIDEO_CARDS="nvidia -amdgpu -ast -dummy -fbdev (-freedreno) (-geode) -glint -i915 -i965 -intel -mga -nouveau -nv (-omap) -qxl -r128 -radeon -radeonsi -siliconmotion (-tegra) (-vc4) -vesa -via -virtualbox -vmware" 0 KiB I start icewm with the following line int eh user profile: Code: if [[ -z $DISPLAY ]] && [[ $(tty) = /dev/tty1 ]]; then exec startx /usr/bin/icewm; fi x0vncserver -passwordfile ~/.vnc/passwd -display :0 any idea where I should begin looking? I s
wrt minimal you don't want that, most of it is "fine" with nvidia except one thing, it does --disable-glx (so yeah...). Minimal is mostly intended for a headless machine wanting to run Xvfb or so. Given your card, I assume you are using nvidia-drivers-390.xx branch, right? When you built 390, did it complaint about enabling KMS_HELPER in the kernel? 390.xx needs a workaround to have working glx, but that workaround only gets activated (in xorg.conf.d's nvidia-390.conf) with DRM support using KMS_HELPER Also, ensure you are in video group. Will need to see Xorg's log if the above doesn't help. Edit: also you shouldn't need to load modules yourself, nvidia-modprobe will automagic handle this + create devices with right permissions if you are in the video group as long as modules exist for your running kernel
Code: xdm info (pid 3030): Starting xdm 1.1.12 xdm info (pid 3030): Starting X server on :0 X.Org X Server 1.20.9 X Protocol Version 11, Revision 0 Build Operating System: Linux 4.17.19-gentoo x86_64 Gentoo Current Operating System: Linux Casti 5.4.72-gentoo #2 SMP PREEMPT Thu Oct 29 20:43:43 CDT 2020 x86_64 Kernel command line: net.ifnames=0 mitigations=off vga=0x346 rootfstype=ext4 root=/dev/sdb3 net.ifnames=0 mitigations=off Build Date: 26 August 2020 10:53:50AM Current version of pixman: 0.40.0 Before reporting problems, check http://wiki.x.org to make sure that you have the latest version. Markers: (--) probed, (**) from config file, (==) default setting, (++) from command line, (!!) notice, (II) informational, (WW) warning, (EE) error, (NI) not implemented, (??) unknown. (==) Log file: "/var/log/Xorg.0.log", Time: Thu Nov 5 11:13:02 2020 (==) Using config directory: "/etc/X11/xorg.conf.d" (==) Using system config directory "/usr/share/X11/xorg.conf.d" resize called 1920 1080 xdm: setproctitle not initialized, please either call setproctitle_init() or link against libbsd-ctor. (II) AIGLX: Suspending AIGLX clients for VT switch xdm info (pid 3239): sourcing /etc/X11/xdm/Xsetup.custom xdm info (pid 3239): sourcing /usr/lib64/X11/xdm/GiveConsole xdm info (pid 3492): executing session /usr/lib64/X11/xdm/Xsession -2 -2 -2 -2 -2 -2 -2 -2 -2 -2 -2 -2 -2 -2 -2 Those minus two's go on for a very very long time? What could be logging them?
I think there is some tolerance for inactive upstreams when the project in question has no users complaining about problems. Based on the copyright dates (which may have little or no relation to actual release dates), it looks like we're only about a year overdue for another release (should have come out in 2019, but didn't).
I recently upgraded the kernel in my Gentoo system. Running xorg I had no mouse or keyboard until i noticed that udev-trigger didn't start on boot and that starting it manually solved the problem. Here's what I don't understand; udev-trigger seem to be added to sysinit but does not start. Code: $ rc-config show all [...] Status of init scripts in runlevel "sysinit" cgroups [stopped] devfs [started] dmesg [stopped] kmod-static-nodes [stopped] opentmpfiles-dev [stopped] sysfs [started] udev [started] udev-trigger [stopped] Code: $ sudo rc-update add udev-trigger sysinit Password: * rc-update: udev-trigger already installed in runlevel `sysinit'; skipping Enabling debugging in /etc/rc.conf did not give any helpful output on udev-trigger. Code: rc_logger="YES" rc_log_path="/var/log/rc.log" rc_verbose=yes How do I get udev-trigger to start on boot automatically when it already seems to be added to the sysinit runlevel but does running after booting up the system?
If using eudev, my personal suggestion would be try migrating to sys-fs/udev. It tend to have fixes for misc/obscure things that eudev hasn't picked on (I barely test eudev anymore outside trying to figure out people's issues in a VM). Not that I ever figured out what cause this issue, pretty sure there'd be more users complaining if it was widespread.
Hello. Sometime ago i noticed that mc cannot open rar files anymore. When i press enter on the rar file for the first time it show me strange error windows titled "Cannot parse" and some non readable trash inside. After that nothing is displayed in any of rar files, just like a regular empty directory but everything is ok with zip files. I tried to google that error, but everything i`ve found is seems to be fixed 7 years ago. but i`ve got that error now. I also tried to: 1 re-install the mc 2 rebuilt unrar 3 installed the rar itself (normally i dont need to rar something, only to view and unrar it). Nothing changed. What can i do to make mc view rar files again?
does a unrar x filename work with the rar file? Just to check if mc is the problem and not rar/unrar itself
On the same system, when I am in KDE, the unicode characters of the file names displays as a question mark inside a diamond, and they are not able to be opened; but in GNOME/XFCE, the same files displays properly (both using Dolphin). Could anyone show me some hints that what might be wrong? Dolphin worked in KDE before.
After look everywhere, I did these to resolve my issue: 1. Remove any LANG / LC* variable in .bashrc and .profile 2. Remove LINGUAS="en" and L10N="en" in make.conf and update my system
Need 2 or 3 hours to get me display i update system to latest sddm-0.18 and plasma-meta cpu is i7 and 16Gb ddr3 ram graphic card is Nvidia i done this as nvidia ask Code: Device Drivers ---> Graphics support ---> <*> Direct Rendering Manager (XFree86 4.1.0 and higher DRI support) ---> [*] Enable legacy fbdev support for your modesetting driver and nothing happen as i see on gentoo wiki when i do this Code: /etc/modules-load.d/nvidia-drm.conf nvidia-drm Code: /etc/modprobe.d/nvidia-drm.conf options nvidia-drm modeset=1 all things up but mouse and keyboard doesnt work ... before this when is screen black all services work well i can connect only with ssh but on main server can get console and graphics ...
Code: options nvidia-drm modeset=1 This or DRM+KMS_HELPER stuff is not needed unless you want to use wayland (which I don't recommend with nvidia), but it should be harmless on its own. Keeping KMS_HELPER enabled does let the module have full features though and that's why the ebuild warns about it. There's also no need to module-load.d nvidia modules, nvidia-modprobe handle this + devices on-demand if your user is in video group (you are, right? gpasswd -a myuser video if not) wgetpaste of the Xorg log may be more interesting to know what happened
Hi! since a while, after some update I performed, emacs insists in opening in console-only and not with an X interface. This happens on both my laptop as well as workstation: so I have either a common configuration error or a bug in the emacs package. Code: [ebuild R ] app-editors/emacs-27.1-r3:27::gentoo USE="Xaw3d acl alsa dbus gif gmp inotify jpeg ssl threads toolkit-scroll-bars xft xpm zlib (-aqua) -athena -cairo -dynamic-loading -games -gconf -gfile -gpm -gsettings -gtk -gtk2 -gui -gzip-el -harfbuzz -imagemagick -json -kerberos -lcms -libxml2 -livecd -m17n-lib -mailutils -motif -png (-selinux) -sound -source -svg -systemd -tiff -wide-int -xwidgets" 0 KiB I checked, I had it configured to build with Xaw3d use flag. I tried to change to gtk, also activate xwidget... Code: [ebuild R ] app-editors/emacs-27.1-r3:27::gentoo USE="acl alsa dbus gif gmp gtk inotify jpeg ssl threads toolkit-scroll-bars xft xpm xwidgets* zlib -Xaw3d (-aqua) -athena -cairo -dynamic-loading -games -gconf -gfile -gpm -gsettings -gtk2 -gui -gzip-el -harfbuzz -imagemagick -json -kerberos -lcms -libxml2 -livecd -m17n-lib -mailutils -motif -png (-selinux) -sound -source -svg -systemd -tiff -wide-int" 0 KiB but it still runs without X. Any ideas?
You should enable gui use flag for enable support for a graphical user interface.
I want to install pantheon as my DE but I currently in amd64/17.1/hardened profile and gentoo wiki want amd64/17.1/desktop/gnome. If I don’t want to switch profile can I just add pantheon required keywords to package.accept_keywords? Since the gentoo pantheon wiki say Code: package.accept_keywords For those who want try Elementary alongside other desktop environments, it is wise to provide Portage with only the explicit instructions Elementary needs for (dependent) packages that require keywording. Or I have to switch to gnome profile to install pantheon, and after installed pantheon then switch back to hardened profile and add pantheon required keywords to package.accept_keywords? gentoo wiki-pantheon: https://wiki.gentoo.org/wiki/Pantheon
OmamoriIchika, Run emerge --info now and keep a list of your USE flags. Choose the amd64/17.1/desktop/gnome profile. Looking is harmless. Run emerge --info again and keep o lish of your USE flags now. Revert you profile. Look at the differences in the USE flags. The new ones were added by the gnome profile. If you are happy to add them to your install, add them to make.conf. You can add them in a comment to start with and see what happens when you try Code: emerge --ask pantheon-base/pantheon-shell As its from an overlay. Results may vary. You may find that you do not need to keyword everything in the wiki list.
Hello everybody I'm having random issues with firefox (at least i think its firefox) running gentoo in a old lenovo t420 laptop, 8 gig ram and 8 gig swap space. From time to time it freeze completely while using firefox, it never happens using other package, i tried latest kernels but no luck, i use 5.4.97 now (i masked ~amd only for gentoo-sources) be cause of frequent kernel updates in late stable branch. I use the last firefox-bin stable version available www-client/firefox-bin-85.0.2:0/85 desktop profile Code: [5] default/linux/amd64/17.1/desktop (stable) * My make.conf Code: COMMON_FLAGS="-march=native -O2 -pipe" CHOST="x86_64-pc-linux-gnu" CFLAGS="${COMMON_FLAGS}" CXXFLAGS="${COMMON_FLAGS}" FCFLAGS="${COMMON_FLAGS}" FFLAGS="${COMMON_FLAGS}" USE="xinerama elogind networkmanager X icu alsa ieee1394 -consolekit -systemd" # NOTE: This stage was built with the bindist Use flag enabled PORTDIR="/var/db/repos/gentoo" DISTDIR="/var/cache/distfiles" PKGDIR="/var/cache/binpkgs" MAKEOPTS="-j5" # This sets the language of build output to English. # Please keep this setting intact when reporting bugs. LC_MESSAGES=C VIDEO_CARDS="intel i965" ACCEPT_KEYWORDS="~amd64" INPUT_DEVICES="libinput synaptics" FEATURES=candy GENTOO_MIRRORS="http://gentoo.c3sl.ufpr.br/ https://gentoo.c3sl.ufpr.br/ http://mirror.leaseweb.com/gentoo/" if needed this is my .conf file https://dpaste.com/6D4RRFEFD for kernel compiling. my xorg log and my dmesg Thanks for your help!
I suggest leaving the thread as unsolved until you find an explanation and fix for your problem. If you never find an acceptable solution, leave the thread open indefinitely.
Im on a mac osx w paralells...I CAN boot up an older Live DVD of gentoo with plasma, I used it to gather some info for a full install... Im a bit stumped on what is missing here..The kernel seems to have the correct settings, I loaded fbdev and vesa because a previous Xorg.log complained, FB is enabled in kernel. Managed to get an X session in vBox and VMware, but this driver is different than that virtual env. So obviously I'm missing something. Could use some thoughts on what to try next. Thanks. I configured my kernel with the 'make localyesconfig' and it does give me identical lspci results from the live DVD, specifically the video card which is a VirtIO GPU. Kernel is compiled with virtio-pci drivers 01:00.0 VGA compatible controller: Red Hat, Inc. Virtio GPU (rev 01) Kernel driver in use: virtio-pci here's some FB kernel config items... CONFIG_FB_CMDLINE=y CONFIG_FB_NOTIFY=y CONFIG_FB=y CONFIG_FB_BOOT_VESA_SUPPORT=y CONFIG_FB_CFB_FILLRECT=y CONFIG_FB_CFB_COPYAREA=y CONFIG_FB_CFB_IMAGEBLIT=y CONFIG_FB_SYS_FILLRECT=y CONFIG_FB_SYS_COPYAREA=y CONFIG_FB_SYS_IMAGEBLIT=y CONFIG_FB_SYS_FOPS=y CONFIG_FB_DEFERRED_IO=y CONFIG_FB_VESA=y CONFIG_FB_EFI=y CONFIG_XEN_FBDEV_FRONTEND=y CONFIG_FB_SIMPLE=y and the VIRTIO .config items CONFIG_BLK_MQ_VIRTIO=y CONFIG_VIRTIO_NET=y CONFIG_VIRTIO=y CONFIG_VIRTIO_MENU=y CONFIG_VIRTIO_PCI=y CONFIG_VIRTIO_PCI_LEGACY=y CONFIG_VIRTIO_BALLOON=y and my Xorg config file....first go around it complained no fbdev or vesa, so I loaded xf86-video-fbdev and xf86-video-vesa drivers and got to this. [code[ 3438.334] (==) ModulePath set to "/usr/lib64/xorg/modules" [ 3438.334] (II) The server relies on udev to provide the list of input devices. If no devices become available, reconfigure udev or disable AutoAddDevices. [ 3438.334] (II) Loader magic: 0x55c96ce5fd00 [ 3438.334] (II) Module ABI versions: [ 3438.334] X.Org ANSI C Emulation: 0.4 [ 3438.334] X.Org Video Driver: 24.1 [ 3438.334] X.Org XInput driver : 24.1 [ 3438.334] X.Org Server Extension : 10.0 [ 3438.335] (++) using VT number 1 [ 3438.336] (II) systemd-logind: took control of session /org/freedesktop/login1/session/_31 [ 3438.339] (--) PCI:*(1@0:0:0) 1af4:1050:1ab8:0010 rev 1, Mem @ 0xb0000000/134217728, 0xe2000000/4096, 0xe2040000/16384, I/O @ 0x00006000/32, BIOS @ 0x????????/131072 [ 3438.339] (II) LoadModule: "glx" [ 3438.339] (II) Loading /usr/lib64/xorg/modules/extensions/libglx.so [ 3438.340] (II) Module glx: vendor="X.Org Foundation" [ 3438.340] compiled for 1.20.10, module version = 1.0.0 [ 3438.340] ABI class: X.Org Server Extension, version 10.0 [ 3438.340] (==) Matched modesetting as autoconfigured driver 0 [ 3438.340] (==) Matched fbdev as autoconfigured driver 1 [ 3438.340] (==) Matched vesa as autoconfigured driver 2 [ 3438.340] (==) Assigned the driver to the xf86ConfigLayout [ 3438.340] (II) LoadModule: "modesetting" [ 3438.340] (II) Loading /usr/lib64/xorg/modules/drivers/modesetting_drv.so [ 3438.340] (II) Module modesetting: vendor="X.Org Foundation" [ 3438.340] compiled for 1.20.10, module version = 1.20.10 [ 3438.340] Module class: X.Org Video Driver [ 3438.340] ABI class: X.Org Video Driver, version 24.1 [ 3438.340] (II) LoadModule: "fbdev" [ 3438.340] (II) Loading /usr/lib64/xorg/modules/drivers/fbdev_drv.so [ 3438.340] (II) Module fbdev: vendor="X.Org Foundation" [ 3438.340] compiled for 1.20.10, module version = 0.5.0 [ 3438.340] Module class: X.Org Video Driver [ 3438.340] ABI class: X.Org Video Driver, version 24.1 [ 3438.340] (II) LoadModule: "vesa" [ 3438.340] (II) Loading /usr/lib64/xorg/modules/drivers/vesa_drv.so [3438.340] (II) Module vesa: vendor="X.Org Foundation" [ 3438.340] compiled for 1.20.10, module version = 2.5.0 [ 3438.340] Module class: X.Org Video Driver [ 3438.340] ABI class: X.Org Video Driver, version 24.1 [ 3438.340] (II) modesetting: Driver for Modesetting Kernel Drivers: kms [ 3438.340] (II) FBDEV: driver for framebuffer: fbdev [ 3438.340] (II) VESA: driver for VESA chipsets: vesa [ 3438.340] (EE) open /dev/dri/card0: No such file or directory [ 3438.340] (WW) Falling back to old probe method for modesetting [ 3438.340] (EE) open /dev/dri/card0: No such file or directory [ 3438.340] (II) Loading sub module "fbdevhw" [ 3438.340] (II) LoadModule: "fbdevhw" [ 3438.340] (II) Loading /usr/lib64/xorg/modules/libfbdevhw.so [ 3438.342] (II) Module fbdevhw: vendor="X.Org Foundation" [ 3438.342] compiled for 1.20.10, module version = 0.0.2 [ 3438.342] ABI class: X.Org Video Driver, version 24.1 [ 3438.342] (EE) Unable to find a valid framebuffer device [ 3438.342] (WW) Falling back to old probe method for fbdev [ 3438.342] (II) Loading sub module "fbdevhw" [ 3438.342] (II) LoadModule: "fbdevhw" [ 3438.342] (II) Loading /usr/lib64/xorg/modules/libfbdevhw.so [ 3438.342] (II) Module fbdevhw: vendor="X.Org Foundation" [ 3438.342] compiled for 1.20.10, module version = 0.0.2 [ 3438.343] ABI class: X.Org Video Driver, version 24.1 [ 3438.343] (EE) open /dev/fb0: No such file or directory [ 3438.343] vesa: Ignoring device with a bound kernel driver [ 3438.343] (EE) Screen 0 deleted because of no matching config section. [ 3438.343] (II) UnloadModule: "modesetting" [ 3438.343] (EE) Screen 0 deleted because of no matching config section. [ 3438.343] (II) UnloadModule: "fbdev" [ 3438.343] (II) UnloadSubModule: "fbdevhw" [ 3438.343] (EE) Screen 0 deleted because of no matching config section. [ 3438.343] (II) UnloadModule: "vesa" [ 3438.343] (EE) Device(s) detected, but none match those in the config file. [ 3438.343] (EE) Fatal server error: [ 3438.343] (EE) no screens found(EE) [ 3438.343] (EE) [/code]
adding on...noticed after searching the packages list that the QEMU VirtIO GPU was listed as xf86-video-qxl and so I loaded it and got to this set of EE's 5353.057] (--) PCI:*(1@0:0:0) 1af4:1050:1ab8:0010 rev 1, Mem @ 0xb0000000/134217728, 0xe2000000/4096, 0xe2040000/16384, I/O @ 0x00006000/32, BIOS @ 0x????????/131072 [ 5353.058] (II) "glx" will be loaded. This was enabled by default and also specified in the config file. [ 5353.058] (II) LoadModule: "glx" [ 5353.058] (II) Loading /usr/lib64/xorg/modules/extensions/libglx.so [ 5353.058] (II) Module glx: vendor="X.Org Foundation" [ 5353.058] compiled for 1.20.10, module version = 1.0.0 [ 5353.058] ABI class: X.Org Server Extension, version 10.0 [ 5353.058] (II) LoadModule: "qxl" [ 5353.058] (II) Loading /usr/lib64/xorg/modules/drivers/qxl_drv.so [ 5353.058] (II) Module qxl: vendor="X.Org Foundation" [ 5353.058] compiled for 1.20.10, module version = 0.1.5 [ 5353.058] Module class: X.Org Video Driver [ 5353.059] ABI class: X.Org Video Driver, version 24.1 [ 5353.059] (II) qxl: Driver for QXL virtual graphics: QXL 1 [ 5353.059] (EE) No devices detected. [ 5353.059] (EE) Fatal server error: [ 5353.059] (EE) no screens found(EE) [ 5353.059] (EE) Please consult the The X.Org Foundation support at http://wiki.x.org for help. [ 5353.059] (EE) Please also check the log file at "/var/log/Xorg.1.log" for additional information. [ 5353.059] (EE) [ 5353.061] (EE) Server terminated with error (1). Closing log file.
Hey guys, All of a sudden kmail is not working for me, saying "The Akonadi information management service is not operational". When I run "akonadictl start", it I get... Code: ➜ akonadictl start org.kde.pim.akonadictl: Starting Akonadi Server... org.kde.pim.akonadictl: done. Connecting to deprecated signal QDBusConnectionInterface::serviceOwnerChanged(QString,QString,QString) org.kde.pim.akonadiserver: Starting up the Akonadi Server... org.kde.pim.akonadiserver: database server stopped unexpectedly org.kde.pim.akonadiserver: Database process exited unexpectedly during initial connection! org.kde.pim.akonadiserver: executable: "/usr/sbin/mysqld" org.kde.pim.akonadiserver: arguments: ("--defaults-file=/home/mrturcot/.local/share/akonadi/mysql.conf", "--datadir=/home/mrturcot/.local/share/akonadi/db_data/", "--socket=/run/user/1000/akonadi/mysql.socket", "--pid-file=/run/user/1000/akonadi/mysql.pid") org.kde.pim.akonadiserver: stdout: "" org.kde.pim.akonadiserver: stderr: "2021-03-08 22:25:26 0 [Note] /usr/sbin/mysqld (mysqld 10.5.9-MariaDB) starting as process 6327 ... " org.kde.pim.akonadiserver: exit code: 1 org.kde.pim.akonadiserver: process error: "Unknown error" org.kde.pim.akonadiserver: Shutting down AkonadiServer... org.kde.pim.akonadicontrol: Application '/usr/bin/akonadiserver' exited normally... I'm not sure what process error: "Unknown error" is, or if it matters but any help would be super cool, thnx!
Maybe related to bug #688746
Solved: If you're using dwm, check workspace 9! I have a clean Gentoo install. X server has been set up. I am running it successfully and using dwm. I am posting this from links on xterm. I emerged firefox-bin. When running firefox-bin from the command line, I do not get a browser, nor any output. It is as if nothing happened, but looking at the running processes firefox sure is running. I tried running it with strace. It constantly outputs "EAGAIN (Resource temporarily unavailable)". There seems to be nothing relevant on dmesg nor Xorg.0.log. How should I proceed debugging this? PS: I tried starting it in safe-mode which should disable hardware acceleration among other things. I also tried removing .mozilla even though it's a clean install. My user is on the video group. I also tried strating it with -gfatal-warnings, --no-remote, --sync, -P, --alow-downgrade, --browser, and pretty much everything else, to no avail. It just fails quitly, the process is running but the browser itself does not opne. Other browsers like surf work, but I wish to use firefox. PPS: When running kill -IIL <firefox_PID> firefox opens a Window (finally!) saying it crashed and generates a crash report. Unfortunately it's not very useful as I still cannot use the browser itself.
what happens if you try the following: - start save mode firefox-bin --safe-mode - remove/rename manually the profile directory before starting - rm or mv /home/(user)/.mozilla?
Throws Code: (org.gnome.Nautilus:7838): GLib-GIO-WARNING **: 14:45:13.962: unable to send notifications through org.freedesktop.Notifications: GDBus.Error:org.freedesktop.DBus.Error.NoReply: Message recipient disconnected from message bus without replying at console when unmounting any iso, but only at first attempt. Further mount/unmout remain quiet. Code: [ebuild R ] gnome-base/nautilus-3.36.3::gentoo USE="-gnome -gstreamer -gtk-doc -introspection -previewer (-selinux) -sendto -test" 0 KiB Any idea how to fix? Thks 4 ur attention, interest & support.
Warning raised under LXDE. Testing under gnome gets notification working, which is about unmounting status. Guess I've got to find out the process nautilus is trying to notify to. Thks 4 ur attention, interest & support.
Hi, After updating mousepad to 0.5.2. I'm unable to use "select all", either by the shortcut (ctrl+A) or clicking in the menu "select all". Now the strange thing begins.. On my desktop (which uses GCC 10.2.0 and bdver2 march), there is no issue. Works as expected. It only happens on my laptop, which uses GCC 9.3.0 and core2 march.. Otherwise no difference between my systems, same profile (hardened), same packages and both are fully updated.. I tried to compile it with debug enabled and ran it with gdb but since it doesn't crash, it doesn't show much info. So legit bug ? Or something else ? edit : Made two gif to show the issue : https://i.ibb.co/T4STgQJ/core2.gif https://i.ibb.co/xXHkwKS/bdver2.gif Thanks
Thanks figueroa. Good to know I'm not an isolated case I filled a bug https://bugs.gentoo.org/772245 Actually I use leafpad as well, which is quite nice. Another good one although not in tree yet and with Qt deps : https://github.com/tsujan/FeatherPad
When I start gnome I get a desktop the has this message: Quote: Oh no! /something has gone wrong. A problem has occurred and the system ca't recover. Please log out and try again. Then a 'logout button'. The only thing on the desktop that starts is 'gnome-terminal'. Code: root@dt1:~# ps aux|grep gnome gene 97550 0.0 0.0 411260 17892 tty1 Sl 12:43 0:00 /usr/libexec/gnome-session-binary gene 97556 0.0 0.0 7764 2208 tty1 S 12:43 0:00 dbus-launch --exit-with-session /usr/libexec/gnome-session-binary gene 97601 0.0 0.0 385784 8476 tty1 SLl 12:43 0:00 /usr/bin/gnome-keyring-daemon --start --components=pkcs11 gene 97665 0.0 0.1 237976 37696 tty1 Sl 12:43 0:00 /usr/libexec/gnome-session-failed --allow-logout gene 97758 0.0 0.0 160632 6420 ? Sl 12:43 0:00 /usr/libexec/at-spi2-registryd --use-gnome-session gene 97799 0.0 0.1 822008 47740 tty1 Sl 12:43 0:00 /usr/bin/gnome-software --gapplication-service gene 97877 0.4 0.1 396864 46836 ? Sl 12:43 0:01 /usr/libexec/gnome-terminal-server root 103259 0.0 0.0 8088 688 pts/4 S+ 12:49 0:00 grep -i --color=auto gnome root@dt1:~# I can run things from the terminal. Whatever is started this way has focus and nothing else can have focus. I don't know where to start looking for clues. Help please. Thanks
This is a very open ended query... I can only give my experience when I got this before -- it was due to hardware failure. Turns out the hardware was causing gnome-shell to crash and it couldn't recover. Had to replace motherboard. Check you dmesg for possible video or hardware issues. If your hardware is good you should try re-merging gnome-shell to make sure it's not corrupt...caused by bad hardware...uh...
Hi, folks, So, I have a fairly reproducible issue when I come back from hibernate with my desktop - the screen goes black with a line or two of horizontal pixels at the bottom and vertical on the right. I still get input, so can unlock the screen, switch VT, switch back and the screen is back. The setup is: * Thinkpad X230 with i915 kernel module and i965 mesa drivers * Port replicator, so I'm using an external HDMI monitor in addition to the LCD panel * Wayland with wlroots based compositor hikari * Standard sys-power/suspend and elogind scripts to hibernate * Almost unrelated, but when I come back from hibernate, an elogind script rmmod's + modprobe's iwlwifi to force load firmware. Without this, I used to have proper GPU crashes that required a compositor restart Steps to reproduce: 1. Have laptop connected to HDMI monitor 2. Run world update and append && loginctl hibernate 3. With the laptop hibernating, remove it from its port replicator, which unplugs it from the HDMI monitor 4. Resume it (I need to unlock LUKS so the grub section and initrd work fairly well) 5. The screen goes blank as described, do the VT switch, restore screen The relevant bit in dmesg is: Code: [180476.616361] primary A assertion failure (expected off, current on) [180476.616397] WARNING: CPU: 0 PID: 13560 at drivers/gpu/drm/i915/display/intel_display.c:1301 0xffffffffc02cc9b5 [180476.616398] Modules linked in: iwldvm iwlwifi usb_storage btusb btintel bluetooth ecdh_generic ecc rndis_host cdc_ether usbnet mii nfsv3 nfs_acl auth_rpcgss nfsv4 dns_resolver nfs lockd grace sunrpc nfs_ssc vboxnetadp(O) vboxnetflt(O) vboxdrv(O) iptable_nat nf_nat snd_hda_codec_hdmi snd_hda_codec_realtek snd_hda_codec_generic uvcvideo videobuf2_vmalloc videobuf2_memops videobuf2_v4l2 videobuf2_common usbhid pkcs8_key_parser intel_rapl_msr intel_rapl_common x86_pkg_temp_thermal intel_powerclamp coretemp mac80211 libarc4 kvm_intel kvm irqbypass psmouse i915 cfg80211 intel_gtt i2c_algo_bit drm_kms_helper syscopyarea sysfillrect sysimgblt thinkpad_acpi snd_hda_intel snd_intel_dspcfg tpm_tis tpm_tis_core snd_hda_codec tpm snd_hwdep fb_sys_fops snd_hda_core e1000e drm ptp ehci_pci pps_core ehci_hcd i2c_i801 i2c_smbus [last unloaded: iwlwifi] [180476.616469] CPU: 0 PID: 13560 Comm: kworker/u8:8 Tainted: G W O 5.10.19-gentoo #1 [180476.616471] Hardware name: LENOVO 2325DV5/2325DV5, BIOS G2ETB7WW (2.77 ) 09/24/2019 [180476.616473] Workqueue: events_unbound 0xffffffffb80d1c90 [180476.616477] RIP: 0010:0xffffffffc02cc9b5 [180476.616480] Code: 84 c0 48 8b 73 18 48 c7 c2 8d fc 39 c0 49 89 c8 48 c7 c7 c8 1f 38 c0 4c 0f 44 c2 40 84 ed 48 0f 45 d1 4c 89 c1 e8 5f 09 4e f8 <0f> 0b e9 75 ff ff ff e8 ff 26 52 f8 66 66 2e 0f 1f 84 00 00 00 00 [180476.616482] RSP: 0018:ffffb54dc2c77b10 EFLAGS: 00010282 [180476.616485] RAX: 0000000000000000 RBX: ffffa1b29a653000 RCX: 0000000000000027 [180476.616486] RDX: 0000000000000027 RSI: 0000000000000092 RDI: ffffa1b58e217888 [180476.616488] RBP: 0000000000000000 R08: ffffa1b58e217880 R09: 0000000000000001 [180476.616489] R10: ffffffffb8e699e0 R11: ffffffffb8e3a588 R12: ffffa1b294d0b3e8 [180476.616491] R13: 0000000000000000 R14: ffffa1b296938000 R15: ffffa1b294d0b000 [180476.616493] FS: 0000000000000000(0000) GS:ffffa1b58e200000(0000) knlGS:0000000000000000 [180476.616495] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033 [180476.616496] CR2: 00005578433391f6 CR3: 000000021fe0c004 CR4: 00000000001706f0 [180476.616498] Call Trace: [180476.616505] 0xffffffffc02cfd13 [180476.616508] 0xffffffffc02d7cef [180476.616510] 0xffffffffc02dea25 [180476.616512] ? 0xffffffffb87f1c30 [180476.616513] ? 0xffffffffb8100705 [180476.616514] 0xffffffffc02d0a5c [180476.616516] ? 0xffffffffc02dd0f7 [180476.616518] 0xffffffffc02de002 [180476.616519] ? 0xffffffffb80ea45a [180476.616520] ? 0xffffffffb80c5ce3 [180476.616522] ? 0xffffffffb80c8171 [180476.616524] 0xffffffffc02de895 [180476.616526] 0xffffffffc01c25a9 [180476.616528] 0xffffffffc02e5997 [180476.616530] ? 0xffffffffb84197f0 [180476.616531] 0xffffffffc02eb81b [180476.616533] 0xffffffffc0241608 [180476.616535] 0xffffffffb84df384 [180476.616537] 0xffffffffb84df426 [180476.616539] 0xffffffffb84df4f4 [180476.616540] 0xffffffffb80d1cc2 [180476.616542] 0xffffffffb80c692c [180476.616544] 0xffffffffb80c7475 [180476.616546] ? 0xffffffffb80c7430 [180476.616547] 0xffffffffb80cc714 [180476.616548] ? 0xffffffffb80cc620 [180476.616550] 0xffffffffb8001082 [180476.616553] ---[ end trace 4c7513e26bd06688 ]--- [180476.621078] sd 0:0:0:0: [sda] Starting disk [180476.633187] tpm tpm0: TPM is disabled/deactivated (0x6) [180476.865629] ------------[ cut here ]------------ [180476.865633] primary A assertion failure (expected off, current on) [180476.865678] WARNING: CPU: 0 PID: 13560 at drivers/gpu/drm/i915/display/intel_display.c:1301 0xffffffffc02cc9b5 [180476.865680] Modules linked in: iwldvm iwlwifi usb_storage btusb btintel bluetooth ecdh_generic ecc rndis_host cdc_ether usbnet mii nfsv3 nfs_acl auth_rpcgss nfsv4 dns_resolver nfs lockd grace sunrpc nfs_ssc vboxnetadp(O) vboxnetflt(O) vboxdrv(O) iptable_nat nf_nat snd_hda_codec_hdmi snd_hda_codec_realtek snd_hda_codec_generic uvcvideo videobuf2_vmalloc videobuf2_memops videobuf2_v4l2 videobuf2_common usbhid pkcs8_key_parser intel_rapl_msr intel_rapl_common x86_pkg_temp_thermal intel_powerclamp coretemp mac80211 libarc4 kvm_intel kvm irqbypass psmouse i915 cfg80211 intel_gtt i2c_algo_bit drm_kms_helper syscopyarea sysfillrect sysimgblt thinkpad_acpi snd_hda_intel snd_intel_dspcfg tpm_tis tpm_tis_core snd_hda_codec tpm snd_hwdep fb_sys_fops snd_hda_core e1000e drm ptp ehci_pci pps_core ehci_hcd i2c_i801 i2c_smbus [last unloaded: iwlwifi] [180476.865757] CPU: 0 PID: 13560 Comm: kworker/u8:8 Tainted: G W O 5.10.19-gentoo #1 [180476.865758] Hardware name: LENOVO 2325DV5/2325DV5, BIOS G2ETB7WW (2.77 ) 09/24/2019 [180476.865761] Workqueue: events_unbound 0xffffffffb80d1c90 [180476.865765] RIP: 0010:0xffffffffc02cc9b5 [180476.865769] Code: 84 c0 48 8b 73 18 48 c7 c2 8d fc 39 c0 49 89 c8 48 c7 c7 c8 1f 38 c0 4c 0f 44 c2 40 84 ed 48 0f 45 d1 4c 89 c1 e8 5f 09 4e f8 <0f> 0b e9 75 ff ff ff e8 ff 26 52 f8 66 66 2e 0f 1f 84 00 00 00 00 [180476.865771] RSP: 0018:ffffb54dc2c77c20 EFLAGS: 00010282 [180476.865774] RAX: 0000000000000000 RBX: ffffa1b29a653000 RCX: 0000000000000027 [180476.865775] RDX: 0000000000000027 RSI: 0000000000000096 RDI: ffffa1b58e217888 [180476.865777] RBP: 0000000000000000 R08: ffffa1b58e217880 R09: 0000000000000001 [180476.865779] R10: ffffffffb8e69e78 R11: ffffffffb8e3a588 R12: ffffa1b296938000 [180476.865780] R13: ffffa1b296938000 R14: ffffa1b487f92000 R15: ffffa1b2812d2800 [180476.865783] FS: 0000000000000000(0000) GS:ffffa1b58e200000(0000) knlGS:0000000000000000 [180476.865785] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033 [180476.865787] CR2: 00005578433391f6 CR3: 000000021fe0c004 CR4: 00000000001706f0 [180476.865788] Call Trace: [180476.865797] 0xffffffffc02de0f3 [180476.865801] ? 0xffffffffb80c8171 [180476.865803] 0xffffffffc02de895 [180476.865806] 0xffffffffc01c25a9 [180476.865808] 0xffffffffc02e5997 [180476.865810] ? 0xffffffffb84197f0 [180476.865811] 0xffffffffc02eb81b [180476.865813] 0xffffffffc0241608 [180476.865816] 0xffffffffb84df384 [180476.865818] 0xffffffffb84df426 [180476.865819] 0xffffffffb84df4f4 [180476.865821] 0xffffffffb80d1cc2 [180476.865823] 0xffffffffb80c692c [180476.865824] 0xffffffffb80c7475 [180476.865826] ? 0xffffffffb80c7430 [180476.865827] 0xffffffffb80cc714 [180476.865829] ? 0xffffffffb80cc620 [180476.865831] 0xffffffffb8001082 [180476.865834] ---[ end trace 4c7513e26bd06689 ]--- If any of you have encountered this issue (I know that there are old similar ones, but couldn't see any idea/resolution), please give me a hint. Alternatively, I am interested in taking this upstream, but I'm not exactly sure where (freedesktop?). While writing this post, I thought about: * Adding a bit of time between world update finishes and loginctl hibernate - I know this would be sidestepping the problem, but many things have been resolved in a similar way * Instead of running rmmod+modprobe when I come back from resume, run rmmod before I resume and then modprobe when I come back. LAST UPDATE: I have just accepted that this is a very rare hardware error, that is reported in some kernel bugs, and that it surfaces more if I undock or dock my laptop while it's asleep. I stopped doing the latter and the situation is a lot more stable, however the problem happens occasionally. Thanks! Gabriel
gabrielg wrote: While writing this post, I thought about: * Adding a bit of time between world update finishes and loginctl hibernate - I know this would be sidestepping the problem, but many things have been resolved in a similar way This didn't make any difference gabrielg wrote: * Instead of running rmmod+modprobe when I come back from resume, run rmmod before I resume and then modprobe when I come back. This didn't make any difference either, although I'll leave it like this as I like it a bit more Another thing I observe in dmesg is this: Code: [255425.308534] dmar_fault: 5 callbacks suppressed [255425.308536] DMAR: DRHD: handling fault status reg 2 [255425.308540] DMAR: [DMA Write] Request device [00:02.0] PASID ffffffff fault addr b9d50000 [fault reason 05] PTE Write access is not set [255425.310279] DMAR: DRHD: handling fault status reg 2 [255425.310283] DMAR: [DMA Write] Request device [00:02.0] PASID ffffffff fault addr d6194000 [fault reason 05] PTE Write access is not set ... [255425.565939] DMAR: DRHD: handling fault status reg 2 [255425.565944] DMAR: [DMA Write] Request device [00:02.0] PASID ffffffff fault addr ac8f8000 [fault reason 05] PTE Write access is not set [255426.149103] i915 0000:00:02.0: [drm] *ERROR* uncleared fifo underrun on pipe B [255426.149108] i915 0000:00:02.0: [drm] *ERROR* CPU pipe B FIFO underrun [255426.149201] i915 0000:00:02.0: [drm] *ERROR* uncleared pch fifo underrun on pch transcoder B [255426.149204] i915 0000:00:02.0: [drm] *ERROR* PCH transcoder B FIFO underrun Any clues as to where to report this upstream? Thanks! Gabriel
Hi, i recently installed lyx and it all seems to work fine apart from the fact any graphic(pdf, jpg) i insert into the document doesnt load and instead shows the error Code: Error converting to loadable format in the console it shows this error: Code: Traceback (most recent call last): File "/usr/share/lyx/scripts/convertDefault.py", line 68, in <module> if sys.argv[3] == 'ppm' and (im and version >= 0x060305 or gm): TypeError: '>=' not supported between instances of 'str' and 'int' My USE flags for lyx are the default: Code: USE="hunspell latex nls -X -aspell -cups -debug -dia -dot -enchant -gnumeric -html -monolithic-build -rcs -rtf -svg" L10N="-he" PYTHON_SINGLE_TARGET="python3_8 -python3_7 -python3_9" 0 KiB any idea what im doing wrong? Cheers, Freddie
What version you installed?
After a reboot, X will not start on my system. I have gone back a kernel version with no good result. The system uses MATE and OpenRC. My system only has a Displayport output and I use an adapter from Displayport to DVI: https://www.asrock.com/mb/AMD/Fatal1ty%20B450%20Gaming-ITXac/ Here is the Xorg.0.log: Code: [ 121.218] X.Org X Server 1.20.10 X Protocol Version 11, Revision 0 [ 121.218] Build Operating System: Linux 4.19.82-gentoo-systemd x86_64 Gentoo [ 121.218] Current Operating System: Linux simon-itx-mate 5.4.72 #1 SMP Sat Oct 17 14:25:06 -00 2020 x86_64 [ 121.218] Kernel command line: BOOT_IMAGE=/boot/vmlinuz root=/dev/sda1 ro rootfstype=ext4 module_blacklist=radeon [ 121.218] Build Date: 18 January 2021 11:36:58PM [ 121.218] [ 121.218] Current version of pixman: 0.40.0 [ 121.218] Before reporting problems, check http://wiki.x.org to make sure that you have the latest version. [ 121.218] Markers: (--) probed, (**) from config file, (==) default setting, (++) from command line, (!!) notice, (II) informational, (WW) warning, (EE) error, (NI) not implemented, (??) unknown. [ 121.218] (==) Log file: "/var/log/Xorg.0.log", Time: Thu Feb 18 18:40:50 2021 [ 121.218] (==) Using config directory: "/etc/X11/xorg.conf.d" [ 121.218] (==) Using system config directory "/usr/share/X11/xorg.conf.d" [ 121.218] (==) No Layout section. Using the first Screen section. [ 121.218] (==) No screen section available. Using defaults. [ 121.218] (**) |-->Screen "Default Screen Section" (0) [ 121.219] (**) | |-->Monitor "<default monitor>" [ 121.219] (==) No monitor specified for screen "Default Screen Section". Using a default monitor configuration. [ 121.219] (==) Automatically adding devices [ 121.219] (==) Automatically enabling devices [ 121.219] (==) Automatically adding GPU devices [ 121.219] (==) Max clients allowed: 256, resource mask: 0x1fffff [ 121.219] (WW) The directory "/usr/share/fonts/TTF/" does not exist. [ 121.219] Entry deleted from font path. [ 121.219] (WW) The directory "/usr/share/fonts/OTF/" does not exist. [ 121.219] Entry deleted from font path. [ 121.219] (==) FontPath set to: /usr/share/fonts/misc/, /usr/share/fonts/Type1/, /usr/share/fonts/100dpi/, /usr/share/fonts/75dpi/ [ 121.219] (==) ModulePath set to "/usr/lib64/xorg/modules" [ 121.219] (II) The server relies on udev to provide the list of input devices. If no devices become available, reconfigure udev or disable AutoAddDevices. [ 121.219] (II) Loader magic: 0x55759f464ce0 [ 121.219] (II) Module ABI versions: [ 121.219] X.Org ANSI C Emulation: 0.4 [ 121.219] X.Org Video Driver: 24.1 [ 121.219] X.Org XInput driver : 24.1 [ 121.219] X.Org Server Extension : 10.0 [ 121.220] (++) using VT number 7 [ 121.220] (II) systemd-logind: logind integration requires -keeptty and -keeptty was not provided, disabling logind integration [ 121.220] (II) xfree86: Adding drm device (/dev/dri/card0) [ 121.241] (--) PCI:*(9@0:0:0) 1002:15dd:1002:15dd rev 200, Mem @ 0xe0000000/268435456, 0xf0000000/2097152, 0xfcb00000/524288, I/O @ 0x0000e000/256, BIOS @ 0x????????/131072 [ 121.241] (II) LoadModule: "glx" [ 121.241] (II) Loading /usr/lib64/xorg/modules/extensions/libglx.so [ 121.242] (II) Module glx: vendor="X.Org Foundation" [ 121.242] compiled for 1.20.10, module version = 1.0.0 [ 121.242] ABI class: X.Org Server Extension, version 10.0 [ 121.242] (II) Applying OutputClass "AMDgpu" to /dev/dri/card0 [ 121.242] loading driver: amdgpu [ 121.242] (==) Matched amdgpu as autoconfigured driver 0 [ 121.242] (==) Matched ati as autoconfigured driver 1 [ 121.242] (==) Matched modesetting as autoconfigured driver 2 [ 121.242] (==) Matched fbdev as autoconfigured driver 3 [ 121.242] (==) Matched vesa as autoconfigured driver 4 [ 121.242] (==) Assigned the driver to the xf86ConfigLayout [ 121.242] (II) LoadModule: "amdgpu" [ 121.242] (II) Loading /usr/lib64/xorg/modules/drivers/amdgpu_drv.so [ 121.242] (II) Module amdgpu: vendor="X.Org Foundation" [ 121.242] compiled for 1.20.10, module version = 19.1.0 [ 121.242] Module class: X.Org Video Driver [ 121.242] ABI class: X.Org Video Driver, version 24.1 [ 121.242] (II) LoadModule: "ati" [ 121.242] (II) Loading /usr/lib64/xorg/modules/drivers/ati_drv.so [ 121.242] (II) Module ati: vendor="X.Org Foundation" [ 121.243] compiled for 1.20.10, module version = 19.1.0 [ 121.243] Module class: X.Org Video Driver [ 121.243] ABI class: X.Org Video Driver, version 24.1 [ 121.253] (II) LoadModule: "modesetting" [ 121.253] (II) Loading /usr/lib64/xorg/modules/drivers/modesetting_drv.so [ 121.253] (II) Module modesetting: vendor="X.Org Foundation" [ 121.253] compiled for 1.20.10, module version = 1.20.10 [ 121.253] Module class: X.Org Video Driver [ 121.253] ABI class: X.Org Video Driver, version 24.1 [ 121.253] (II) LoadModule: "fbdev" [ 121.253] (WW) Warning, couldn't open module fbdev [ 121.253] (EE) Failed to load module "fbdev" (module does not exist, 0) [ 121.253] (II) LoadModule: "vesa" [ 121.253] (II) Loading /usr/lib64/xorg/modules/drivers/vesa_drv.so [ 121.254] (II) Module vesa: vendor="X.Org Foundation" [ 121.254] compiled for 1.20.10, module version = 2.5.0 [ 121.254] Module class: X.Org Video Driver [ 121.254] ABI class: X.Org Video Driver, version 24.1 [ 121.254] (II) AMDGPU: Driver for AMD Radeon: All GPUs supported by the amdgpu kernel driver [ 121.254] (II) modesetting: Driver for Modesetting Kernel Drivers: kms [ 121.254] (II) VESA: driver for VESA chipsets: vesa [ 121.254] (WW) xf86OpenConsole: setpgid failed: Operation not permitted [ 121.254] (WW) xf86OpenConsole: setsid failed: Operation not permitted [ 121.278] (II) AMDGPU(0): [KMS] Kernel modesetting enabled. [ 121.278] (WW) Falling back to old probe method for modesetting [ 121.279] (II) AMDGPU(0): Creating default Display subsection in Screen section "Default Screen Section" for depth/fbbpp 24/32 [ 121.279] (==) AMDGPU(0): Depth 24, (--) framebuffer bpp 32 [ 121.279] (II) AMDGPU(0): Pixel depth = 24 bits stored in 4 bytes (32 bpp pixmaps) [ 121.279] (==) AMDGPU(0): Default visual is TrueColor [ 121.279] (==) AMDGPU(0): RGB weight 888 [ 121.279] (II) AMDGPU(0): Using 8 bits per RGB (8 bit DAC) [ 121.279] (--) AMDGPU(0): Chipset: "AMD Radeon(TM) Vega 8 Graphics" (ChipID = 0x15dd) [ 121.279] (II) Loading sub module "fb" [ 121.279] (II) LoadModule: "fb" [ 121.279] (II) Loading /usr/lib64/xorg/modules/libfb.so [ 121.279] (II) Module fb: vendor="X.Org Foundation" [ 121.279] compiled for 1.20.10, module version = 1.0.0 [ 121.279] ABI class: X.Org ANSI C Emulation, version 0.4 [ 121.279] (II) Loading sub module "dri2" [ 121.279] (II) LoadModule: "dri2" [ 121.279] (II) Module "dri2" already built-in [ 121.305] (II) Loading sub module "glamoregl" [ 121.305] (II) LoadModule: "glamoregl" [ 121.305] (II) Loading /usr/lib64/xorg/modules/libglamoregl.so [ 121.307] (II) Module glamoregl: vendor="X.Org Foundation" [ 121.307] compiled for 1.20.10, module version = 1.0.1 [ 121.307] ABI class: X.Org ANSI C Emulation, version 0.4 [ 121.315] (II) AMDGPU(0): Refusing to try glamor on llvmpipe [ 121.316] (EE) AMDGPU(0): glamor detected, failed to initialize EGL. [ 121.316] (WW) AMDGPU(0): amdgpu_glamor_pre_init returned FALSE, using ShadowFB [ 121.316] (II) Loading sub module "shadow" [ 121.316] (II) LoadModule: "shadow" [ 121.316] (II) Loading /usr/lib64/xorg/modules/libshadow.so [ 121.316] (II) Module shadow: vendor="X.Org Foundation" [ 121.316] compiled for 1.20.10, module version = 1.1.0 [ 121.316] ABI class: X.Org ANSI C Emulation, version 0.4 [ 121.316] (II) AMDGPU(0): KMS Pageflipping: enabled [ 121.316] (II) AMDGPU(0): Output DisplayPort-0 has no monitor section [ 121.316] (II) AMDGPU(0): Output HDMI-A-0 has no monitor section [ 121.316] (II) AMDGPU(0): Output HDMI-A-1 has no monitor section [ 121.316] (II) AMDGPU(0): Output HDMI-A-2 has no monitor section [ 121.320] (II) AMDGPU(0): EDID for output DisplayPort-0 [ 121.320] (II) AMDGPU(0): Manufacturer: DEL Model: a026 Serial#: 825771091 [ 121.320] (II) AMDGPU(0): Year: 2007 Week: 35 [ 121.320] (II) AMDGPU(0): EDID Version: 1.3 [ 121.320] (II) AMDGPU(0): Digital Display Input [ 121.320] (II) AMDGPU(0): Max Image Size [cm]: horiz.: 52 vert.: 33 [ 121.320] (II) AMDGPU(0): Gamma: 2.20 [ 121.320] (II) AMDGPU(0): DPMS capabilities: StandBy Suspend Off [ 121.320] (II) AMDGPU(0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4 [ 121.320] (II) AMDGPU(0): Default color space is primary color space [ 121.320] (II) AMDGPU(0): First detailed timing is preferred mode [ 121.320] (II) AMDGPU(0): redX: 0.662 redY: 0.329 greenX: 0.205 greenY: 0.683 [ 121.320] (II) AMDGPU(0): blueX: 0.146 blueY: 0.077 whiteX: 0.313 whiteY: 0.329 [ 121.320] (II) AMDGPU(0): Supported established timings: [ 121.320] (II) AMDGPU(0): 720x400@70Hz [ 121.320] (II) AMDGPU(0): 640x480@60Hz [ 121.320] (II) AMDGPU(0): 640x480@75Hz [ 121.320] (II) AMDGPU(0): 800x600@60Hz [ 121.320] (II) AMDGPU(0): 800x600@75Hz [ 121.320] (II) AMDGPU(0): 1024x768@60Hz [ 121.320] (II) AMDGPU(0): 1024x768@75Hz [ 121.320] (II) AMDGPU(0): 1280x1024@75Hz [ 121.320] (II) AMDGPU(0): Manufacturer's mask: 0 [ 121.320] (II) AMDGPU(0): Supported standard timings: [ 121.320] (II) AMDGPU(0): #0: hsize: 1280 vsize 1024 refresh: 60 vid: 32897 [ 121.320] (II) AMDGPU(0): #1: hsize: 1600 vsize 1200 refresh: 60 vid: 16553 [ 121.320] (II) AMDGPU(0): #2: hsize: 1152 vsize 864 refresh: 75 vid: 20337 [ 121.320] (II) AMDGPU(0): #3: hsize: 1680 vsize 1050 refresh: 60 vid: 179 [ 121.320] (II) AMDGPU(0): Supported detailed timing: [ 121.320] (II) AMDGPU(0): clock: 154.0 MHz Image Size: 519 x 324 mm [ 121.320] (II) AMDGPU(0): h_active: 1920 h_sync: 1968 h_sync_end 2000 h_blank_end 2080 h_border: 0 [ 121.320] (II) AMDGPU(0): v_active: 1200 v_sync: 1203 v_sync_end 1209 v_blanking: 1235 v_border: 0 [ 121.320] (II) AMDGPU(0): Serial No: GM50478S18DS [ 121.320] (II) AMDGPU(0): Monitor name: DELL2407WFPHC [ 121.320] (II) AMDGPU(0): Ranges: V min: 56 V max: 76 Hz, H min: 30 H max: 83 kHz, PixClock max 175 MHz [ 121.320] (II) AMDGPU(0): EDID (in hex): [ 121.320] (II) AMDGPU(0): 00ffffffffffff0010ac26a053443831 [ 121.320] (II) AMDGPU(0): 2311010380342178ee9bb5a95434ae25 [ 121.320] (II) AMDGPU(0): 135054a54b008180a940714fb3000101 [ 121.320] (II) AMDGPU(0): 010101010101283c80a070b023403020 [ 121.320] (II) AMDGPU(0): 360007442100001a000000ff00474d35 [ 121.320] (II) AMDGPU(0): 30343738533138445320000000fc0044 [ 121.320] (II) AMDGPU(0): 454c4c323430375746504843000000fd [ 121.320] (II) AMDGPU(0): 00384c1e5311000a2020202020200061 [ 121.320] (II) AMDGPU(0): Printing probed modes for output DisplayPort-0 [ 121.320] (II) AMDGPU(0): Modeline "1920x1200"x60.0 154.00 1920 1968 2000 2080 1200 1203 1209 1235 +hsync -vsync (74.0 kHz eP) [ 121.320] (II) AMDGPU(0): Modeline "1920x1080"x60.0 154.00 1920 1968 2000 2080 1080 1203 1209 1235 +hsync -vsync (74.0 kHz e) [ 121.320] (II) AMDGPU(0): Modeline "1600x1200"x60.0 162.00 1600 1664 1856 2160 1200 1201 1204 1250 +hsync +vsync (75.0 kHz e) [ 121.320] (II) AMDGPU(0): Modeline "1680x1050"x59.9 119.00 1680 1728 1760 1840 1050 1053 1059 1080 +hsync -vsync (64.7 kHz e) [ 121.320] (II) AMDGPU(0): Modeline "1280x1024"x75.0 135.00 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync (80.0 kHz e) [ 121.320] (II) AMDGPU(0): Modeline "1280x1024"x60.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz e) [ 121.320] (II) AMDGPU(0): Modeline "1440x900"x60.0 154.00 1440 1968 2000 2080 900 1203 1209 1235 +hsync -vsync (74.0 kHz e) [ 121.320] (II) AMDGPU(0): Modeline "1280x800"x60.0 154.00 1280 1968 2000 2080 800 1203 1209 1235 +hsync -vsync (74.0 kHz e) [ 121.320] (II) AMDGPU(0): Modeline "1152x864"x75.0 108.00 1152 1216 1344 1600 864 865 868 900 +hsync +vsync (67.5 kHz e) [ 121.320] (II) AMDGPU(0): Modeline "1280x720"x60.0 154.00 1280 1968 2000 2080 720 1203 1209 1235 +hsync -vsync (74.0 kHz e) [ 121.320] (II) AMDGPU(0): Modeline "1024x768"x75.0 78.75 1024 1040 1136 1312 768 769 772 800 +hsync +vsync (60.0 kHz e) [ 121.320] (II) AMDGPU(0): Modeline "1024x768"x60.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz e) [ 121.320] (II) AMDGPU(0): Modeline "800x600"x75.0 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync (46.9 kHz e) [ 121.320] (II) AMDGPU(0): Modeline "800x600"x60.3 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz e) [ 121.320] (II) AMDGPU(0): Modeline "640x480"x75.0 31.50 640 656 720 840 480 481 484 500 -hsync -vsync (37.5 kHz e) [ 121.320] (II) AMDGPU(0): Modeline "640x480"x59.9 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz e) [ 121.320] (II) AMDGPU(0): Modeline "720x400"x70.1 28.32 720 738 846 900 400 412 414 449 -hsync +vsync (31.5 kHz e) [ 121.320] (II) AMDGPU(0): EDID for output HDMI-A-0 [ 121.320] (II) AMDGPU(0): EDID for output HDMI-A-1 [ 121.320] (II) AMDGPU(0): EDID for output HDMI-A-2 [ 121.320] (II) AMDGPU(0): Output DisplayPort-0 connected [ 121.320] (II) AMDGPU(0): Output HDMI-A-0 disconnected [ 121.320] (II) AMDGPU(0): Output HDMI-A-1 disconnected [ 121.320] (II) AMDGPU(0): Output HDMI-A-2 disconnected [ 121.320] (II) AMDGPU(0): Using exact sizes for initial modes [ 121.320] (II) AMDGPU(0): Output DisplayPort-0 using initial mode 1920x1200 +0+0 [ 121.320] (II) AMDGPU(0): mem size init: gart size :bfb9f000 vram size: s:7e761000 visible:7e761000 [ 121.320] (==) AMDGPU(0): DPI set to (96, 96) [ 121.320] (==) AMDGPU(0): Using gamma correction (1.0, 1.0, 1.0) [ 121.320] (II) Loading sub module "ramdac" [ 121.320] (II) LoadModule: "ramdac" [ 121.320] (II) Module "ramdac" already built-in [ 121.321] (II) UnloadModule: "modesetting" [ 121.321] (II) Unloading modesetting [ 121.321] (II) UnloadModule: "vesa" [ 121.321] (II) Unloading vesa [ 121.322] (II) AMDGPU(0): Front buffer pitch: 7680 bytes [ 121.322] (==) AMDGPU(0): DRI3 disabled [ 121.322] (==) AMDGPU(0): Backing store enabled [ 121.322] (WW) AMDGPU(0): Direct rendering disabled [ 121.322] (II) AMDGPU(0): 2D and 3D acceleration disabled [ 121.322] (==) AMDGPU(0): DPMS enabled [ 121.322] (==) AMDGPU(0): Silken mouse enabled [ 121.337] (II) Initializing extension Generic Event Extension [ 121.337] (II) Initializing extension SHAPE [ 121.337] (II) Initializing extension MIT-SHM [ 121.337] (II) Initializing extension XInputExtension [ 121.337] (II) Initializing extension XTEST [ 121.337] (II) Initializing extension BIG-REQUESTS [ 121.337] (II) Initializing extension SYNC [ 121.337] (II) Initializing extension XKEYBOARD [ 121.337] (II) Initializing extension XC-MISC [ 121.337] (II) Initializing extension XFIXES [ 121.337] (II) Initializing extension RENDER [ 121.337] (II) Initializing extension RANDR [ 121.338] (II) Initializing extension COMPOSITE [ 121.338] (II) Initializing extension DAMAGE [ 121.338] (II) Initializing extension MIT-SCREEN-SAVER [ 121.338] (II) Initializing extension DOUBLE-BUFFER [ 121.338] (II) Initializing extension RECORD [ 121.338] (II) Initializing extension DPMS [ 121.338] (II) Initializing extension Present [ 121.338] (II) Initializing extension DRI3 [ 121.338] (II) Initializing extension X-Resource [ 121.338] (II) Initializing extension XVideo [ 121.338] (II) Initializing extension XVideo-MotionCompensation [ 121.338] (II) Initializing extension GLX [ 121.338] (II) AIGLX: Screen 0 is not DRI2 capable [ 121.345] (II) IGLX: Loaded and initialized swrast [ 121.345] (II) GLX: Initialized DRISWRAST GL provider for screen 0 [ 121.345] (II) Initializing extension XFree86-VidModeExtension [ 121.345] (II) Initializing extension XFree86-DGA [ 121.345] (II) Initializing extension XFree86-DRI [ 121.345] (II) Initializing extension DRI2 [ 121.345] (II) AMDGPU(0): Setting screen physical size to 508 x 317 [ 121.362] (EE) [ 121.362] (EE) Backtrace: [ 121.362] (EE) 0: /usr/bin/X (xorg_backtrace+0x4d) [0x55759f3d842d] [ 121.362] (EE) 1: /usr/bin/X (0x55759f22d000+0x1af138) [0x55759f3dc138] [ 121.362] (EE) 2: /lib64/libpthread.so.0 (0x7f633db46000+0x127e0) [0x7f633db587e0] [ 121.362] (EE) 3: /lib64/libc.so.6 (gsignal+0x141) [0x7f633d9c3a21] [ 121.362] (EE) 4: /lib64/libc.so.6 (abort+0x112) [0x7f633d9ad536] [ 121.362] (EE) 5: /lib64/libc.so.6 (0x7f633d98b000+0x2241f) [0x7f633d9ad41f] [ 121.362] (EE) 6: /lib64/libc.so.6 (0x7f633d98b000+0x314d2) [0x7f633d9bc4d2] [ 121.362] (EE) 7: /usr/lib64/xorg/modules/drivers/amdgpu_drv.so (0x7f633e325000+0x8ef3) [0x7f633e32def3] [ 121.362] (EE) 8: /usr/lib64/xorg/modules/drivers/amdgpu_drv.so (0x7f633e325000+0x923e) [0x7f633e32e23e] [ 121.362] (EE) 9: /usr/lib64/xorg/modules/drivers/amdgpu_drv.so (0x7f633e325000+0x182e5) [0x7f633e33d2e5] [ 121.362] (EE) 10: /usr/lib64/xorg/modules/drivers/amdgpu_drv.so (0x7f633e325000+0x1a157) [0x7f633e33f157] [ 121.362] (EE) 11: /usr/bin/X (MapWindow+0x204) [0x55759f2af544] [ 121.362] (EE) 12: /usr/bin/X (0x55759f22d000+0x5b2e5) [0x55759f2882e5] [ 121.362] (EE) 13: /lib64/libc.so.6 (__libc_start_main+0xeb) [0x7f633d9aee6b] [ 121.362] (EE) 14: /usr/bin/X (_start+0x2a) [0x55759f2721aa] [ 121.362] (EE) [ 121.362] (EE) Fatal server error: [ 121.362] (EE) Caught signal 6 (Aborted). Server aborting [ 121.362] (EE) [ 121.362] (EE) Please consult the The X.Org Foundation support at http://wiki.x.org for help. [ 121.362] (EE) Please also check the log file at "/var/log/Xorg.0.log" for additional information. [ 121.362] (EE) [ 121.428] (EE) Server terminated with error (1). Closing log file. Emerge info: Code: $ emerge --info /usr/lib/python3.8/site-packages/portage/package/ebuild/_config/KeywordsManager.py:67: UserWarning: /etc/portage/package.keywords is deprecated, use /etc/portage/package.accept_keywords instead warnings.warn(_("%s is deprecated, use %s instead") % Portage 3.0.13 (python 3.8.7-final-0, default/linux/amd64/17.1, gcc-9.3.0, glibc-2.32-r6, 5.4.72 x86_64) ================================================================= System uname: Linux-5.4.72-x86_64-AMD_Ryzen_3_2200G_with_Radeon_Vega_Graphics-with-glibc2.2.5 KiB Mem: 14253972 total, 6384284 free KiB Swap: 10485756 total, 10485756 free Timestamp of repository gentoo: Tue, 09 Feb 2021 02:30:01 +0000 Head commit of repository gentoo: 6f1a890c16c3aa65e45aa285f1bdfe9de8217c69 Head commit of repository java: f86680ac4918e2ef986ba518d5b78028153a3907 Head commit of repository nx: f1e8a1e5ab44439275a274d1e5ec4ac9cd857b2f Head commit of repository yurij-overlay: 7d0d8f3ef5e02c663f32021319b0f4756e664a47 sh bash 5.0_p18 ld GNU ld (Gentoo 2.34 p6) 2.34.0 app-shells/bash: 5.0_p18::gentoo dev-java/java-config: 2.3.1::gentoo dev-lang/perl: 5.30.3::gentoo dev-lang/python: 3.7.9-r2::gentoo, 3.8.7-r1::gentoo, 3.9.1-r1::gentoo dev-util/cmake: 3.18.5::gentoo dev-util/pkgconfig: 0.29.2::gentoo sys-apps/baselayout: 2.7::gentoo sys-apps/openrc: 0.42.1-r1::gentoo sys-apps/sandbox: 2.20::gentoo sys-devel/autoconf: 2.13-r1::gentoo, 2.69-r5::gentoo sys-devel/automake: 1.13.4-r2::gentoo, 1.16.2-r1::gentoo sys-devel/binutils: 2.34-r2::gentoo, 2.35.1-r1::gentoo sys-devel/gcc: 9.3.0-r2::gentoo sys-devel/gcc-config: 2.3.2-r1::gentoo sys-devel/libtool: 2.4.6-r6::gentoo sys-devel/make: 4.3::gentoo sys-kernel/linux-headers: 5.4-r1::gentoo (virtual/os-headers) sys-libs/glibc: 2.32-r6::gentoo Repositories: gentoo location: /usr/portage sync-type: rsync sync-uri: rsync://rsync.gentoo.org/gentoo-portage priority: -1000 sync-rsync-extra-opts: sync-rsync-verify-metamanifest: yes sync-rsync-verify-max-age: 24 sync-rsync-verify-jobs: 1 localrepo location: /home/localrepo masters: gentoo java location: /var/lib/layman/java sync-type: git sync-uri: git://anongit.gentoo.org/proj/java.git masters: gentoo priority: 50 nx location: /var/lib/layman/nx sync-type: git sync-uri: https://anongit.gentoo.org/git/proj/nx.git masters: gentoo priority: 50 yurij-overlay location: /var/lib/layman/yurij-overlay sync-type: git sync-uri: https://github.com/yurijmikhalevich/yurij-overlay.git masters: gentoo priority: 50 ACCEPT_KEYWORDS="amd64" ACCEPT_LICENSE="*" CBUILD="x86_64-pc-linux-gnu" CFLAGS="-O2 -pipe -mtune=generic" CHOST="x86_64-pc-linux-gnu" CONFIG_PROTECT="/etc /usr/share/config /usr/share/gnupg/qualified.txt /usr/share/maven-bin-3.6/conf /var/bind" CONFIG_PROTECT_MASK="/etc/ca-certificates.conf /etc/dconf /etc/env.d /etc/fonts/fonts.conf /etc/gconf /etc/gentoo-release /etc/revdep-rebuild /etc/sandbox.d /etc/terminfo /etc/texmf/language.dat.d /etc/texmf/language.def.d /etc/texmf/updmap.d /etc/texmf/web2c" CXXFLAGS="-O2 -pipe -mtune=generic" DISTDIR="/usr/portage/distfiles" ENV_UNSET="CARGO_HOME DBUS_SESSION_BUS_ADDRESS DISPLAY GOBIN GOPATH PERL5LIB PERL5OPT PERLPREFIX PERL_CORE PERL_MB_OPT PERL_MM_OPT XAUTHORITY XDG_CACHE_HOME XDG_CONFIG_HOME XDG_DATA_HOME XDG_RUNTIME_DIR" FCFLAGS="-O2 -pipe" FEATURES="assume-digests binpkg-docompress binpkg-dostrip binpkg-logs config-protect-if-modified distlocks ebuild-locks fixlafiles ipc-sandbox merge-sync multilib-strict network-sandbox news parallel-fetch pid-sandbox preserve-libs protect-owned qa-unresolved-soname-deps sandbox sfperms strict unknown-features-warn unmerge-logs unmerge-orphans userfetch userpriv usersandbox usersync xattr" FFLAGS="-O2 -pipe" GENTOO_MIRRORS="http://distfiles.gentoo.org" LANG="en_US.utf8" LDFLAGS="-Wl,-O1 -Wl,--as-needed" PKGDIR="/usr/portage/packages" PORTAGE_CONFIGROOT="/" PORTAGE_RSYNC_OPTS="--recursive --links --safe-links --perms --times --omit-dir-times --compress --force --whole-file --delete --stats --human-readable --timeout=180 --exclude=/distfiles --exclude=/local --exclude=/packages --exclude=/.git" PORTAGE_TMPDIR="/var/tmp" USE="3dnow X acl alsa amd64 apm berkdb bluetooth bzip2 cdr cli crypt cups dbus dri dv dvd dvdr dvdread elogind esd fortran gdbm gimpprint gphoto2 iconv ipv6 jpeg libglvnd libtirpc lm_sensors logrotate mbox mjpeg mmx mp3 mpeg mtp multilib ncurses nls nptl ogg openmp pam pcre png ppds pulseaudio python readline samba seccomp split-usr sse sse2 ssl swat sync-plugin-portage tcpd tiff truetype unicode usb vcd vim-syntax wmf x265 xattr zlib" ABI_X86="64 32" ADA_TARGET="gnat_2018" ALSA_CARDS="intel8x0" APACHE2_MODULES="authn_core authz_core socache_shmcb unixd actions alias auth_basic authn_alias authn_anon authn_dbm authn_default authn_file authz_dbm authz_default authz_groupfile authz_host authz_owner authz_user autoindex cache cgi cgid dav dav_fs dav_lock deflate dir disk_cache env expires ext_filter file_cache filter headers include info log_config logio mem_cache mime mime_magic negotiation rewrite setenvif speling status unique_id userdir usertrack vhost_alias" CALLIGRA_FEATURES="karbon sheets words" COLLECTD_PLUGINS="df interface irq load memory rrdtool swap syslog" CPU_FLAGS_X86="aes avx avx2 f16c fma3 mmx mmxext pclmul popcnt sha sse sse2 sse3 sse4_1 sse4_2 sse4a ssse3" ELIBC="glibc" GPSD_PROTOCOLS="ashtech aivdm earthmate evermore fv18 garmin garmintxt gpsclock greis isync itrax mtk3301 nmea ntrip navcom oceanserver oldstyle oncore rtcm104v2 rtcm104v3 sirf skytraq superstar2 timing tsip tripmate tnt ublox ubx" GRUB_PLATFORMS="efi-64 pc" INPUT_DEVICES="evdev keyboard mouse" KERNEL="linux" LCD_DEVICES="bayrad cfontz cfontz633 glk hd44780 lb216 lcdm001 mtxorb ncurses text" LIBREOFFICE_EXTENSIONS="presenter-console presenter-minimizer" LUA_SINGLE_TARGET="lua5-1" LUA_TARGETS="lua5-1" OFFICE_IMPLEMENTATION="libreoffice" PHP_TARGETS="php7-3 php7-4" POSTGRES_TARGETS="postgres10 postgres11" PYTHON_SINGLE_TARGET="python3_8" PYTHON_TARGETS="python3_8" RUBY_TARGETS="ruby26" SANE_BACKENDS="hp" USERLAND="GNU" VIDEO_CARDS="amdgpu vesa r600 radeonsi" XTABLES_ADDONS="quota2 psd pknock lscan length2 ipv4options ipset ipp2p iface geoip fuzzy condition tee tarpit sysrq steal rawnat logmark ipmark dhcpmac delude chaos account" Unset: CC, CPPFLAGS, CTARGET, CXX, EMERGE_DEFAULT_OPTS, INSTALL_MASK, LC_ALL, LINGUAS, MAKEOPTS, PORTAGE_BINHOST, PORTAGE_BUNZIP2_COMMAND, PORTAGE_COMPRESS, PORTAGE_COMPRESS_FLAGS, PORTAGE_RSYNC_EXTRA_OPTS
Problem was solved by adding "radeonsi" to make.conf and re-emerging mesa.
Why Gnome power button look like this? How to fix? https://imgur.com/nS6CvW0
should be configured by your gnome theme
Hi, After upgrade KDE from 5.19 to 5.20 Mattermost and Nextcloud tray icons missing. I only deleted .config/plasma-org.kde.plasma.desktop-appletsrc before update. Also Nextcloud asks login every login. Do I need to delete all config files ? How can I debug ? Edit: Tray icons works after a logout and a login.
Fixed by deleting all related settings. Code: rm -rf ~/.config/pl* rm -rf ~/.config/k* rm -rf ~/.config/org.kde*
How can I search for a specific version of firefox? So that it can be installed as latest rather than ESR?
Anathonous, Code: $ eix firefox [I] www-client/firefox Available versions: 78.6.1(0/esr78) (~)78.7.0(0/esr78) (~)84.0.2(0/84){tbz2} (~)85.0(0/85){tbz2} {bindist (+)clang custom-cflags custom-optimization dbus debug eme-free geckodriver +gmp-autoupdate hardened hwaccel jack lto neon +openh264 pgo pulseaudio screencast +screenshot selinux startup-notification +system-av1 (+)system-harfbuzz (+)system-icu (+)system-jpeg (+)system-libevent (+)system-libvpx (+)system-sqlite +system-webp test wayland wifi CPU_FLAGS_ARM="neon" CPU_FLAGS_X86="avx2" L10N="ach af an ar as ast az be bg bn bn-BD bn-IN br bs ca ca-valencia cak cs cy da de dsb el en-CA en-GB en-ZA eo es-AR es-CL es-ES es-MX et eu fa ff fi fr fy ga gd gl gn gu he hi hr hsb hu hy ia id is it ja ka kab kk km kn ko lij lt lv mai mk ml mr ms my nb ne nl nn oc or pa pl pt-BR pt-PT rm ro ru si sk sl son sq sr sv ta te th tl tr trs uk ur uz vi xh zh-CN zh-TW"} Installed versions: 85.0(0/85){tbz2}(19:41:09 27/01/21)(clang openh264 system-av1 system-harfbuzz system-icu system-jpeg system-libevent system-webp -dbus -debug -eme-free -geckodriver -gmp-autoupdate -hardened -hwaccel -jack -lto -pgo -pulseaudio -screencast -selinux -system-libvpx -wayland -wifi CPU_FLAGS_ARM="-neon" L10N="en-GB -ach -af -an -ar -ast -az -be -bg -bn -br -bs -ca -ca-valencia -cak -cs -cy -da -de -dsb -el -en-CA -eo -es-AR -es-CL -es-ES -es-MX -et -eu -fa -ff -fi -fr -fy -ga -gd -gl -gn -gu -he -hi -hr -hsb -hu -hy -ia -id -is -it -ja -ka -kab -kk -km -kn -ko -lij -lt -lv -mk -mr -ms -my -nb -ne -nl -nn -oc -pa -pl -pt-BR -pt-PT -rm -ro -ru -si -sk -sl -son -sq -sr -sv -ta -te -th -tl -tr -trs -uk -ur -uz -vi -xh -zh-CN -zh-TW") Homepage: https://www.mozilla.com/firefox Description: Firefox Web Browser On a stable install, which is the default, you get version 78.6.1 If you enable testing versions of firefox, versions 78.7.0, 84.0.2 and 85.0 are available too. Your howework is on the wiki :) Be warned that mixing the odd testing package into a stoble install can become a problem. Your testing package may require other testing packages. that's OK until a stable packages and a testing package require different versions of the same dependency at the same time. That can't happen.
Hi, I had too delete my google calendar from Korganizer, and now I'm not able to add it back anymore. When I try to add it a window pop up to authenticate me in Google (so far, so good), but when I write my e-mail, after clicking "Next", I get Quote: Couldn’t sign you in. This browser or app may not be secure. I don't know which browser it's using, probably Konqueror or whatever it's KDE's default nowadays. The thing is, my browser of choice in "Applications" settings is Firefox. However, it's not used here. Also, the problem might be something else. Today I "solved" some security risks in my google account...that might have something to do. Maybe erasing some cache files is enough, but I don't know which ones Any clue?
mani001 wrote: Today I "solved" some security risks in my google account...that might have something to do. Yes, if you added security checks to your account and then when trying to sync received a complaint that your browser wasn't secure enough, I'd say that one of your changes will be the cause, in which case clearing a cache or whatever might not help. First maybe reverse the changes you made to your Google account, to see if that restores your connectivity: once you've narrowed down the cause you're in a better position to figure out a fix for it.
Hello, After rebuilding the kernel a few times I was able to get gpm to work, I originally wasn't getting any /dev/input/mouse0 but realized I hadn't had it enabled in the kernel. It's working now but I am not getting any input in X. I had it working in a previous install. Now no input from the mouse or keyboard. I can't even alt, ctl, F1, F2 to switch to vtty. I assume it's maybe a libinput issue or I need to rebuild X... Does anyone have any input? pun intended.
Anathonous, Pastebin the output of Code: emerge --info so we can see your settings and the content of Xorg.0.log as the last attempt to start Xorg left it. The location of Xorg.0.log varies depending on hov you start Xorg.
Hello. In ST, i use the dracula colorscheme. In Vim, i use the nord colorscheme. The issue is, the Nord colorscheme isnt appearing right in vim. It has some dracula colors on top of it. Is there any way to separate the two color schemes (i assume the colors are wrong cause vim inherits colors from ST) SOLVE: I put this line in my vimrc Code: set termguicolors
figueroa wrote: What is ST? Probably x11-terms/st
Hello. I'm a new gentoo user. I've recently finalized my installation with Plasma desktop. But, my display brightness gets reset in every reboot. I'm not sure if it's related to my DE or not. So, I've posted it here. Plz hlp me to solve it.
Hi In /etc/crontab create a new job Code: @reboot root /bin/echo 300 > /sys/class/backlight/intel_backlight/brightness Plz adjust a value that is agreeable to you and the processor type
Hi, I've recently updated @world and I am no longer able to run firefox when emerging www-client/firefox . The ebuild runs without any problems, but when launching /usr/bin/firefox it crashes with Segmentation Fault . I've enabled the debug USE-flag, which gives some more info: Code: $ firefox [9673, Unnamed thread 7feaaf705280] WARNING: XPCOM objects created/destroyed from static ctor/dtor: file /var/tmp/portage/www-client/firefox-83.0/work/firefox-83.0/xpcom/base/nsTraceRefcnt.cpp:202 [9673, Unnamed thread 7feaaf705280] WARNING: XPCOM objects created/destroyed from static ctor/dtor: file /var/tmp/portage/www-client/firefox-83.0/work/firefox-83.0/xpcom/base/nsTraceRefcnt.cpp:202 Assertion failure: !locale.IsEmpty(), at /var/tmp/portage/www-client/firefox-83.0/work/firefox-83.0/intl/locale/LocaleService.cpp:376 #01: ???[/usr/lib64/firefox/libxul.so +0x6026085] #02: ???[/usr/lib64/firefox/libxul.so +0x6025dfe] #03: ???[/usr/lib64/firefox/libxul.so +0x60277ad] #04: ???[/usr/lib64/firefox/libxul.so +0x5e7dc55] #05: ???[/usr/lib64/firefox/libxul.so +0x5e7f602] #06: ???[/usr/lib64/firefox/libxul.so +0x5dbbe7e] #07: ???[/usr/lib64/firefox/libxul.so +0x5dc537f] #08: ???[/usr/lib64/firefox/libxul.so +0x5dc52ad] #09: ???[/usr/lib64/firefox/libxul.so +0x5dc54b3] #10: ???[/usr/lib64/firefox/libxul.so +0x5dbbf36] #11: ???[/usr/lib64/firefox/libxul.so +0x5dc537f] #12: ???[/usr/lib64/firefox/libxul.so +0x5dc52ad] #13: ???[/usr/lib64/firefox/libxul.so +0x5dc408f] #14: ???[/usr/lib64/firefox/libxul.so +0x5dc3489] #15: ???[/usr/lib64/firefox/libxul.so +0x5e99c6d] #16: ???[/usr/lib64/firefox/libxul.so +0xe9104e0] #17: ???[/usr/lib64/firefox/libxul.so +0xe91e1ec] #18: ???[/usr/lib64/firefox/libxul.so +0xe91ea76] #19: ???[/usr/lib64/firefox/libxul.so +0xe939af7] #20: ???[/usr/lib64/firefox/firefox +0x75a7d] #21: ???[/usr/lib64/firefox/firefox +0x7536b] #22: __libc_start_main[/lib64/libc.so.6 +0x23e0a] #23: _start[/usr/lib64/firefox/firefox +0x74e9a] Program /usr/lib64/firefox/firefox (pid = 9673) received signal 11. Stack: #01: ???[/usr/lib64/firefox/libxul.so +0xf2d315d] #02: ???[/lib64/libpthread.so.0 +0x129e0] #03: ???[/usr/lib64/firefox/libxul.so +0x6026095] #04: ???[/usr/lib64/firefox/libxul.so +0x6025dfe] #05: ???[/usr/lib64/firefox/libxul.so +0x60277ad] #06: ???[/usr/lib64/firefox/libxul.so +0x5e7dc55] #07: ???[/usr/lib64/firefox/libxul.so +0x5e7f602] #08: ???[/usr/lib64/firefox/libxul.so +0x5dbbe7e] #09: ???[/usr/lib64/firefox/libxul.so +0x5dc537f] #10: ???[/usr/lib64/firefox/libxul.so +0x5dc52ad] #11: ???[/usr/lib64/firefox/libxul.so +0x5dc54b3] #12: ???[/usr/lib64/firefox/libxul.so +0x5dbbf36] #13: ???[/usr/lib64/firefox/libxul.so +0x5dc537f] #14: ???[/usr/lib64/firefox/libxul.so +0x5dc52ad] #15: ???[/usr/lib64/firefox/libxul.so +0x5dc408f] #16: ???[/usr/lib64/firefox/libxul.so +0x5dc3489] #17: ???[/usr/lib64/firefox/libxul.so +0x5e99c6d] #18: ???[/usr/lib64/firefox/libxul.so +0xe9104e0] #19: ???[/usr/lib64/firefox/libxul.so +0xe91e1ec] #20: ???[/usr/lib64/firefox/libxul.so +0xe91ea76] #21: ???[/usr/lib64/firefox/libxul.so +0xe939af7] #22: ???[/usr/lib64/firefox/firefox +0x75a7d] #23: ???[/usr/lib64/firefox/firefox +0x7536b] #24: __libc_start_main[/lib64/libc.so.6 +0x23e0a] #25: _start[/usr/lib64/firefox/firefox +0x74e9a] Sleeping for 300 seconds. Type 'gdb /usr/lib64/firefox/firefox 9673' to attach your debugger to this thread. I've found the line of code that is mentioned in the stack trace: Code: 364 NS_IMETHODIMP 365 LocaleService::GetDefaultLocale(nsACString& aRetVal) { 366 // We don't allow this to change during a session (it's set at build/package 367 // time), so we cache the result the first time we're called. 368 if (mDefaultLocale.IsEmpty()) { 369 nsAutoCString locale; 370 // Try to get the package locale from update.locale in omnijar. If the 371 // update.locale file is not found, item.len will remain 0 and we'll 372 // just use our hard-coded default below. 373 GetGREFileContents("update.locale", &locale); 374 locale.Trim(" \r"); 375 // This should never be empty. 376 MOZ_ASSERT(!locale.IsEmpty()); 377 if (CanonicalizeLanguageId(locale)) { 378 mDefaultLocale.Assign(locale); 379 } 380 381 // Hard-coded fallback to allow us to survive even if update.locale was 382 // missing/broken in some way. 383 if (mDefaultLocale.IsEmpty()) { 384 GetLastFallbackLocale(mDefaultLocale); 385 } 386 } 387 388 aRetVal = mDefaultLocale; 389 return NS_OK; 390 } and I've found this docu from Mozilla: https://firefox-source-docs.mozilla.org/intl/locale_startup.html https://firefox-source-docs.mozilla.org/intl/locale.html But since I'm neither familiar with using gdb nor any Firefox internals, I'm a bit at a loss. Can anyone point me into a direction how to find the root cause of this issue or how to fix it? Things that I've tried: Enabling/disabling clang USE-flag Enabling/disabling l10n_en-GB USE-flag Enabling/disabling system-* USE-flags Emerging Firefox ESR version Playing around with LANG environment variable
FF83 works fine in my T9400 box. If ESR get the same error,the problem most likely outside FF. A broken RAM can trigger Segmentation Fault too.
Hi Guys Its been a few days that I am experiencing occasionally a kind of flicker in browsers fields ,or popups not being displayed correctly or void or sometimes color lines appearing. This only happens with web-browsers. I use ggogle-chrome-bin and brave-bin and firefox-bin I downgraded mesa but it didnt help. I use duktape buth I think it is not the issue because only polkit depends on it. I am running xfce in an unstable system. What kind of update might be causing this? Where should I look? Here is my info Code: Portage 3.0.14 (python 3.8.7-final-0, default/linux/amd64/17.1/desktop, gcc-9.3.0, glibc-2.32-r7, 5.10.10 x86_64) ================================================================= System uname: Linux-5.10.10-x86_64-Intel-R-_Core-TM-_i7-4710HQ_CPU_@_2.50GHz-with-glibc2.2.5 KiB Mem: 16274768 total, 11831236 free KiB Swap: 16773116 total, 16773116 free Timestamp of repository gentoo: Thu, 28 Jan 2021 10:30:01 +0000 Head commit of repository gentoo: 095babf97b2ef886fe03dfe5d9f5b58cded8708c sh bash 5.1_p4 ld GNU ld (Gentoo 2.35.1 p2) 2.35.1 app-shells/bash: 5.1_p4::gentoo dev-java/java-config: 2.3.1::gentoo dev-lang/perl: 5.32.0-r1::gentoo dev-lang/python: 3.8.7-r1::gentoo, 3.9.1-r1::gentoo dev-util/cmake: 3.19.3::gentoo sys-apps/baselayout: 2.7-r1::gentoo sys-apps/openrc: 0.42.1-r1::gentoo sys-apps/sandbox: 2.20::gentoo sys-devel/autoconf: 2.69-r5::gentoo sys-devel/automake: 1.16.3-r1::gentoo sys-devel/binutils: 2.35.1-r1::gentoo sys-devel/gcc: 9.3.0-r1::gentoo, 10.2.0::gentoo sys-devel/gcc-config: 2.3.3::gentoo sys-devel/libtool: 2.4.6-r6::gentoo sys-devel/make: 4.3::gentoo sys-kernel/linux-headers: 5.10::gentoo (virtual/os-headers) sys-libs/glibc: 2.32-r7::gentoo Repositories: gentoo location: /var/db/repos/gentoo sync-type: rsync sync-uri: rsync://rsync.gentoo.org/gentoo-portage priority: -1000 sync-rsync-verify-max-age: 24 sync-rsync-verify-jobs: 1 sync-rsync-verify-metamanifest: yes sync-rsync-extra-opts: localrepo location: /var/db/repos/localrepo masters: gentoo jorgicio location: /var/lib/layman/jorgicio masters: gentoo priority: 50 miramir location: /var/lib/layman/miramir masters: gentoo priority: 50 ACCEPT_KEYWORDS="amd64 ~amd64" ACCEPT_LICENSE="*" CBUILD="x86_64-pc-linux-gnu" CFLAGS="-march=haswell -O2 -pipe" CHOST="x86_64-pc-linux-gnu" CONFIG_PROTECT="/etc /usr/share/easy-rsa /usr/share/gnupg/qualified.txt /var/bind" CONFIG_PROTECT_MASK="/etc/ca-certificates.conf /etc/dconf /etc/env.d /etc/fonts/fonts.conf /etc/gconf /etc/gentoo-release /etc/php/apache2-php7.4/ext-active/ /etc/php/cgi-php7.4/ext-active/ /etc/php/cli-php7.4/ext-active/ /etc/revdep-rebuild /etc/sandbox.d /etc/terminfo" CXXFLAGS="-march=haswell -O2 -pipe" DISTDIR="/var/cache/distfiles" EMERGE_DEFAULT_OPTS="--ask --quiet-build=y" ENV_UNSET="CARGO_HOME DBUS_SESSION_BUS_ADDRESS DISPLAY GOBIN GOPATH PERL5LIB PERL5OPT PERLPREFIX PERL_CORE PERL_MB_OPT PERL_MM_OPT XAUTHORITY XDG_CACHE_HOME XDG_CONFIG_HOME XDG_DATA_HOME XDG_RUNTIME_DIR" FCFLAGS="-march=haswell -O2 -pipe" FEATURES="assume-digests binpkg-docompress binpkg-dostrip binpkg-logs config-protect-if-modified distlocks ebuild-locks fixlafiles ipc-sandbox merge-sync multilib-strict network-sandbox news parallel-fetch pid-sandbox preserve-libs protect-owned qa-unresolved-soname-deps sandbox sfperms strict unknown-features-warn unmerge-logs unmerge-orphans userfetch userpriv usersandbox usersync xattr" FFLAGS="-march=haswell -O2 -pipe" GENTOO_MIRRORS="http://distfiles.gentoo.org" LANG="en_US.utf8" LDFLAGS="-Wl,-O1 -Wl,--as-needed" MAKEOPTS="-j4" PKGDIR="/var/cache/binpkgs" PORTAGE_CONFIGROOT="/" PORTAGE_RSYNC_OPTS="--recursive --links --safe-links --perms --times --omit-dir-times --compress --force --whole-file --delete --stats --human-readable --timeout=180 --exclude=/distfiles --exclude=/local --exclude=/packages --exclude=/.git" PORTAGE_TMPDIR="/var/tmp/portage" USE="X a52 aac acl acpi alsa amd64 berkdb bluetooth branding bzip2 cairo cdda cdr cli crypt cups dbus dlz dri dts dvd dvdr elogind emboss encode exif flac fortran gdbm gif gpm gtk gui iconv icu ipv6 jpeg lcms libglvnd libnotify libtirpc mad mng mp3 mp4 mpeg multilib ncurses nls nptl ogg opengl openmp openssl pam pango pcre pdf png policykit ppds pulseaudio readline sdl seccomp spell split-usr ssl startup-notification svg tcpd tiff truetype udev udisks unicode upower usb vaapi vdpau vorbis wxwidgets x264 xattr xcb xfce xml xv xvid zlib" ABI_X86="64" ADA_TARGET="gnat_2018" ALSA_CARDS="ali5451 als4000 atiixp atiixp-modem bt87x ca0106 cmipci emu10k1x ens1370 ens1371 es1938 es1968 fm801 hda-intel intel8x0 intel8x0m maestro3 trident usb-audio via82xx via82xx-modem ymfpci" APACHE2_MODULES="authn_core authz_core socache_shmcb unixd actions alias auth_basic authn_alias authn_anon authn_dbm authn_default authn_file authz_dbm authz_default authz_groupfile authz_host authz_owner authz_user autoindex cache cgi cgid dav dav_fs dav_lock deflate dir disk_cache env expires ext_filter file_cache filter headers include info log_config logio mem_cache mime mime_magic negotiation rewrite setenvif speling status unique_id userdir usertrack vhost_alias" APACHE2_MPMS="event" CALLIGRA_FEATURES="karbon sheets words" COLLECTD_PLUGINS="df interface irq load memory rrdtool swap syslog" CPU_FLAGS_X86="mmx mmxext sse sse2 aes avx avx2 f16c fma3 pclmul popcnt sse3 sse4_1 sse4_2 ssse3" ELIBC="glibc" GPSD_PROTOCOLS="ashtech aivdm earthmate evermore fv18 garmin garmintxt gpsclock greis isync itrax mtk3301 nmea ntrip navcom oceanserver oldstyle oncore rtcm104v2 rtcm104v3 sirf skytraq superstar2 timing tsip tripmate tnt ublox ubx" GRUB_PLATFORMS="efi-64" INPUT_DEVICES="libinput synaptics" KERNEL="linux" LCD_DEVICES="bayrad cfontz cfontz633 glk hd44780 lb216 lcdm001 mtxorb ncurses text" LIBREOFFICE_EXTENSIONS="presenter-console presenter-minimizer" LUA_SINGLE_TARGET="lua5-1" LUA_TARGETS="lua5-1" OFFICE_IMPLEMENTATION="libreoffice" PHP_TARGETS="php7-4" POSTGRES_TARGETS="postgres10 postgres11" PYTHON_SINGLE_TARGET="python3_8" PYTHON_TARGETS="python3_8" RUBY_TARGETS="ruby26" USERLAND="GNU" VIDEO_CARDS="intel i965 nouveau nvidia" XTABLES_ADDONS="quota2 psd pknock lscan length2 ipv4options ipset ipp2p iface geoip fuzzy condition tee tarpit sysrq steal rawnat logmark ipmark dhcpmac delude chaos account" Unset: CC, CPPFLAGS, CTARGET, CXX, INSTALL_MASK, LC_ALL, LINGUAS, PORTAGE_BINHOST, PORTAGE_BUNZIP2_COMMAND, PORTAGE_COMPRESS, PORTAGE_COMPRESS_FLAGS, PORTAGE_RSYNC_EXTRA_OPTS Should I maybe disable hardware acceleration? Thanks a lot..
After googling around a lot I managed to resolve it by invoking any chromium based browser by Code: --use-gl=desktop
I just installed spacefm with the following 2 flags disabled: "startup-notification" and "video-thumbnails" The panels in spacefm is only showing the "Name" column, although I'v enabled all other columns: "size", "type", "permissions", "owner", "modified". Where're the missing columns?
I figured it out. I had to change the "panel1_detcol_name0-y" in "~/.config/spacefm/session" to a smaller value. I guess the default value 1820 is too big and takes all the space available, no space left for other columns.
Hi and thanks for reading this! I recently updated my box, and decided to start from scratch with a new drive (my old Gentoo installation dated from 2010) but inheriting my home folders. The thing is everything seems to work as expected but the "switch user" menu entry which is missing, as you can see in this screenshot (in Spanish but easily understandable). I share the box with my wife, and so it is annoying having to exit one's session to enter another. So, the question is: what am I missing? A USE flag? A kernel option? A Plasma config? Any help is appreciated since I'm really clueless.
Fitzcarraldo wrote: My Compal laptop running Gentoo ~amd64 with OpenRC, SDDM and KDE Plasma does not exhibit that problem, and neither does my Clevo laptop running Gentoo amd64 with OpenRC, LightDM and KDE Plasma. Is your installation using systemd, by any chance? I see that Arch Linux users have reported the same problem as you are having: FS#67623 - [plasma-workspace] Missing "switch user" functionality with systemd 246 Thanks very much for the info! Yes, indeed, I'm using systemd. It seems I'll have to wait for the fix.
Hello. Recently my desktop environment suddenly freezes sometimes. I use i3wm. What I can when the environment freezes are: Move my mouse cursor. Turn on and off the LED of the CapsLock. If YouTube was playing something when the environment freezes, I can continue listening to it. I can continue talking over ZOOM. What I cannot is: Do something to the GUI applications like Firefox and terminal. I can't move the tabs of Firefox. I can't input something to the terminal. Even I can't launch a new terminal with Ctrl + Enter. Switch to the CUI console with Ctrl + Alt + Function. emerge --info: https://dpaste.com/DCQ5F2PKM Xorg.0.log: https://dpaste.com/4A2LQB68N The kernel config: https://dpaste.com/7CB6CXP5Q What should I do?
I've heard about people having similar problems with some intel driver on recent kernels. AFAIK it was present in 5.8, 5.9 and 5.10 (although latest series of 5.10 have brought some intel fixes). Try with some older kernel, like the current stable 5.4.92? Or 5.4.80?
On executing sway I am getting this error: Code: WARNING: Kernel has no file descriptor comparison support: Function not implemented 2020-12-20 10:35:52 - [swaybg-1.0/main.c:299] Found config * for output eDP-1 (Unknown 0x4C48 0x00000000) Any help is highly appreciated
charles17 wrote: So what am I missing? For these two at least, probably D-Bus. More precisely, the login session message bus. charles17 wrote: On start I get: Code: ... 00:00:00.008 [swaybar/tray/tray.c:42] Failed to connect to user bus: No such file or directory Then when I try to end sway using SUPER+SHIFT+c I get: Code: ... 00:00:00.007 [swaybar/tray/tray.c:42] Failed to connect to user bus: No such file or directory
After late update , dolphin is can not mount any device with automount. I have an output "An error occurred while accessing 'KINGSTON', the system responded: An unspecified error has occurred: Not authorized to perform operation" or with internal storage drive "An error occurred while accessing 'Home', the system responded: An unspecified error has occurred: Not authorized to perform operation" And it doesn't shutdown or reboot. I have to be in a tty to shutdown or reboot the machine. emerge --info Quote: python-exec: Invalid impl in /etc/python-exec/python-exec.conf: python3.6 Portage 3.0.13 (python 3.8.7-final-0, default/linux/amd64/17.1/desktop/plasma, gcc-10.2.0, glibc-2.32-r7, 4.19.8-gentoo x86_64) ================================================================= System uname: Linux-4.19.8-gentoo-x86_64-Intel-R-_Core-TM-_i7_CPU_950_@_3.07GHz-with-glibc2.2.5 KiB Mem: 12298240 total, 9049576 free KiB Swap: 12574716 total, 12574716 free Timestamp of repository gentoo: Tue, 12 Jan 2021 06:00:01 +0000 Head commit of repository gentoo: 24288f37c4b6c51e92c33317a732288a2cd43b6e sh bash 5.1_p4 ld GNU ld (Gentoo 2.35.1 p2) 2.35.1 ccache version 4.1 [enabled] app-shells/bash: 5.1_p4::gentoo dev-java/java-config: 2.3.1::gentoo dev-lang/perl: 5.32.0-r1::gentoo dev-lang/python: 2.7.18-r5::gentoo, 3.6.12-r1::gentoo, 3.8.7::gentoo, 3.9.1::gentoo dev-util/ccache: 4.1::gentoo dev-util/cmake: 3.19.2::gentoo dev-util/pkgconfig: 0.29.2::gentoo sys-apps/baselayout: 2.7-r1::gentoo sys-apps/openrc: 0.42.1::gentoo sys-apps/sandbox: 2.20::gentoo sys-devel/autoconf: 2.13-r1::gentoo, 2.69-r5::gentoo sys-devel/automake: 1.16.3-r1::gentoo sys-devel/binutils: 2.35.1-r1::gentoo sys-devel/gcc: 10.2.0-r5::gentoo sys-devel/gcc-config: 2.3.2-r1::gentoo sys-devel/libtool: 2.4.6-r6::gentoo sys-devel/make: 4.3::gentoo sys-kernel/linux-headers: 5.10::gentoo (virtual/os-headers) sys-libs/glibc: 2.32-r7::gentoo Repositories: gentoo location: /usr/portage sync-type: rsync sync-uri: rsync://rsync.gentoo.org/gentoo-portage priority: -1000 sync-rsync-verify-metamanifest: yes sync-rsync-verify-max-age: 24 sync-rsync-extra-opts: sync-rsync-verify-jobs: 1 ACCEPT_KEYWORDS="amd64 ~amd64" ACCEPT_LICENSE="*" CBUILD="x86_64-pc-linux-gnu" CFLAGS="-march=corei7 -O2 -pipe" CHOST="x86_64-pc-linux-gnu" CONFIG_PROTECT="/etc /usr/lib64/libreoffice/program/sofficerc /usr/share/config /usr/share/gnupg/qualified.txt" CONFIG_PROTECT_MASK="/etc/ca-certificates.conf /etc/dconf /etc/env.d /etc/fonts/fonts.conf /etc/gconf /etc/gentoo-release /etc/revdep-rebuild /etc/sandbox.d /etc/terminfo" CXXFLAGS="-march=corei7 -O2 -pipe" DISTDIR="/usr/portage/distfiles" ENV_UNSET="CARGO_HOME DBUS_SESSION_BUS_ADDRESS DISPLAY GOBIN GOPATH PERL5LIB PERL5OPT PERLPREFIX PERL_CORE PERL_MB_OPT PERL_MM_OPT XAUTHORITY XDG_CACHE_HOME XDG_CONFIG_HOME XDG_DATA_HOME XDG_RUNTIME_DIR" FCFLAGS="-O2 -pipe" FEATURES="assume-digests binpkg-docompress binpkg-dostrip binpkg-logs ccache config-protect-if-modified distlocks ebuild-locks fixlafiles ipc-sandbox merge-sync multilib-strict network-sandbox news parallel-fetch pid-sandbox preserve-libs protect-owned qa-unresolved-soname-deps sandbox sfperms strict unknown-features-warn unmerge-logs unmerge-orphans userfetch userpriv usersandbox usersync xattr" FFLAGS="-O2 -pipe" GENTOO_MIRRORS="http://distfiles.gentoo.org" LANG="en_GB.utf8" LDFLAGS="-Wl,-O1 -Wl,--as-needed" LINGUAS="en el" MAKEOPTS="-j9" PKGDIR="/var/cache/binpkgs" PORTAGE_CONFIGROOT="/" PORTAGE_RSYNC_OPTS="--recursive --links --safe-links --perms --times --omit-dir-times --compress --force --whole-file --delete --stats --human-readable --timeout=180 --exclude=/distfiles --exclude=/local --exclude=/packages --exclude=/.git" PORTAGE_TMPDIR="/var/tmp" USE="X a52 aac acl acpi activities alsa amd64 berkdb bluetooth bogofilter branding bzip2 cairo cdda cdr clamav cli crypt cups dbus declarative dri dts dvd dvdr elogind emboss encode exif ffmpeg flac fortran gdbm gif gpm gtk gui iconv icu imagemagick ipv6 jpeg kde kipi kwallet lcms libglvnd libinput libnotify libtirpc mad mng mp3 mp4 mpeg multilib ncurses nls nptl ogg opengl openmp pam pango pcre pdf phonon plasma png policykit ppds qml qt5 readline scanner sdl seccomp semantic-desktop snmp spamassassin spell split-usr ssl startup-notification svg tcpd tiff truetype udev udisks unicode upower usb vim vorbis widgets wxwidgets x264 xattr xcb xml xv xvid zlib" ABI_X86="64" ADA_TARGET="gnat_2018" ALSA_CARDS="ali5451 als4000 atiixp atiixp-modem bt87x ca0106 cmipci emu10k1x ens1370 ens1371 es1938 es1968 fm801 hda-intel intel8x0 intel8x0m maestro3 trident usb-audio via82xx via82xx-modem ymfpci" APACHE2_MODULES="authn_core authz_core socache_shmcb unixd actions alias auth_basic authn_alias authn_anon authn_dbm authn_default authn_file authz_dbm authz_default authz_groupfile authz_host authz_owner authz_user autoindex cache cgi cgid dav dav_fs dav_lock deflate dir disk_cache env expires ext_filter file_cache filter headers include info log_config logio mem_cache mime mime_magic negotiation rewrite setenvif speling status unique_id userdir usertrack vhost_alias" CALLIGRA_FEATURES="karbon sheets words" CAMERAS="cameras_sony_dscf1 cameras_sony_dscf55" COLLECTD_PLUGINS="df interface irq load memory rrdtool swap syslog" CPU_FLAGS_X86="mmx mmxext sse sse2" ELIBC="glibc" GPSD_PROTOCOLS="ashtech aivdm earthmate evermore fv18 garmin garmintxt gpsclock greis isync itrax mtk3301 nmea ntrip navcom oceanserver oldstyle oncore rtcm104v2 rtcm104v3 sirf skytraq superstar2 timing tsip tripmate tnt ublox ubx" INPUT_DEVICES="evdev mouse keyboard" KERNEL="linux" L10N="en el" LCD_DEVICES="bayrad cfontz cfontz633 glk hd44780 lb216 lcdm001 mtxorb ncurses text" LIBREOFFICE_EXTENSIONS="presenter-console presenter-minimizer" LUA_SINGLE_TARGET="lua5-1" LUA_TARGETS="lua5-1" OFFICE_IMPLEMENTATION="libreoffice" PHP_TARGETS="php7-3 php7-4" POSTGRES_TARGETS="postgres10 postgres11" PYTHON_SINGLE_TARGET="python3_8" PYTHON_TARGETS="python2_7 python3_8" RUBY_TARGETS="ruby25 ruby26" SANE_BACKENDS="hp" USERLAND="GNU" VIDEO_CARDS="nvidia" XTABLES_ADDONS="quota2 psd pknock lscan length2 ipv4options ipset ipp2p iface geoip fuzzy condition tee tarpit sysrq steal rawnat logmark ipmark dhcpmac delude chaos account" Unset: CC, CPPFLAGS, CTARGET, CXX, EMERGE_DEFAULT_OPTS, INSTALL_MASK, LC_ALL, PORTAGE_BINHOST, PORTAGE_BUNZIP2_COMMAND, PORTAGE_COMPRESS, PORTAGE_COMPRESS_FLAGS, PORTAGE_RSYNC_EXTRA_OPTS last packages before this problem Quote: Mon Jan 4 11:16:19 2021 >>> dev-libs/libgpg-error-1.41 Mon Jan 4 11:16:51 2021 >>> app-i18n/enca-1.19-r3 Mon Jan 4 11:17:41 2021 >>> dev-libs/libgcrypt-1.8.7 Mon Jan 4 11:19:58 2021 >>> net-misc/wget-1.21-r1 Mon Jan 4 11:20:22 2021 >>> net-misc/youtube-dl-2021.01.03 Mon Jan 4 11:22:01 2021 >>> app-text/poppler-21.01.0 Mon Jan 4 11:22:56 2021 >>> net-print/cups-filters-1.28.3 Mon Jan 4 11:24:08 2021 >>> kde-apps/kitinerary-20.12.0 Mon Jan 4 11:24:37 2021 >>> sys-apps/smartmontools-7.2 Mon Jan 4 11:25:49 2021 >>> kde-apps/kio-extras-20.12.0-r1 Tue Jan 5 09:44:29 2021 >>> dev-libs/nettle-3.7 Tue Jan 5 09:45:49 2021 >>> app-arch/tar-1.32-r1 Fri Jan 8 10:33:33 2021 >>> sys-libs/glibc-2.32-r7 Fri Jan 8 10:33:51 2021 >>> sys-devel/llvm-common-11.0.1 Fri Jan 8 10:34:13 2021 >>> dev-libs/ell-0.36 Fri Jan 8 10:34:27 2021 >>> sys-apps/net-tools-2.10 Fri Jan 8 10:35:47 2021 >>> sys-apps/busybox-1.33.0 Fri Jan 8 10:36:59 2021 >>> app-text/qpdf-10.1.0 Fri Jan 8 10:37:48 2021 >>> net-misc/socat-1.7.4.0 Fri Jan 8 10:39:07 2021 >>> app-arch/tar-1.33 Fri Jan 8 10:39:25 2021 >>> app-crypt/rhash-1.4.1 Fri Jan 8 10:39:36 2021 >>> net-misc/mobile-broadband-provider-info-20201225 Fri Jan 8 10:45:23 2021 >>> dev-qt/qtcore-5.15.2-r2 Fri Jan 8 10:46:46 2021 >>> sys-kernel/gentoo-sources-5.10.5 Fri Jan 8 11:25:06 2021 >>> sys-devel/llvm-11.0.1 Fri Jan 8 11:25:27 2021 >>> kde-plasma/plasma-workspace-wallpapers-5.20.5 Fri Jan 8 11:26:06 2021 >>> net-misc/dahdi-3.1.0-r2 Fri Jan 8 11:26:37 2021 >>> net-libs/libmbim-1.24.4 Fri Jan 8 11:27:41 2021 >>> net-libs/libqmi-1.26.6 Fri Jan 8 11:28:16 2021 >>> media-libs/dav1d-0.8.1 Fri Jan 8 11:29:15 2021 >>> sys-auth/elogind-246.9.1 Fri Jan 8 11:30:52 2021 >>> net-misc/modemmanager-1.14.8 Fri Jan 8 11:31:03 2021 >>> net-misc/netifrc-0.7.2 Fri Jan 8 11:31:16 2021 >>> dev-util/wayland-scanner-1.18.92 Fri Jan 8 11:31:35 2021 >>> dev-libs/wayland-1.18.92 Fri Jan 8 11:35:07 2021 >>> gnome-base/librsvg-2.50.2 Fri Jan 8 11:35:25 2021 >>> kde-apps/kpkpass-20.12.1 Fri Jan 8 11:35:50 2021 >>> kde-apps/libkexiv2-20.12.1 Fri Jan 8 11:36:11 2021 >>> www-client/google-chrome-87.0.4280.141 Fri Jan 8 11:36:33 2021 >>> www-client/opera-73.0.3856.329 Fri Jan 8 11:36:50 2021 >>> media-libs/kcolorpicker-0.1.4 Fri Jan 8 11:41:22 2021 >>> dev-qt/qtwayland-5.15.2-r1 Fri Jan 8 11:41:44 2021 >>> kde-apps/kmime-20.12.1 Fri Jan 8 11:42:04 2021 >>> kde-plasma/kdecoration-5.20.5 Fri Jan 8 11:43:36 2021 >>> media-libs/kimageannotator-0.4.0 Fri Jan 8 11:43:52 2021 >>> kde-apps/akonadi-notes-20.12.1 Fri Jan 8 11:44:50 2021 >>> kde-plasma/libkscreen-5.20.5 Fri Jan 8 11:45:05 2021 >>> kde-apps/kmbox-20.12.1 Fri Jan 8 11:46:11 2021 >>> kde-plasma/kwayland-server-5.20.5 Fri Jan 8 11:47:37 2021 >>> kde-apps/kitinerary-20.12.1 Fri Jan 8 11:48:02 2021 >>> kde-plasma/kwayland-integration-5.20.5 Fri Jan 8 11:48:28 2021 >>> kde-plasma/xembed-sni-proxy-5.20.5 Fri Jan 8 11:48:55 2021 >>> kde-apps/libkdepim-20.12.1 Fri Jan 8 11:49:19 2021 >>> kde-plasma/kgamma-5.20.5 Fri Jan 8 11:49:43 2021 >>> kde-plasma/polkit-kde-agent-5.20.5 Fri Jan 8 11:50:10 2021 >>> kde-apps/libkipi-20.12.1 Fri Jan 8 11:52:06 2021 >>> x11-drivers/nvidia-drivers-390.138-r5 Fri Jan 8 11:52:35 2021 >>> net-dialup/ppp-2.4.9-r1 Fri Jan 8 11:54:53 2021 >>> net-misc/networkmanager-1.28.0 Fri Jan 8 11:55:09 2021 >>> kde-plasma/kwrited-5.20.5 Fri Jan 8 11:56:49 2021 >>> kde-apps/libkgapi-20.12.1 Fri Jan 8 11:57:04 2021 >>> kde-plasma/ksshaskpass-5.20.5 Fri Jan 8 11:57:16 2021 >>> kde-plasma/kwallet-pam-5.20.5 Fri Jan 8 11:58:05 2021 >>> kde-apps/kpimtextedit-20.12.1 Fri Jan 8 11:58:34 2021 >>> kde-apps/kldap-20.12.1 Fri Jan 8 12:00:03 2021 >>> kde-frameworks/baloo-5.77.0-r1 Fri Jan 8 12:00:49 2021 >>> kde-apps/kimap-20.12.1 Fri Jan 8 12:01:51 2021 >>> kde-plasma/kactivitymanagerd-5.20.5 Fri Jan 8 12:03:59 2021 >>> kde-apps/kipi-plugins-20.12.1 Fri Jan 8 12:04:18 2021 >>> kde-apps/ksmtp-20.12.1 Fri Jan 8 12:05:30 2021 >>> kde-plasma/drkonqi-5.20.5 Fri Jan 8 12:06:03 2021 >>> kde-apps/libkcddb-20.12.1 Fri Jan 8 12:06:25 2021 >>> kde-apps/kidentitymanagement-20.12.1 Fri Jan 8 12:06:46 2021 >>> kde-apps/grantleetheme-20.12.1 Fri Jan 8 12:07:06 2021 >>> kde-apps/kontactinterface-20.12.1 Fri Jan 8 12:08:00 2021 >>> kde-apps/libkleo-20.12.1 Fri Jan 8 12:08:58 2021 >>> kde-plasma/libksysguard-5.20.5 Fri Jan 8 12:09:23 2021 >>> kde-plasma/kmenuedit-5.20.5 Fri Jan 8 12:09:52 2021 >>> kde-apps/baloo-widgets-20.12.1 Fri Jan 8 12:11:03 2021 >>> kde-apps/ark-20.12.1 Fri Jan 8 12:12:41 2021 >>> kde-apps/konsole-20.12.1 Fri Jan 8 12:13:16 2021 >>> kde-apps/spectacle-20.12.1-r1 Fri Jan 8 12:13:42 2021 >>> kde-apps/kcalutils-20.12.1 Fri Jan 8 12:14:34 2021 >>> kde-plasma/ksysguard-5.20.5 Fri Jan 8 12:17:35 2021 >>> kde-apps/kleopatra-20.12.1 Fri Jan 8 12:19:57 2021 >>> kde-apps/gwenview-20.12.1 Fri Jan 8 12:24:21 2021 >>> kde-apps/k3b-20.12.1 Fri Jan 8 12:24:54 2021 >>> kde-apps/kwalletmanager-20.12.1 Fri Jan 8 12:27:43 2021 >>> kde-apps/okular-20.12.1 Fri Jan 8 12:28:02 2021 >>> kde-apps/libktnef-20.12.1 Fri Jan 8 12:29:10 2021 >>> kde-apps/kio-extras-20.12.1 Fri Jan 8 12:29:53 2021 >>> kde-plasma/plasma-vault-5.20.5 Fri Jan 8 12:30:38 2021 >>> kde-plasma/xdg-desktop-portal-kde-5.20.5 Fri Jan 8 12:33:16 2021 >>> kde-apps/kate-20.12.1 Fri Jan 8 12:33:41 2021 >>> kde-plasma/milou-5.20.5 Fri Jan 8 12:36:07 2021 >>> kde-apps/dolphin-20.12.1 Fri Jan 8 12:37:04 2021 >>> kde-plasma/breeze-5.20.5 Fri Jan 8 12:37:32 2021 >>> kde-plasma/plasma-integration-5.20.5 Fri Jan 8 12:37:48 2021 >>> kde-plasma/breeze-gtk-5.20.5 Fri Jan 8 12:38:28 2021 >>> kde-plasma/kscreenlocker-5.20.5 Fri Jan 8 12:46:07 2021 >>> kde-plasma/kwin-5.20.5 Fri Jan 8 12:46:40 2021 >>> kde-plasma/libkworkspace-5.20.5 Fri Jan 8 12:47:25 2021 >>> kde-plasma/kde-cli-tools-5.20.5 Fri Jan 8 12:56:26 2021 >>> kde-plasma/plasma-workspace-5.20.5 Fri Jan 8 12:56:55 2021 >>> kde-apps/kaccounts-integration-20.12.1 Fri Jan 8 12:57:28 2021 >>> kde-plasma/systemsettings-5.20.5 Fri Jan 8 12:58:54 2021 >>> kde-plasma/oxygen-5.20.5 Fri Jan 8 12:59:32 2021 >>> kde-plasma/kscreen-5.20.5 Fri Jan 8 13:00:48 2021 >>> kde-plasma/powerdevil-5.20.5 Fri Jan 8 13:01:54 2021 >>> kde-plasma/khotkeys-5.20.5 Fri Jan 8 13:02:46 2021 >>> kde-plasma/bluedevil-5.20.5 Fri Jan 8 13:03:07 2021 >>> kde-plasma/sddm-kcm-5.20.5 Fri Jan 8 13:03:32 2021 >>> kde-plasma/kde-gtk-config-5.20.5 Fri Jan 8 13:04:07 2021 >>> kde-apps/khelpcenter-20.12.1 Fri Jan 8 13:06:26 2021 >>> kde-plasma/plasma-nm-5.20.5 Fri Jan 8 13:12:49 2021 >>> kde-apps/akonadi-20.12.1 Fri Jan 8 13:13:39 2021 >>> kde-plasma/kinfocenter-5.20.5 Fri Jan 8 13:17:55 2021 >>> kde-plasma/plasma-desktop-5.20.5 Fri Jan 8 13:19:18 2021 >>> kde-plasma/kdeplasma-addons-5.20.5 Fri Jan 8 13:20:52 2021 >>> kde-apps/akonadi-contacts-20.12.1 Fri Jan 8 13:21:26 2021 >>> kde-apps/akonadi-mime-20.12.1 Fri Jan 8 13:21:55 2021 >>> kde-apps/kalarmcal-20.12.1 Fri Jan 8 13:22:23 2021 >>> kde-plasma/plasma-browser-integration-5.20.5 Fri Jan 8 13:22:50 2021 >>> kde-plasma/plasma-disks-5.20.5 Fri Jan 8 13:23:31 2021 >>> kde-apps/kmailtransport-20.12.1 Fri Jan 8 13:24:25 2021 >>> kde-apps/akonadi-search-20.12.1 Fri Jan 8 13:24:35 2021 >>> kde-plasma/plasma-meta-5.20.5 Fri Jan 8 13:25:57 2021 >>> kde-apps/pimcommon-20.12.1 Fri Jan 8 13:26:42 2021 >>> kde-apps/akonadi-calendar-20.12.1 Fri Jan 8 13:27:22 2021 >>> kde-apps/calendarsupport-20.12.1 Fri Jan 8 13:33:00 2021 >>> kde-apps/kdepim-runtime-20.12.1 Fri Jan 8 13:33:33 2021 >>> kde-apps/mailimporter-20.12.1 Fri Jan 8 13:33:53 2021 >>> kde-apps/libgravatar-20.12.1 Fri Jan 8 13:36:01 2021 >>> kde-apps/libksieve-20.12.1 Fri Jan 8 13:37:01 2021 >>> kde-apps/kmail-account-wizard-20.12.1 Fri Jan 8 13:37:51 2021 >>> kde-apps/eventviews-20.12.1 Fri Jan 8 13:38:47 2021 >>> kde-apps/kaddressbook-20.12.1 Fri Jan 8 13:39:07 2021 >>> kde-apps/calendarjanitor-20.12.1 Fri Jan 8 13:40:26 2021 >>> kde-apps/knotes-20.12.1 Fri Jan 8 13:40:47 2021 >>> kde-apps/konsolekalendar-20.12.1 Fri Jan 8 13:41:23 2021 >>> kde-apps/pim-sieve-editor-20.12.1 Fri Jan 8 13:42:23 2021 >>> kde-apps/incidenceeditor-20.12.1 Fri Jan 8 13:46:52 2021 >>> kde-apps/messagelib-20.12.1 Fri Jan 8 13:48:51 2021 >>> kde-apps/korganizer-20.12.1 Fri Jan 8 13:50:57 2021 >>> kde-apps/mailcommon-20.12.1 Fri Jan 8 13:51:59 2021 >>> kde-apps/akonadiconsole-20.12.1 Fri Jan 8 13:53:33 2021 >>> kde-apps/akregator-20.12.1 Fri Jan 8 13:54:20 2021 >>> kde-apps/grantlee-editor-20.12.1 Fri Jan 8 13:58:00 2021 >>> kde-apps/kmail-20.12.1 Fri Jan 8 13:58:30 2021 >>> kde-apps/kontact-20.12.1 Fri Jan 8 13:59:36 2021 >>> kde-apps/akonadi-import-wizard-20.12.1 Fri Jan 8 14:01:39 2021 >>> kde-apps/kalarm-20.12.1 Fri Jan 8 14:06:29 2021 >>> kde-apps/kdepim-addons-20.12.1 Fri Jan 8 14:06:47 2021 >>> kde-apps/mbox-importer-20.12.1 Fri Jan 8 14:07:46 2021 >>> kde-apps/pim-data-exporter-20.12.1 Fri Jan 8 14:07:56 2021 >>> kde-apps/kdepim-meta-20.12.1 Fri Jan 8 14:43:33 2021 >>> net-misc/youtube-dl-2021.01.08
Hi, I get the same errors since a few days and I believe the problem arises from libcap/udev problem. The update to sys-fs/udev-247.2 fails with the following error: Code: FAILED: src/udev/libudev.so.1.7.0 x86_64-pc-linux-gnu-gcc -m32 -o src/udev/libudev.so.1.7.0 src/udev/libudev.so.1.7.0.p/.._libsystemd_disable-mempool.c.o -Wl,--as-needed -Wl,--no-undefined -shared -fPIC -Wl,--start-group -Wl,-soname,libudev.so.1 -Wl,--whole-archive src/udev/libudev-basic.a -Wl,--no-whole-archive -Wl,-z,relro -Wl,-z,now -fstack-protector -Wl,--gc-sections -O2 -march=znver1 -Wl,-O1 -Wl,--as-needed -Wl,-O1 -Wl,--as-needed src/libsystemd/libsystemd_static.a src/basic/libbasic.a src/shared/libsystemd-shared-247.a -shared -Wl,--version-script=/var/tmp/portage/sys-fs/udev-247.2/work/systemd-stable-247.2/src/libudev/libudev.sym -pthread -lrt /usr/lib64/libcap.so -lm -ldl /usr/lib64/libblkid.so -lcrypt /usr/lib64/libmount.so /usr/lib64/libssl.so /usr/lib64/libcrypto.so /usr/lib64/libp11-kit.so -lpam /usr/lib64/libzstd.so -Wl,--end-group -Wl,-rpath,/usr/lib64 -Wl,-rpath-link,/usr/lib64 /usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/../../../../x86_64-pc-linux-gnu/bin/ld: skipping incompatible /lib64/libcap.so.2 when searching for /lib64/libcap.so.2 /usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0/../../../../x86_64-pc-linux-gnu/bin/ld: cannot find /lib64/libcap.so.2 collect2: error: ld returned 1 exit status ninja: build stopped: subcommand failed. * ERROR: sys-fs/udev-247.2::gentoo failed (compile phase): I suspect the error occurs because the 32Bit build (-m32) tries to link against 64bit libraries but that's just my guess. Best regards Update: sys-fs/udev-247.2 did compile now, but the problem persists.
Xfce only runs when there is no ~/.config/xfce4/xfconf/xfce-perchannel-xml/xfwm4.xml file, and I would like someone to help me fix this. I am using startx to start it as a normal user. (~/.xinitrc contains only the line "exec startxfce4", with no quotes). Here is the ~/.xsession-errors file from when it crashes (which is when ~/.config/xfce4/xfconf/xfce-perchannel-xml/xfwm4.xml does exist) Code: /usr/bin/iceauth: creating new authority file /run/user/1000/ICEauthority gpg-agent[2204]: WARNING: "--write-env-file" is an obsolete option - it has no effect gpg-agent[2205]: gpg-agent (GnuPG) 2.2.20 started (xfce4-session:2160): xfce4-session-WARNING **: 14:49:35.502: gpg-agent returned n PID in the variables (xfce4-session:2160): xfce4-session-WARNING **: 14:49:35.505: xfsm_manager_load_session: Something wrong with /home/robert/.cache/sessions/xfce4-sessions/xfce4-session-gentoo:0, Does it exist? Permissions issue? (xfwm4:2206): xfwm4-WARNING **: 14:49:35.684: Unsupported GL renderer (llvmpipe (LLVM 11.0.0, 256 bits)). Gdk-message: 14:49:35.689: xfwm4: Fatal IO error 11 (Resource temporarily unavailable) on X server :0. Gdk-message: 14:49:35.689: xfce4-session: Fatal IO error 11 (Resource temporarily unavailable) on X server :0. gpg-agent[2205]: socket file has been removed - shutting down gpg-agent[2205]: gpg-agent (GnuPG) 2.2.20 stopped (xfsettingsd:2238): xfsettingsd-ERROR **: 14:49:35.837: Unable to open display. Thanks!
I needed the correct Nvidia firmware files. For anyone else that has this problem look into building firmware into the kernel.
This is perplexing. I just installed on a new AMD system and for some reason, the spell check highlighting in pidgin isn't working at all. This worked fine on my old x86 machine using the exact same USE flags (including spell) and with the exact same configuration (with Preferences -> Conversations -> Highlight misspelled words checked). Not sure what else to check...anyone else ever run into this? Sort of out of ideas on this one. Tom
I'm revisiting this one...very annoying as I could really use this. Pidgin apparently uses gtkspell and I have app-text/gtkspell-2.0.16-r1 installed. Any ideas on this one? I'm coming up totally empty. EDIT: Got it! I needed to add the "aspell" USE flag to app-text/enchant. Marked as solved. Tom
Quick question: How do I replace xfwm4 with i3? I have edited ~/.xinitrc to have i3 in it, but neofetch still shows me that xfwm4 is my window manager.
This can help ?
Unaccountably, my Xorg.0.log in /var/log is way out of date. The current one is found in ~/.local/share/xorg/Xorg.0.log. This is true of at least two systems i maintain. Is this something odd in my configuration? Have I missed a trick here?
rickj, Xorg used to run as root. It had the suid bit set. That's still an option if you build it with USE=suid It still needs to be root for some of the setup. Now, by default, that's managed by systemd or elogind. See the news item. Code: [49] N 2020-06-24 xorg-server dropping default suid
Hello, I have problem with sddm after update system. Sddm on vt7 create black screen with no blinking cursor on top-left corner. Startx working fine. If I run sddm as root from console, it gives Code: /usr/bin/xauth: (stdin):1: bad "remove" command line /usr/bin/xauth: (stdin):2: bad "add" command line If I run sddm via /etc/init.d/xdm, there is no error message. I also cannot find any error in logs.
Add sddm user to the video group.
Im trying to install Xorg for XFCE and whenever I do it, it fails. Here is the log: https://dpaste.com/56XE78S7Z and here is my make.conf: https://dpaste.com/G8UQYQTWP
qubloo, configure.log: configure:3534: x86_64-pc-linux-gnu-gcc -march=native -02 -pipe -Wl,-O1 -Wl,--as-needed conftest.c >&5 x86_64-pc-linux-gnu-gcc: error: unrecognized command line option '-02' Is the error. You have numeral 0 in place of letter O. That's not what you have in Code: COMMON_FLAGS="-march=native -O2 -pipe" so it looks like you have fixed it. On to your next Gentoo learning opportunity.
I did a world update yesterday and the qt libraries changed to 5.13.2. Unfortunately I am unable to enter an LXQt session. I have lightdm as DM and when I try to log in it comes back to the login screen. I use Gentoo LXQt in a VM with VirtualBox. When I do CTRL Right + F2 I get to a tty and after logging in I launch startlxqt and I get these messages: qt.qpa.xcb: could not connect to display qt.qpa.plugin: Could not load the Qt platform plugin "xcb" in "" even though it was found. This application failed to start because no Qt platform plugin could be initialized. Reinstalling the application may fix this problem. Available platform plugins are: minimal, offscreen, wayland-egl, wayland, xcb. I tried to rebuild libxcb but to no avail. I tried export QT_QPA_PLATFORM_PLUGIN_PATH=/usr/lib64/qt5/plugins/ But after a few seconds I get the same message as above. When I type startx I get a TWM session with three instances of xterm. So obviously I need to to find a way to initialize the plugin but I don't know how. I am not going to reinstall all the qt5 libraries.
pourpier wrote: When I do CTRL Right + F2 I get to a tty and after logging in I launch startlxqt and I get these messages: qt.qpa.xcb: could not connect to display qt.qpa.plugin: Could not load the Qt platform plugin "xcb" in "" even though it was found. This application failed to start because no Qt platform plugin could be initialized. Reinstalling the application may fix this problem. Available platform plugins are: minimal, offscreen, wayland-egl, wayland, xcb. This is what happens when running 'startlxqt' directly. It should be done via the '.xinitrc' and 'startx' instead. I don't know about the issue with lightdm; no one reported issues like that before this, that I know of, but I'll see if I can find some time to test it out at some point.
I finally got the gonome-remote-desktop working but when I try to connect from another Gnome machine on my LAN I get the following in my messages log: Code: Dec 26 19:23:28 macpro gnome-shell[2412]: g_udev_client_query_by_device_file: assertion 'device_file != NULL' failed Dec 26 19:23:28 macpro kernel: gnome-remote-de[2923]: segfault at 0 ip 00007f9a59d5a417 sp 00007ffed9363c40 error 4 in libvncserver.so.0.9.13[7f9a59d43000+33000] Dec 26 19:23:28 macpro kernel: Code: 00 00 00 89 cf 83 c2 01 40 d0 ef 83 e1 01 89 f9 bf 80 ff ff ff 0f 45 cf 48 01 f0 39 da 74 54 89 d7 c1 ff 03 44 01 c7 48 63 ff <41> 84 0c 3b 75 9b 83 fe 08 0f 83 aa 00 00 00 44 8b 54 24 0c 45 85 Dec 26 19:23:28 macpro systemd[1]: Created slice system-systemd\x2dcoredump.slice. Dec 26 19:23:28 macpro systemd[1]: Started Process Core Dump (PID 6581/UID 0). Dec 26 19:23:28 macpro systemd[2216]: gnome-remote-desktop.service: Main process exited, code=dumped, status=11/SEGV Dec 26 19:23:28 macpro systemd[2216]: gnome-remote-desktop.service: Failed with result 'core-dump'. Dec 26 19:23:28 macpro gnome-shell[2412]: D-Bus client with active sessions vanished Dec 26 19:23:29 macpro systemd-coredump[6582]: Process 2923 (gnome-remote-de) of user 1000 dumped core. Dec 26 19:23:29 macpro systemd[1]: systemd-coredump@0-6581-0.service: Succeeded. Dec 26 19:23:29 macpro systemd[2216]: gnome-remote-desktop.service: Scheduled restart job, restart counter is at 1. Dec 26 19:23:29 macpro systemd[2216]: Stopped GNOME Remote Desktop. Dec 26 19:23:29 macpro systemd[2216]: Starting GNOME Remote Desktop... Dec 26 19:23:29 macpro systemd[2216]: Started GNOME Remote Desktop. Dec 26 19:23:29 macpro gnome-remote-de[6592]: Failed to initialize RDP server: Couldn't find the server certificate or private keyfile Gnome's website is of little help on this topic: https://help.gnome.org/users/vinagre/stable/connect.html.en Can someone point me in the right direction on how to enable the trust between the server and client in Gnome for gnome-remote-desktop?
Depending on how it invokes ssh, and how much effort you want to expend, you might be able to make it work with 2FA anyway. If you enable ssh connection multiplexing, manually connect a freestanding ssh process to the server, complete your 2FA challenge in that shell, and leave that shell sitting as the connection multiplex master, then subsequent ssh processes created by Gnome RDP could reuse that connection. Such processes would not need to complete any challenge (not 2FA, not public key, not password) because they would be pretrusted because of the multiplexed connection. Thus, Gnome RDP could pretend that there was no 2FA required on the connection. The server would be happy because it performed the regular 2FA check on the first channel in the connection. If you want to pursue this, find out exactly how Gnome invokes the ssh client, and read man ssh_config for ControlMaster and ControlPath . If you want help implementing it, post back with what you have done and where you got stuck.
I know, I know, deleting does not really delete; it just marks for deletion and you have to expunge (ctrl-E). It doesn't work. Emails remain in my remote INBOX when they are dragged to my local IMAP server (i.e., they are copied not moved) and if I delete an email then expunge, it's still there. ls in the inbox on the remote machine still sees it, as does Trojitá. To make it even worse, File/Empty Wastebasket brings them all back. Version 3.38.2. Since I cannot find any references to this problem on the WWW, it seems that I must be doing something wrong. What? On further investigation, I cannot find an email client that works properly with my multiple IMAP accounts with multiple nested folders: Evolution -- as above. Geary -- uses 'tags' rather than real folders and stuffs-up when I move (drag) an email to a 'tag'. Thunderbird -- almost works, shows INBOX but reckon's there's a password error for any other folder on the server. Claws -- works but won't render HTML properly.
Whatever it was, a restart of Evolution has fixed it.
I have a fresh installation of Gentoo/Plasma. When I now try to install cifs-utils, sys-libs/db-5.3.28-r5 will be installed in a new slot, alongside the already installed version 6.0.35-r3. But that is impossible due to file collisions (/usr/lib64/libdb.so) between the two versions. I masked all versions of sys-libs/db higher than 5.3.28-r5, unmerged the installed version 6.0.35-r3 en merged the older version. I had to execute emerge @preserved-rebuild to rebuild a few packages against the older version but that worked OK. I do not know if what I did is correct and if not, how should I solve this problem?
https://bugs.gentoo.org/765625 Supposedly already fixed after your next sync: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e154526e7b59f94428b302b6360e54b5f689b9a5
I did the kde-frameworks update (5.74 → 5.77, I think) yesterday evening. After logging out and in again, I cannot start applications using krunner: normally, when I type, I get a list of applications and I select, but now no suggestions at all appear. Moreover, also in the menu, there are no applications, so I cannot start them that way either. Furthermore, konsole (inside yakuake) wouldn't start. To make it baffling, when I log in with another user (clean test account), all these things work. So I guess something in my user's profile/settings became corrupted, but I have no idea where to look. So any pointers are welcome.
Can you start xterm , so that we can have a text interface with which to do further work? If yes, please start konsole from the xterm , so that any error output printed by Konsole appears in the xterm, where we can see it. I hope we will get some message there that will hint as to what is causing konsole not to work properly.
Whenever I do emerge —ask x11-terms/kitty it gives me this: https://dpaste.com/9PT37BMPC does anyone know how to fix this? Here is my emerge —info https://dpaste.com/3YXVN7LBH
Masked by keywords means that there is no a stable version so you should use /etc/portage/package.accept_keywords for unmask it
Xflock locks the screen, but never asks for a password at any time. If I type in the terminal xflock4 it locks normally, suspend, but also without asking for the user password. Any Jedi knows something for help? Tip: Using lightdm as a display manager.
Hi I think it might be a polkit thing. Try creating a file /etc/polkit-1/rules.d/40-lockscreen.rules Code: polkit.addRule(function(action, subject) { if (action.id == "org.freedesktop.login1.lock-sessions" || action.id == "org.freedesktop.login1.suspend" { return polkit.Result.NO; } }); If you get problems then just delete the file. You can get a full list of polkit rules by typing pkaction and more info on any rule by pkaction -v -a <rule-name> BUT before doing all this maybe you should try xfce power settings from the desktop.
Hi all. I've just upgraded my Gentoo laptop and now I can see xscreensaver throws the following warnings with my currently selected "module" (flurry): Code: xscreensaver: unable to find any alternatives to "-*-helvetica-bold-r-*-*-*-180-*-*-*-iso8859-1" xscreensaver: unable to find any alternatives to "-*-helvetica-bold-r-*-*-*-140-*-*-*-iso8859-1" xscreensaver: unable to find any alternatives to "-*-helvetica-bold-r-*-*-*-140-*-*-*-iso8859-1" xscreensaver: unable to find any alternatives to "-*-helvetica-bold-r-*-*-*-140-*-*-*-iso8859-1" xscreensaver: unable to find any alternatives to "-*-courier-medium-r-*-*-*-140-*-*-*-iso8859-1" xscreensaver: unable to find any alternatives to "-*-helvetica-medium-r-*-*-*-80-*-*-*-iso8859-1" xscreensaver: unable to find any alternatives to "-*-helvetica-bold-r-*-*-*-120-*-*-*-iso8859-1" I have seen this issue in arch from the forum but I cannot seem to figure out how to fix this when applying the solution to Gentoo. I have installed package " media-fonts/freefonts " but it doesn't help. I've also tried to tweak /usr/share/fonts/misc/fonts.alias but it didn't help either (I scrapped my changes). I guess it's all got to do with providing font aliases such as *-helvetica-* or something but I don't really understand how it works. How can I fix those warnings? Thanks a lot in advance for any hint/suggestion.
Thanks Xavier and kurisu. Will try that. This said, is it not possible to define aliases for those missing fonts? EDIT: I tried media-fonts/font-adobe-100dpi but it doesn't seem to work. I ran xset fp rehash as suggested, killed then restarted the screen saver daemon, no change. I find it weird as I have media-fonts/liberation-fonts installed, which provides Helvetica/Times/Courier replacement fonts... I guess the requested sizes (120, 140 & 180) does cause troubles. kurisu wrote: You should install x11-base/xorg-x11[fonts]. Requires some extra disk space, but works. I may be dumb but I don't find such package
In my last thread, I ran into a problem where nouveau had been built in to xorg-drivers (I've got an AMD GPU card). I'd not properly defined my VIDEO_CARDS, and built xorg-x11, and things got weird... I have an amdgpu card, and the module is loaded. I had to add radeonsi to my VIDEO_CARDS... I rebuilt a lot of things, and then X started working. I ran glxgears, ran enlightenment, and everything looked like it was working fine. Throughout this debug session I was running fluxbox or enlightenment as root. Today, I had some time and just wanted to see how the new machine would look running a game, installed Steam as root in enlightenment. I logged out, and back in as user, started X and set up Steam, installed Warthunder - no window manager, because I hadn't set up .xinitrc for my user, no big deal. I started Warthunder and got a popup about my video driver not being supported, to make sure I got the latest... I logged out as my user, exited X, and ran an emerge --sync & -auv world, nothing to update, no rebuilds... I copied my root .xinitrc and .zshrc over to my user, changed ownership, and exited as root. I logged back in as user, started X and the machine hung. It hung right where Xorg says it'll start logging... so no log entry related to the hang. I rebooted the machine, ran startx as user again, and the machine hung in the same place. Reset, log in as root, startX, no dice - machine hangs. Right now, I'm looking at a terminal with: Code: X.org X Server 1.20.10 ... ... (==) Log File: "/var/log/Xorg.0.log", Time: Wed Jan 13 20:58:05 2021 (== Using system config directory "/usr/share/X11/xorg.conf.d" _ I've looked at the cited log and it is empty. I'm a little stumped. What do I do, short of uninstalling and rebuilding X?
whitt, Lets start at the very beginning and try some analysis. Boot however you like, it need not be Gentoo. Put the output of Code: lspci -nnk onto a pastebin. Get into your chroot and put the output of Code: emerge --info onto a pastebin. Put your Gentoo kernel .config file onto a pastebin. That's usually at /usr/srcl/linux/.config but need not be. Boot your Gentoo to the console and pastebin the output of Code: dmesg Don't filter anything. We are looking for both what is but shouldn't be and what isn't there but should be. This will tell us your hardware and your global Gentoo configuration. We can match that aginist you kernel .config in case that's breaking something. dmesg will show what the kernel does when your system starts. Long shot sanity test. Move your ~/.xinitrc out of the way. A rename is good. Code: emerge -1av xterm xclock twm startx should now draw three xterms and an analogue clock, all wrapped up in twm. If that works, Xorg is fine.
First to just get my rant out of the way...If it were possible I'd never go withing a million miles of anything mozilla. I'd be using something like claws mail for sure, but because of my work and the fact that everyone out there insists on using HTML email (which I personally detest with a passion, but must be able to reply to in HTML) I'm pretty much forced to use thunderbird.</rant> That aside, I'm installing on a new AMD machine currently. On my archaic x86 machine I was running a very old version of thunderbird (mail-client/thunderbird-52.9.1). On the new machine I'll be using the current stable (despite a lot of dependencies I don't like), which will be mail-client/thunderbird-78.6.0. I just installed that today. There's no way I want to configure that from scratch. I copied my entire ~/.thunderbird directory to my home on the new machine. How on EARTH can I get the new version to use that? It wants to create a new profile, and it appears it's creating a ~/.mozilla directory. Nothing I've googled is answering this. I've found similar questions but no answer that works or makes sense. Thanks in advance for any advice. Tom
nick_gentoo wrote: Hi, this was useful for me in the past: http://kb.mozillazine.org/Moving_your_profile_folder_-_Thunderbird Inside ~/.thunderbird, there is a profiles.ini file that defines the location of each profile. Thanks! Unlike everything else I've read that actually helped. All good! What I did specifically was: a) On the new system, create and empty ~/.thunderbird directory. b) Copy my existing profile folder from the old machine's ~/.thunderbird directory to the new systems ~/.thunderbird. c) Ran "thunderbird -profilemanager" and chose Create New profile, and in that dialog used the "Choose Folder" button to choose the copied profile directory. Worked like a charm! Thanks again. Tom
Lately this behavior started manifesting.. Like in zsh..But I do not have zsh installed. Is there a way to stop this annoying behavior? Thanks guys........
It's because of new readline-8.1 which made this default, if want it off: Code: echo set enable-bracketed-paste off >> ~/.inputrc Will then be disabled on new shells.
Hello there! I just finished my new Gentoo install yesterday. It seemed to work fine until I tried to install a DE and found I don't have permission to start a GUI session. This is what I have done so far: -I am currently using the Desktop profile, but I have done with Desktop/gnome just in case it would be magically fixed by Wayland. -I am in the wheel and video groups. In my desperation I even added myself into tty, input and root groups, but no luck -I can do a startx fine from root, everything works fine, but not as a normal user -I can sort of start session as a normal user if I force it into my current session (pe: startx -- vt1), but I get a black screen: Trying to use any other tty session or login to kill X is fruitless, as I keep having a black screen and I need to force restart the computer (normal user only, root works as itended and I can switch ttys). -I am using an Intel integrated graphics card. No difference between the driver compiles as module or into the kernel. Drivers are installed (but again, root can do a X session no probs). when I try to do a startx without arguments I get this error: (EE) xf86OpenConsole: Cannot open virtual console 7 (permission denied). At first the mensage was a bit different, something about /dev/tty7, but in one of my tries it changed and I can reproduce the original error. Thank you in advance!
Does this page help: https://wiki.gentoo.org/wiki/Non_root_Xorg
Fresh installed Gentoo Systemd Gnome system. On boot a blank screen with a cursor in the upper left corner. I can via Ctrl/Alt/F2 logon as root. systemctl stop gdm systemctl start gdm gdm starts up and I can logon with my normal user into gnome. Already tried to disable gdm and reenable it. no luck.
Any errors in xorg.log?
When I move a window across the Chromium window, it leaves a "blur." As soon as you mouse over the Chromium window, the blur disappears. I'm using chromium-88.0.4324.50 and I believe this problem started one or two versions prior to this one. Any debugging hints will be greatly appreciated. [SOLVED] Thanks to Ant P. for pointing out that it was a compositor problem. I'm using KDE/Plasma and System Settings > Display and Monitor > Compositor showed that the rendering backend, OpenGL 3.1, had crashed. Simply re-enabling it fixed the problem. [/SOLVED] [UPDATE] Recently changing to full screen in Chromium produced a black screen. This Stack Overflow post suggests that Nvidia graphics cards are better served by XRender than OpenGL. Switching to XRender has solved, for the moment, this black screen problem. [/UPDATE]
Chromium expects you to be using a compositor and does not bother to implement xdamage correctly.
I've recently been getting sucked into the world of dwm and other suckless.org apps. Having a little issue with my custom .dwmrc script though, probably a dumb mistake but hopefully somebody here can help. I'm using lightdm to log in, and it seems to call a script in /etc/X11/Sessions/dwm: Code: #!/bin/sh DIR=${HOME}/.dwm if [ -f "${DIR}"/dwmrc ]; then /bin/sh "${DIR}"/dwmrc & else while true; do xsetroot -name "`date`" sleep 1 done & fi exec /usr/bin/dwm So I created my own file in ~/.dwm/dwmrc, to launch some apps and also runs a while loop to update the statusbar: Code: #!/bin/sh while true; do BatStatus=$(cat /sys/class/power_supply/cw2015-battery/status) BatStatus=${BatStatus:0:1} BatState=$(cat /sys/class/power_supply/cw2015-battery/capacity) xsetroot -name "$(cat /proc/loadavg) | $BatStatus$BatState | $(date '+%b %d %a') | $(date '+%H:%M')" # xsetroot -name " $(date '+%b %d %a') | $(date '+%H:%M') " sleep 1 done & /usr/bin/nextcloud --background & /usr/bin/keepassxc & /usr/bin/clementine & This works great, mostly - the only problem is, when I log out of dwm (by hitting Shift+Alt+Q), the while loop continues running. And if I log back in again, now it is running twice. How can I make it kill the script when I log out?
Why dont' you kill a script before logging out ? Code: killall -9 dwmrc Though it's probably a lighdm thing, I don't use it so I can't tell, if you're the only user maybe you can switch from it to 'startx' Or change the status generation to something else https://dwm.suckless.org/status_monitor/
so i noticed while installing gentoo via chroot in arch linux, that the title of the terminal app (think it was konsole), would change to show which package was being installed and that it was number x out of the total. how can i bring this into konsole (plasma)?
Hi milomak, I don't have my system in English. But it should be something like this: Open Konsole: click "Settings" - "Set up console" - "General" - "Show window title in title bar" Ma
Hello guys, I use Openbox as my window manager. By adding these lines to /etc/X11/xorg.conf.d/10-keyboard.conf Code: Section "InputClass" Identifier "thinkpad60" Driver "evdev" Option "XkbLayout" "gb,gr" Option "XkbVariant" "extd,extended" Option "XkbOptions" "grp:alt_shift_toggle,grp_led:caps" MatchIsKeyboard "on" EndSection I am able to switch globally between british and greek layout. However, I often need to write greek in one window or application and english to another one. As far as I remember, KDE and Gnome Shelll have such an option but with Openbox I haven't found a way yet. In Arch Linux forums I have found this old solution https://bbs.archlinux.org/viewtopic.php?id=69445 to create /etc/hal/fdi/10-keymap.fdi and add these lines Code: <?xml version="1.0" encoding="ISO-8859-1"?> <!-- -*- SGML -*- --> <deviceinfo version="0.2"> <device> <match key="info.capabilities" contains="input.keymap"> <append key="info.callouts.add" type="strlist">hal-setup-keymap</append> </match> <match key="info.capabilities" contains="input.keys"> <merge key="input.xkb.rules" type="string">base</merge> <!-- If we're using Linux, we use evdev by default (falling back to keyboard otherwise). --> <merge key="input.xkb.model" type="string">keyboard</merge> <match key="/org/freedesktop/Hal/devices/computer:system.kernel.name" string="Linux"> <merge key="input.xkb.model" type="string">evdev</merge> </match> <merge key="input.xkb.layout" type="string">us,il</merge> <merge key="input.xkb.model" type="string">pc105</merge> <merge key="input.xkb.Options" type="string">grp:ctrl_shift_toggle</merge> </match> </device> </deviceinfo> and then install xxkb and load it with system start up. But this solution is over 10 years old and it needs hal. Is there any way to implement in in a current system? thanks in advance
kbdd solved the problem! Thanks a lot for your help both of you!
Can anyone put an older version of dev-qt/webengine on the gentoo packages site ? Quote: dev-qt/qtwebengine Available versions: (5) 5.14.2(5/5.14)^t ~5.15.0(5/5.15)^t {alsa bindist debug designer geolocation jumbo-build kerberos pulseaudio +system-ffmpeg +system-icu test widgets} Installed versions: 5.14.2(5/5.14)^t(13:02:06 10-10-20)(alsa pulseaudio system-ffmpeg system-icu widgets -bindist -debug -designer -geolocation -jumbo-build -kerberos -test) Homepage: https://www.qt.io/ Description: Library for rendering dynamic web content in Qt5 C++ and QML applications I need version 5.14.2 to compile. Version 5.15;* gives errors.
It might be easier to fix the errors depending on what exactly they are. :]
Hello guys, i come here as a last resource after exausting every research i could do. I have a unicode support problem in my freshly installed Gentoo. First let me tell you about my setup: DWM, ST, DMENU, DWMBLOCKS Font used: FantasqueSans Nerd Font Shell: zsh with starship.rs I have libXft patched to display colored emojis in ST. emerge --info Code: Portage 3.0.12 (python 3.8.6-final-0, default/linux/amd64/17.1/hardened, gcc-10.2.0, glibc-2.32-r5, 5.10.1-gentoo x86_64) ================================================================= System uname: Linux-5.10.1-gentoo-x86_64-Intel-R-_Core-TM-_i7-1065G7_CPU_@_1.30GHz-with-glibc2.2.5 KiB Mem: 15970036 total, 13646284 free KiB Swap: 16777212 total, 16777212 free Timestamp of repository gentoo: Mon, 21 Dec 2020 04:30:01 +0000 Head commit of repository gentoo: 20a6be318ebc738b8ca0fb36e01499035277f39d Timestamp of repository brave-overlay: Sat, 19 Dec 2020 15:35:02 +0000 Head commit of repository brave-overlay: e27c6aa6acf3da12c2353dc0e6e35eb6ecc20a3f Timestamp of repository lto-overlay: Wed, 16 Dec 2020 23:54:22 +0000 Head commit of repository lto-overlay: 27d78a34400fbe50592424eecd6f6185beae7ff3 Timestamp of repository mv: Wed, 16 Dec 2020 23:53:35 +0000 Head commit of repository mv: 4ab1012b2f7a04558d48d180963afc5c5d015732 sh bash 5.1_p4 ld GNU ld (Gentoo 2.34 p6) 2.34.0 ccache version 4.1 [disabled] app-shells/bash: 5.1_p4::gentoo dev-lang/perl: 5.30.3-r1::gentoo dev-lang/python: 3.7.9::gentoo, 3.8.6-r1::lto-overlay, 3.9.1::gentoo dev-util/ccache: 4.1::gentoo dev-util/cmake: 3.19.2::gentoo sys-apps/baselayout: 2.7-r1::gentoo sys-apps/openrc: 0.42.1::gentoo sys-apps/sandbox: 2.20::gentoo sys-devel/autoconf: 2.13-r1::gentoo, 2.69-r5::gentoo sys-devel/automake: 1.16.3-r1::gentoo sys-devel/binutils: 2.34-r2::gentoo, 2.35.1-r1::gentoo sys-devel/gcc: 10.2.0-r4::gentoo sys-devel/gcc-config: 2.3.2-r1::gentoo sys-devel/libtool: 2.4.6-r6::gentoo sys-devel/make: 4.3::gentoo sys-kernel/linux-headers: 5.10::gentoo (virtual/os-headers) sys-libs/glibc: 2.32-r5::gentoo Repositories: gentoo location: /var/db/repos/gentoo sync-type: rsync sync-uri: rsync://rsync.gentoo.org/gentoo-portage priority: -1000 sync-rsync-verify-metamanifest: yes sync-rsync-extra-opts: sync-rsync-verify-max-age: 24 sync-rsync-verify-jobs: 1 brave-overlay location: /var/db/repos/brave-overlay sync-type: git sync-uri: https://github.com/gentoo-mirror/brave-overlay.git masters: gentoo lto-overlay location: /var/db/repos/lto-overlay sync-type: git sync-uri: https://github.com/gentoo-mirror/lto-overlay.git masters: gentoo mv mv location: /var/db/repos/mv sync-type: git sync-uri: https://github.com/gentoo-mirror/mv.git masters: gentoo ACCEPT_KEYWORDS="amd64 ~amd64" ACCEPT_LICENSE="@FREE" CBUILD="x86_64-pc-linux-gnu" CFLAGS="-pipe -march=icelake-client -O3 -fgraphite-identity -floop-nest-optimize -fdevirtualize-at-ltrans -fipa-pta -fno-semantic-interposition -flto=auto -fuse-linker-plugin -falign-functions=32" CHOST="x86_64-pc-linux-gnu" CONFIG_PROTECT="/etc /usr/share/gnupg/qualified.txt" CONFIG_PROTECT_MASK="/etc/ca-certificates.conf /etc/dconf /etc/env.d /etc/fonts/fonts.conf /etc/gconf /etc/gentoo-release /etc/sandbox.d /etc/terminfo /etc/texmf/language.dat.d /etc/texmf/language.def.d /etc/texmf/updmap.d /etc/texmf/web2c" CXXFLAGS="-pipe -march=icelake-client -O3 -fgraphite-identity -floop-nest-optimize -fdevirtualize-at-ltrans -fipa-pta -fno-semantic-interposition -flto=auto -fuse-linker-plugin -falign-functions=32" DISTDIR="/var/cache/distfiles" ENV_UNSET="CARGO_HOME DBUS_SESSION_BUS_ADDRESS DISPLAY GOBIN GOPATH PERL5LIB PERL5OPT PERLPREFIX PERL_CORE PERL_MB_OPT PERL_MM_OPT XAUTHORITY XDG_CACHE_HOME XDG_CONFIG_HOME XDG_DATA_HOME XDG_RUNTIME_DIR" FCFLAGS="-pipe -march=icelake-client -O3 -fgraphite-identity -floop-nest-optimize -fdevirtualize-at-ltrans -fipa-pta -fno-semantic-interposition -flto=auto -fuse-linker-plugin -falign-functions=32" FEATURES="assume-digests binpkg-docompress binpkg-dostrip binpkg-logs config-protect-if-modified distlocks ebuild-locks fixlafiles ipc-sandbox merge-sync multilib-strict network-sandbox news parallel-fetch pid-sandbox preserve-libs protect-owned qa-unresolved-soname-deps sandbox sfperms strict unknown-features-warn unmerge-logs unmerge-orphans userfetch userpriv usersandbox usersync xattr" FFLAGS="-pipe -march=icelake-client -O3 -fgraphite-identity -floop-nest-optimize -fdevirtualize-at-ltrans -fipa-pta -fno-semantic-interposition -flto=auto -fuse-linker-plugin -falign-functions=32" GENTOO_MIRRORS="https://gentoo.c3sl.ufpr.br/ http://gentoo.c3sl.ufpr.br/ rsync://gentoo.c3sl.ufpr.br/gentoo/ http://gentoo.mirrors.tds.net/gentoo http://gentoo.cs.utah.edu/" LANG="pt_BR.UTF-8" LDFLAGS="-Wl,-O1 -Wl,--as-needed" MAKEOPTS="-j9" PKGDIR="/var/cache/binpkgs" PORTAGE_CONFIGROOT="/" PORTAGE_RSYNC_OPTS="--recursive --links --safe-links --perms --times --omit-dir-times --compress --force --whole-file --delete --stats --human-readable --timeout=180 --exclude=/distfiles --exclude=/local --exclude=/packages --exclude=/.git" PORTAGE_TMPDIR="/var/tmp" USE="acl acpi alsa amd64 bluetooth bzip2 crypt dbus elogind fontconfig graphite gtk gui hardened iconv icu ipv6 libglvnd libtirpc lto multilib ncurses nls nptl openmp pam pcre pgo pie policykit pulseaudio readline seccomp split-usr ssl ssp truetype ttf unicode vulkan x xattr xinerama xtpax zlib zsh-completion" ABI_X86="64" ADA_TARGET="gnat_2018" ALSA_CARDS="ali5451 als4000 atiixp atiixp-modem bt87x ca0106 cmipci emu10k1x ens1370 ens1371 es1938 es1968 fm801 hda-intel intel8x0 intel8x0m maestro3 trident usb-audio via82xx via82xx-modem ymfpci" APACHE2_MODULES="authn_core authz_core socache_shmcb unixd actions alias auth_basic authn_alias authn_anon authn_dbm authn_default authn_file authz_dbm authz_default authz_groupfile authz_host authz_owner authz_user autoindex cache cgi cgid dav dav_fs dav_lock deflate dir disk_cache env expires ext_filter file_cache filter headers include info log_config logio mem_cache mime mime_magic negotiation rewrite setenvif speling status unique_id userdir usertrack vhost_alias" CALLIGRA_FEATURES="karbon sheets words" COLLECTD_PLUGINS="df interface irq load memory rrdtool swap syslog" CPU_FLAGS_X86="aes avs avx avx2 f16c fma3 mmx mmxext pclmul popcnt sse sse2 sse3 sse4_1 sse4_2 ssse3" ELIBC="glibc" GPSD_PROTOCOLS="ashtech aivdm earthmate evermore fv18 garmin garmintxt gpsclock greis isync itrax mtk3301 nmea ntrip navcom oceanserver oldstyle oncore rtcm104v2 rtcm104v3 sirf skytraq superstar2 timing tsip tripmate tnt ublox ubx" INPUT_DEVICES="libinput synaptics" KERNEL="linux" LCD_DEVICES="bayrad cfontz cfontz633 glk hd44780 lb216 lcdm001 mtxorb ncurses text" LIBREOFFICE_EXTENSIONS="presenter-console presenter-minimizer" LUA_SINGLE_TARGET="lua5-1" LUA_TARGETS="lua5-1" OFFICE_IMPLEMENTATION="libreoffice" PHP_TARGETS="php7-2 php7-3 php7-4" POSTGRES_TARGETS="postgres10 postgres11" PYTHON_SINGLE_TARGET="python3_8" PYTHON_TARGETS="python2_7 python3_8" RUBY_TARGETS="ruby25 ruby26" USERLAND="GNU" VIDEO_CARDS="i965 intel iris" XTABLES_ADDONS="quota2 psd pknock lscan length2 ipv4options ipset ipp2p iface geoip fuzzy condition tee tarpit sysrq steal rawnat logmark ipmark dhcpmac delude chaos account" Unset: CC, CPPFLAGS, CTARGET, CXX, EMERGE_DEFAULT_OPTS, INSTALL_MASK, LC_ALL, LINGUAS, PORTAGE_BINHOST, PORTAGE_BUNZIP2_COMMAND, PORTAGE_COMPRESS, PORTAGE_COMPRESS_FLAGS, PORTAGE_RSYNC_EXTRA_OPTS The issue: I use this exact setup in other distros and i got zero problems. I have font ligatures in terminal, i have emojis in my zsh prompt. My issue is with a few characters that simply won't render, leaving me with empty boxes Example: ⇡ ⇣ ❯ ➜    I have liberation font, a bunch nerd fonts, updated fc-cache Code: Available fontconfig .conf files (* is enabled): [1] 10-autohint.conf * [2] 10-hinting-full.conf * [3] 10-hinting-medium.conf * [4] 10-hinting-none.conf * [5] 10-hinting-slight.conf * [6] 10-no-sub-pixel.conf [7] 10-scale-bitmap-fonts.conf * [8] 10-sub-pixel-bgr.conf [9] 10-sub-pixel-rgb.conf [10] 10-sub-pixel-vbgr.conf [11] 10-sub-pixel-vrgb.conf [12] 10-unhinted.conf [13] 11-lcdfilter-default.conf [14] 11-lcdfilter-legacy.conf [15] 11-lcdfilter-light.conf [16] 20-unhint-small-vera.conf * [17] 25-unhint-nonlatin.conf [18] 30-metric-aliases.conf * [19] 40-nonlatin.conf * [20] 45-generic.conf * [21] 45-latin.conf * [22] 49-sansserif.conf * [23] 50-user.conf * [24] 51-local.conf * [25] 60-generic.conf * [26] 60-latin.conf * [27] 60-liberation.conf * [28] 65-fonts-persian.conf * [29] 65-khmer.conf [30] 65-nonlatin.conf * [31] 69-unifont.conf * [32] 70-no-bitmaps.conf * [33] 70-yes-bitmaps.conf * [34] 80-delicious.conf * [35] 90-synthetic.conf *
fabricio7p wrote: etnull wrote: fabricio7p wrote: i found a bgra.diff patch and reemerged it with this patch Can you share it? I'm interested to do it myself. https://github.com/fabricio7p/GentooBox/tree/master/portage/patches/x11-libs/libXft-2.3.3 Link not working. Get 404
Hi, I got this as the last line in my Xorg.0.log: Code: (EE) Failed to open authorization file "/var/run/sddm/{6e949719-fe9d-4a71-b7fd-52e665c19cb4}": No such file or directory But the file exists: Code: micha@mobiletux ~ $ ls -l /var/run/sddm/ insgesamt 4 -rw------- 1 sddm sddm 54 1. Jun 22:58 {6e949719-fe9d-4a71-b7fd-52e665c19cb4} Sometimes I can login into Plasma via SDDM, sometimes I end up in the console without seeing any graphical login and have to reboot. SDDM and UDEV services are hanging if this happens. Any ideas? Thanks! Xorg.0.log: https://pastebin.com/4Snbx5im
koschi wrote: My logs but they don't give me a hint... /var/log/sddm.log: Code: [07:25:51.592] (II) DAEMON: Initializing... [07:25:51.596] (II) DAEMON: Starting... [07:25:51.596] (II) DAEMON: Console kit interface found [07:25:51.597] (II) DAEMON: Adding new display on vt 7 ... [07:25:51.597] (II) DAEMON: Loading theme configuration from "" [07:25:51.597] (II) DAEMON: Display server starting... [07:25:51.597] (II) DAEMON: Running: /usr/bin/X -nolisten tcp -auth /var/run/sddm/{00fffc44-d09e-4a8e-b59d-774ee1aa3eec} -background none -noreset -displayfd 17 -seat seat0 vt7 /var/log/Xorg.0.log: Code: [ 6.814] (--) Log file renamed from "/var/log/Xorg.pid-2108.log" to "/var/log/Xorg.0.log" [ 6.814] X.Org X Server 1.20.4 X Protocol Version 11, Revision 0 [ 6.814] Build Operating System: Linux 4.19.27-gentoo-r1 x86_64 Gentoo [ 6.814] Current Operating System: Linux mobiletux 4.19.49-gentoo #2 SMP Sun Jun 16 14:08:32 CST 2019 x86_64 [ 6.814] Kernel command line: \vmlinuz-4.19.49-gentoo ro root=/dev/sda1 rootflags=subvol=ROOT_latest i8042.nopnp mtrr_gran_size=8M mtrr_chunk_size=8M i915.fastboot=1 pcie_aspm=off [ 6.814] Build Date: 27 April 2019 04:08:41PM [ 6.814] [ 6.815] Current version of pixman: 0.38.4 [ 6.815] Before reporting problems, check http://wiki.x.org to make sure that you have the latest version. [ 6.815] Markers: (--) probed, (**) from config file, (==) default setting, (++) from command line, (!!) notice, (II) informational, (WW) warning, (EE) error, (NI) not implemented, (??) unknown. [ 6.815] (==) Log file: "/var/log/Xorg.0.log", Time: Mon Jun 17 07:25:51 2019 [ 6.816] (==) Using config directory: "/etc/X11/xorg.conf.d" [ 6.816] (==) Using system config directory "/usr/share/X11/xorg.conf.d" [ 6.816] (==) ServerLayout "layout" [ 6.816] (**) |-->Screen "nvidia" (1) [ 6.816] (**) | |-->Monitor "<default monitor>" [ 6.816] (**) | |-->Device "nvidia" [ 6.816] (==) No monitor specified for screen "nvidia". Using a default monitor configuration. [ 6.816] (**) |-->Inactive Device "intel" [ 6.816] (==) Automatically adding devices [ 6.816] (==) Automatically enabling devices [ 6.816] (==) Automatically adding GPU devices [ 6.816] (==) Max clients allowed: 256, resource mask: 0x1fffff [ 6.819] (==) FontPath set to: /usr/share/fonts/misc/, /usr/share/fonts/TTF/, /usr/share/fonts/OTF/, /usr/share/fonts/Type1/, /usr/share/fonts/100dpi/, /usr/share/fonts/75dpi/ [ 6.819] (**) ModulePath set to "/usr/lib/xorg/modules,/usr/lib64/opengl/nvidia,/usr/lib64/xorg/modules" [ 6.819] (II) The server relies on udev to provide the list of input devices. If no devices become available, reconfigure udev or disable AutoAddDevices. [ 6.819] (II) Loader magic: 0x55eb9630cc60 [ 6.819] (II) Module ABI versions: [ 6.819] X.Org ANSI C Emulation: 0.4 [ 6.819] X.Org Video Driver: 24.0 [ 6.819] X.Org XInput driver : 24.1 [ 6.819] X.Org Server Extension : 10.0 [ 6.819] (II) xfree86: Adding drm device (/dev/dri/card1) If this is still unresolved i had a similar issue at: https://forums.gentoo.org/viewtopic-p-8393174.html That was solved by making sure gl is switched to nvidia: Code: eselect opengl list
hi i have had a square around the cursor in plasma for some time now and dont know how to fix it.the square goes away when i log out to sddm and log in to plasma x11 again. if i switch to xrender it goes away to but i lose some effects i like to have . it started with kernel 5.9 . i am on kernel- 5.9.14 ATM and running nvidia-drivers-455.46.02.i think that this is not a plasma issue because if i install compiz (compiz is running with opengl and xcomposite. that is why i am trying with that WM) and start it from a terminal i still have the square around the cursor. regards
fixed by updaing to kernel 5.10.1
Running Gentoo in a Virtualbox machine. I have xdm in the default runlevel. From a TTY I can startxfce4 and it works, but from lightdm, after selecting Xfce session, I get a "Unable to contact settings server. Could not connect: connection refused" error. Dbus is running. Not sure what I'm missing. I don't see any errors in Xorg.0.log.
I knew it would be something simple. Thanks, much appreciated.
When I start xterm from a shell,I got Code: xterm: did not find a usable wide bold italic TrueType font I try some fonts,no luck. which font should I install and how should I configure? .Xresources Code: xterm*termName:xterm-256color xterm*geometry:108x35 xterm*utf8Title:true xterm*xftAntialias:true Xft.dpi:96 xpdf.title:PDF Xft.antialias:true Xft.hinting:true Xft.hintstyle:hintslight xterm*faceName:Misc Fixed:antialias=true xterm*faceNameDoublesize:Microsoft YaHei xterm*faceSize:10 xterm*inputMethod:fcitx xterm*background:black xterm*foreground:grey xterm*SaveLines:1000 xterm*VT100.translations: #override <Btn1Up>: select-end(PRIMARY, CLIPBOARD, CUT_BUFFER0) Xcursor.theme:Breeze_Snow Xcursor.size:24
Install a decent font like 'media-fonts/dejavu' and change the line 'xterm*faceName:' to: Code: xterm*faceName:DejaVu Sans Mono:size=10:antialias=true Run Code: xrdb ./.Xresources and start an xterm. Do you want a different font? Install 'media-fonts/source-pro' and change the line to: Code: xterm*faceName:Source Code Pro:size=10:antialias=true
Hi! I'm running gnome 3.38.2 under wayland, but my mouse speed is incredible low - even when I change the setting to max in the GUI. I have a Logitech gaming mouse. Any ideas? Thanks! libinput list-devices: Code: Device: Logitech G502 HERO Gaming Mouse Kernel: /dev/input/event15 Group: 3 Seat: seat0, default Capabilities: pointer Tap-to-click: n/a Tap-and-drag: n/a Tap drag lock: n/a Left-handed: disabled Nat.scrolling: disabled Middle emulation: disabled Calibration: n/a Scroll methods: button Click methods: none Disable-w-typing: n/a Accel profiles: flat *adaptive Rotation: n/a Device: Logitech G502 HERO Gaming Mouse Keyboard Kernel: /dev/input/event16 Group: 3 Seat: seat0, default Capabilities: keyboard Tap-to-click: n/a Tap-and-drag: n/a Tap drag lock: n/a Left-handed: n/a Nat.scrolling: n/a Middle emulation: n/a Calibration: n/a Scroll methods: none Click methods: none Disable-w-typing: n/a Accel profiles: n/a Rotation: n/a Device: Logitech G502 HERO Gaming Mouse Consumer Control Kernel: /dev/input/event17 Group: 3 Seat: seat0, default Capabilities: keyboard pointer Tap-to-click: n/a Tap-and-drag: n/a Tap drag lock: n/a Left-handed: n/a Nat.scrolling: disabled Middle emulation: n/a Calibration: n/a Scroll methods: none Click methods: none Disable-w-typing: n/a Accel profiles: n/a Rotation: n/a Device: Logitech G502 HERO Gaming Mouse System Control Kernel: /dev/input/event18 Group: 3 Seat: seat0, default Capabilities: keyboard Tap-to-click: n/a Tap-and-drag: n/a Tap drag lock: n/a Left-handed: n/a Nat.scrolling: n/a Middle emulation: n/a Calibration: n/a Scroll methods: none Click methods: none Disable-w-typing: n/a Accel profiles: n/a Rotation: n/a Device: SINO WEALTH Gaming KB Kernel: /dev/input/event20 Group: 4 Seat: seat0, default Capabilities: keyboard Tap-to-click: n/a Tap-and-drag: n/a Tap drag lock: n/a Left-handed: n/a Nat.scrolling: n/a Middle emulation: n/a Calibration: n/a Scroll methods: none Click methods: none Disable-w-typing: n/a Accel profiles: n/a Rotation: n/a Device: SINO WEALTH Gaming KB System Control Kernel: /dev/input/event21 Group: 4 Seat: seat0, default Capabilities: keyboard Tap-to-click: n/a Tap-and-drag: n/a Tap drag lock: n/a Left-handed: n/a Nat.scrolling: n/a Middle emulation: n/a Calibration: n/a Scroll methods: none Click methods: none Disable-w-typing: n/a Accel profiles: n/a Rotation: n/a Device: SINO WEALTH Gaming KB Consumer Control Kernel: /dev/input/event22 Group: 4 Seat: seat0, default Capabilities: keyboard pointer Tap-to-click: n/a Tap-and-drag: n/a Tap drag lock: n/a Left-handed: n/a Nat.scrolling: disabled Middle emulation: n/a Calibration: n/a Scroll methods: none Click methods: none Disable-w-typing: n/a Accel profiles: n/a Rotation: n/a Device: SINO WEALTH Gaming KB Keyboard Kernel: /dev/input/event23 Group: 4 Seat: seat0, default Capabilities: keyboard Tap-to-click: n/a Tap-and-drag: n/a Tap drag lock: n/a Left-handed: n/a Nat.scrolling: n/a Middle emulation: n/a Calibration: n/a Scroll methods: none Click methods: none Disable-w-typing: n/a Accel profiles: n/a Rotation: n/a Device: SINO WEALTH Gaming KB Mouse Kernel: /dev/input/event24 Group: 4 Seat: seat0, default Capabilities: pointer Tap-to-click: n/a Tap-and-drag: n/a Tap drag lock: n/a Left-handed: disabled Nat.scrolling: disabled Middle emulation: disabled Calibration: n/a Scroll methods: button Click methods: none Disable-w-typing: n/a Accel profiles: flat *adaptive Rotation: n/a
The default speed is determined by what libinput thinks the sensor DPI is according to udev, which if unspecified will probably be very wrong. Here's how to set it manually: https://people.freedesktop.org/~whot/libinput-rtd/device-configuration-via-udev.html Those values should be put in a file in /etc/udev/rules.d/.
Hello everyone, I have an issue regarding my new Dell Latitude 5410 Laptop and its touchpad. I recently installed Gentoo and Gnome 3.36.5. The touchpad is correctly detected and I can use it with libinput, but tno gesture is recognized, except two-finger vertical scrolling. When listing my devices using xinput, I see that there is one mouse with id 10 and one touchpad with id 11 Code: ⎡ Virtual core pointer id=2 [master pointer (3)] ⎜ ↳ Virtual core XTEST pointer id=4 [slave pointer (2)] ⎜ ↳ DELL09A0:00 0488:121F Touchpad id=11 [slave pointer (2)] ⎜ ↳ DELL09A0:00 0488:121F Mouse id=10 [slave pointer (2)] ⎜ ↳ PS/2 Generic Mouse id=14 [slave pointer (2)] When I list the properties for the mouse (id=10), I get the following, and indeed the button scrolling is actived and horizontal scrolling works using middle button. I also notice that the device node is event5. Code: Device 'DELL09A0:00 0488:121F Mouse': Device Enabled (167): 1 Coordinate Transformation Matrix (169): 1.000000, 0.000000, 0.000000, 0.000000, 1.000000, 0.000000, 0.000000, 0.000000, 1.000000 libinput Natural Scrolling Enabled (302): 0 libinput Natural Scrolling Enabled Default (303): 0 libinput Scroll Methods Available (304): 0, 0, 1 libinput Scroll Method Enabled (305): 0, 0, 1 libinput Scroll Method Enabled Default (306): 0, 0, 0 libinput Button Scrolling Button (307): 2 libinput Button Scrolling Button Default (308): 2 libinput Button Scrolling Button Lock Enabled (309): 0 libinput Button Scrolling Button Lock Enabled Default (310): 0 libinput Middle Emulation Enabled (311): 0 libinput Middle Emulation Enabled Default (312): 0 libinput Accel Speed (313): 0.000000 libinput Accel Speed Default (314): 0.000000 libinput Accel Profiles Available (315): 1, 1 libinput Accel Profile Enabled (316): 1, 0 libinput Accel Profile Enabled Default (317): 1, 0 libinput Left Handed Enabled (318): 0 libinput Left Handed Enabled Default (319): 0 libinput Send Events Modes Available (287): 1, 0 libinput Send Events Mode Enabled (288): 0, 0 libinput Send Events Mode Enabled Default (289): 0, 0 Device Node (290): "/dev/input/event5" Device Product ID (291): 1160, 4639 libinput Drag Lock Buttons (320): <no items> libinput Horizontal Scroll Enabled (321): 1 Regarding the touchpad with id=11, the properties are as follows, with node event6 Device 'DELL09A0:00 0488:121F Touchpad': Device Enabled (167): 1 Coordinate Transformation Matrix (169): 1.000000, 0.000000, 0.000000, 0.000000, 1.000000, 0.000000, 0.000000, 0.000000, 1.000000 libinput Calibration Matrix (324): 1.000000, 0.000000, 0.000000, 0.000000, 1.000000, 0.000000, 0.000000, 0.000000, 1.000000 libinput Calibration Matrix Default (325): 1.000000, 0.000000, 0.000000, 0.000000, 1.000000, 0.000000, 0.000000, 0.000000, 1.000000 libinput Send Events Modes Available (287): 1, 0 libinput Send Events Mode Enabled (288): 0, 0 libinput Send Events Mode Enabled Default (289): 0, 0 Device Node (290): "/dev/input/event6" Device Product ID (291): 1160, 4639 When I cat /dev/input/event5 , I see things when I move the touchpad, but the screen remains empty when I cat /dev/input/event6, and I suspect this is why I cannot have full support for the touchpad, nor can work libinput-gestures: nothing comes from event6 which is the touchpad, and the node event5 is a mouse and not a touchpad, so libinput-gestures does not respond to these events I assume. I do not know how to have the movements on touchpad read by event6 and not by event5 (assuming that I am correct in the problem identification...) Does anyone have an idea about what is wrong? Thank you very much in advance! Code tags added by NeddySeagoon
What's your touchpad's configuration and how does that touchpad show up in dmesg?
I have run into issues with xorg after a recent gentoo install. I duplicated process used recently for another laptop which did not have any such problem. The laptop in question is a Lenovo x200 with libreboot, Core 2 Duo cpu and integrated intel graphics. when I try startx I get an error for tty0 permission denied: https://dpaste.com/H8P7XK6WM if I change the permission for tty0 to read and write and startx again I get an error for virtual console 7 permission denied: https://dpaste.com/ABFQ2Q44S if I change the permission for tty7 to read and write and startx again I an error for no screens found: https://dpaste.com/DPPY5PAX7 When I reboot I get right back to the start. My main issue is not getting X to start, though as a side issue there is surely a better approach to these permissions than setting them from root every time. Looking through past posts it seems that some additional information will be helpful: lspci | grep -i VGA: https://dpaste.com/E4X6KZ9XP lspci -nnk : https://dpaste.com/FTMC634XZ output of emerge --info : https://dpaste.com/8YHZHF33X make.conf: https://dpaste.com/AK5QLQ983 I have double checked the graphics support kernel settings against my other laptop and the gentoo handbook.
Are you using non-root setup to run X? https://wiki.gentoo.org/wiki/Non_root_Xorg
I have been using firefox-bin for a while now, and decided to try to switch back to using the source-based ESR version in the www-client/firefox package. But I was surprised to find that the ESR doesn't share all the config/profile information that the binary uses, as I would expect. When I start it up I just see a blank browser install, just as though it's on a freshly installed machine. Is there some good practical reason for this? Is there any easy way to get ESR to adopt the existing configuration in .mozilla?
For the benefit of future readers, could you cite where you discovered this to be a more general issue, and the recommended solution for people who dislike the default?
Hi, I've recently installed Gentoo on a gen 3 Intel i7 PC and mostly everything is OK. I've used the default/17.1/desktop profile and installed XFCE, with LightDM as the display manager. Logging in is fine and works no problem, however when I'm away and the screen turns off and locks the desktop I have a little trouble unlocking the desktop again. Entering the password in the default unlock dialog fails to unlock the desktop. As a workaraound I need to click on switch user, which brings the normal LightDM dialog (gtk3 greeter??). Entering my password and clicking unlock here works fine. My assumption is that the initial unlock diaolg application needs appropriate config in the pam.d folder, but I don't know where this dialog is from. I'm a little new to Gentoo and the more hands on Linux world in general, so let me know if more info (logs, config files, etc.) is needed and where to find that info. Many Thanks
What is locking the screen? xscreensaver? Something else?
Although I don't use KDE as a whole (or any other full desktop environment), Okular is my main PDF reader. I'm having a mildly annoying problem with it, though: whenever I click a link, it tries to open it with /usr/lib64/firefox/firefox , which does not exist (I don't even have Firefox installed). I can't find any relevant options in Okular's settings to change its default browser. Copying the link address and using xdg-open launches my preferred browser as expected. I used strace -e trace=open okular to get a list of files/directories opened by Okular, but grepping those files for 'firefox' also came up empty (save for /usr/share/icons/HighContrast/icon-theme.cache , which I don't think is the culprit). So does anyone have an idea how to get Okular to open links with another browser (apart from putting a shell script at /usr/lib64/firefox/firefox , which is an immensely ugly hack if you ask me)? Cheers. Solved by editing /usr/share/applications/mimeinfo.cache .
I'm not sure about using Okular in a non-KDE environment, but perhaps the following may help you: To check the current association for PDF files: Code: $ xdg-mime query filetype sample.pdf application/pdf To find the Desktop Configuration File of the default application for opening PDF files: Code: $ xdg-mime query default application/pdf okularApplication_pdf.desktop $ locate okularApplication_pdf.desktop /usr/share/applications/okularApplication_pdf.desktop The file /usr/share/applications/okularApplication_pdf.desktop contains the following, which you could create if it does not already exist: Code: [Desktop Entry] MimeType=application/pdf;application/x-gzpdf;application/x-bzpdf;application/x-wwf; Terminal=false Name=Okular Name[ar]=اوكلار Name[ast]=Okular Name[bg]=Okular Name[bs]=Okular Name[ca]=Okular Name[ca@valencia]=Okular Name[cs]=Okular Name[da]=Okular Name[de]=Okular Name[el]=Okular Name[en_GB]=Okular Name[eo]=Okular Name[es]=Okular Name[et]=Okular Name[eu]=Okular Name[fi]=Okular Name[fr]=Okular Name[ga]=Okular Name[gl]=Okular Name[hne]=ओकुलर Name[hr]=Okular Name[hu]=Okular Name[ia]=Okular Name[is]=Okular Name[it]=Okular Name[ja]=Okular Name[kk]=Okular Name[km]=Okular Name[ko]=Okular Name[ku]=Okular Name[lt]=Okular Name[lv]=Okular Name[mr]=ओक्युलर Name[nb]=Okular Name[nds]=Okular Name[nl]=Okular Name[nn]=Okular Name[pa]=ਓਕੁਲਾਰ Name[pl]=Okular Name[pt]=Okular Name[pt_BR]=Okular Name[ro]=Okular Name[ru]=Okular Name[si]=Okular Name[sk]=Okular Name[sl]=Okular Name[sq]=Okular Name[sr]=Окулар Name[sr@ijekavian]=Окулар Name[sr@ijekavianlatin]=Okular Name[sr@latin]=Okular Name[sv]=Okular Name[th]=โอกูลาร์ Name[tr]=Okular Name[ug]=Okular Name[uk]=Okular Name[x-test]=xxOkularxx Name[zh_CN]=Okular Name[zh_TW]=文件檢視_Okular GenericName=Document Viewer GenericName[ar]=عارض المستندات GenericName[ast]=Visor de documentos GenericName[bg]=Преглед на документи GenericName[bs]=Prikazivač dokumenata GenericName[ca]=Visualitzador de documents GenericName[ca@valencia]=Visualitzador de documents GenericName[cs]=Prohlížeč dokumentů GenericName[da]=Dokumentfremviser GenericName[de]=Dokumentenbetrachter GenericName[el]=Προβολέας εγγράφων GenericName[en_GB]=Document Viewer GenericName[eo]=Dokumenta rigardilo GenericName[es]=Visor de documentos GenericName[et]=Dokumendinäitaja GenericName[eu]=Dokumentu ikustailea GenericName[fa]=مشاهدهگر سند GenericName[fi]=Asiakirjakatselin GenericName[fr]=Afficheur de documents GenericName[ga]=Amharcán Cáipéisí GenericName[gl]=Visor de documentos GenericName[hi]=दस्तावेज़ प्रदर्शक GenericName[hne]=कागद प्रदर्सक GenericName[hr]=Preglednik dokumenata GenericName[hu]=Dokumentumnézegető GenericName[ia]=Visor de documento GenericName[is]=Skjalaskoðari GenericName[it]=Visore di documenti GenericName[ja]=文書ビューア GenericName[kk]=Құжатты қарау құралы GenericName[km]=កម្មវិធីមើលឯកសារ GenericName[ko]=문서 뷰어 GenericName[ku]=Nîşanderê Belgeyan GenericName[lt]=Dokumentų žiūryklė GenericName[lv]=Dokumentu skatītājs GenericName[mr]=दस्तऐवज प्रदर्शक GenericName[nb]=Dokumentviser GenericName[nds]=Dokmentkieker GenericName[ne]=कागजात दर्शक GenericName[nl]=Documentenviewer GenericName[nn]=Dokumentvisar GenericName[oc]=Visualizaire de documents GenericName[pa]=ਡੌਕੂਮੈਂਟ ਦਰਸ਼ਕ GenericName[pl]=Przeglądarka dokumentów GenericName[pt]=Visualizador de Documentos GenericName[pt_BR]=Visualizador de documentos GenericName[ro]=Vizualizor de documente GenericName[ru]=Просмотр документов GenericName[sk]=Prehliadač dokumentov GenericName[sl]=Pregledovalnik dokumentov GenericName[sq]=Shikues dokumentesh GenericName[sr]=Приказивач докумената GenericName[sr@ijekavian]=Приказивач докумената GenericName[sr@ijekavianlatin]=Prikazivač dokumenata GenericName[sr@latin]=Prikazivač dokumenata GenericName[sv]=Dokumentvisare GenericName[th]=เครื่องมือแสดงเอกสาร GenericName[tr]=Belge Gösterici GenericName[ug]=پۈتۈك كۆرگۈ GenericName[uk]=Переглядач документів GenericName[x-test]=xxDocument Viewerxx GenericName[zh_CN]=文档查看器 GenericName[zh_TW]=文件檢視器 Comment=Universal document viewer Comment[ast]=Visor universal de documentos Comment[ca]=Visualitzador universal de documents Comment[ca@valencia]=Visualitzador universal de documents Comment[cs]=Univerzální prohlížeč dokumentů Comment[da]=Universel dokumentfremviser Comment[de]=Universeller Dokumentenbetrachter Comment[el]=Καθολικός προβολέας εγγράφων Comment[en_GB]=Universal document viewer Comment[es]=Visor de documentos universal Comment[et]=Universaalne dokumendinäitaja Comment[fi]=Yleinen asiakirjakatselin Comment[fr]=Afficheur de document universel Comment[gl]=Visor de documentos universal Comment[ia]=Visor de documento universal Comment[is]=Fjölhæfur skjalaskoðari Comment[it]=Visore di documenti universale Comment[ko]=만능 문서 뷰어 Comment[nl]=Universele documentviewer Comment[nn]=Dokumentvisar for mange format Comment[pl]=Wszechstronna przeglądarka dokumentów Comment[pt]=Visualizador de documentos universal Comment[pt_BR]=Visualizador de documentos universal Comment[ru]=Универсальная программа просмотра документов Comment[sk]=Univerzálny prehliadač dokumentov Comment[sl]=Vsestranski pregledovalnik dokumentov Comment[sr]=Универзални приказивач докумената Comment[sr@ijekavian]=Универзални приказивач докумената Comment[sr@ijekavianlatin]=Univerzalni prikazivač dokumenata Comment[sr@latin]=Univerzalni prikazivač dokumenata Comment[sv]=Generell dokumentvisare Comment[tr]=Evrensel belge görüntüleyici Comment[uk]=Універсальний переглядач документів Comment[x-test]=xxUniversal document viewerxx Comment[zh_CN]=通用文档查看器 Comment[zh_TW]=通用文件檢視器 Exec=okular %U Icon=okular Type=Application InitialPreference=8 Categories=Qt;KDE;Graphics;Viewer; X-KDE-Keywords=PDF, Portable Document Format X-KDE-Keywords[ar]=PDF, Portable Document Format X-KDE-Keywords[ast]=PDF, formatu de documentu portátil X-KDE-Keywords[bg]=PDF, Portable Document Format X-KDE-Keywords[bs]=PDF, Portable Document Format X-KDE-Keywords[ca]=PDF, Format de document portable X-KDE-Keywords[ca@valencia]=PDF, Format de document portable X-KDE-Keywords[cs]=PDF, Portable Document Format X-KDE-Keywords[da]=PDF,Portable Document Format X-KDE-Keywords[de]=PDF, Portable Document Format X-KDE-Keywords[el]=PDF, Portable Document Format X-KDE-Keywords[en_GB]=PDF, Portable Document Format X-KDE-Keywords[es]=PDF, Formato de Documento Portable X-KDE-Keywords[et]=PDF, Portable Document Format X-KDE-Keywords[fi]=PDF, Portable Document Format X-KDE-Keywords[fr]=PDF, Portable Document Format X-KDE-Keywords[ga]=PDF, Portable Document Format X-KDE-Keywords[gl]=PDF, Formato portátil de documentos X-KDE-Keywords[hu]=PDF, Portable Document Format X-KDE-Keywords[ia]=PDF, Formato de Documento Portabile X-KDE-Keywords[is]=PDF, Portable Document Format X-KDE-Keywords[it]=PDF, Portable Document Format, formato per documenti portabile X-KDE-Keywords[ja]=PDF X-KDE-Keywords[kk]=PDF, Portable Document Format X-KDE-Keywords[km]=PDF, Portable Document Format X-KDE-Keywords[ko]=PDF, Portable Document Format X-KDE-Keywords[lt]=PDF, Portable Document formatas X-KDE-Keywords[lv]=PDF, Portable Document formāts X-KDE-Keywords[mr]=PDF, Portable Document Format X-KDE-Keywords[nb]=PDF, Portabelt Dokument Format X-KDE-Keywords[nds]=PDF, Porteerbor Dokmentformaat X-KDE-Keywords[nl]=PDF, Portable Document Format X-KDE-Keywords[nn]=PDF, Portabelt dokumentformat X-KDE-Keywords[pa]=PDF, ਪੋਰਟੇਬਲ ਡੌਕੂਮੈਂਟ ਫਾਰਮੈਟ X-KDE-Keywords[pl]=PDF, Przenośny Format Dokumentu X-KDE-Keywords[pt]=PDF, Formato de Documento Portável X-KDE-Keywords[pt_BR]=PDF, Formato de documento portável X-KDE-Keywords[ro]=PDF, Portable Document Format X-KDE-Keywords[ru]=PDF, Portable Document Format X-KDE-Keywords[sk]=PDF, Portable Document Format X-KDE-Keywords[sl]=PDF, Portable Document Format X-KDE-Keywords[sr]=PDF, Portable Document Format,ПДФ X-KDE-Keywords[sr@ijekavian]=PDF, Portable Document Format,ПДФ X-KDE-Keywords[sr@ijekavianlatin]=PDF, Portable Document Format,PDF X-KDE-Keywords[sr@latin]=PDF, Portable Document Format,PDF X-KDE-Keywords[sv]=PDF, Portabelt dokumentformat X-KDE-Keywords[tr]=PDF, Taşınabilir Belge Biçimi X-KDE-Keywords[uk]=PDF,Portable Document Format,пдф X-KDE-Keywords[x-test]=xxPDFxx,xx Portable Document Formatxx X-KDE-Keywords[zh_CN]=PDF, Portable Document Format,开放文档格式 X-KDE-Keywords[zh_TW]=PDF, Portable Document Format NoDisplay=true The permissions and ownership of the Desktop Configuration file are as follows: Code: $ ls -la /usr/share/applications/okularApplication_pdf.desktop -rwxr-xr-x 1 root root 8512 Jul 9 23:49 /usr/share/applications/okularApplication_pdf.desktop To associate PDF files with Okular: Code: $ xdg-mime default okularApplication_pdf.desktop application/pdf
Solved by setting QT_SCALE_FACTOR_ROUNDING_POLICY to anything except "PassThrough" - but why? Hello, I am having issues with a couple Qt applications and broken rendering, namely Qbittorrent & KeePassXC. The applications themselves are missing text and icons, as well as any text/icons that do appear being offset a little. I thought this might have been an issue with the Fusion theme, but using "QT_STYLE_OVERRIDE=Windows" does not fix anything. Screenshot: https://i.imgur.com/c7JaTQV.png I can't find any bug reports about this for either application nor qt itself. Using ~amd64 Any ideas? Cheers emerge --info: Code: Portage 2.3.103 (python 3.8.3-final-0, default/linux/amd64/17.1/systemd, gcc-10.1.0, glibc-2.31-r5, 5.7.6-gentoo x86_64) ================================================================= System uname: Linux-5.7.6-gentoo-x86_64-Intel-R-_Core-TM-_i7-4770_CPU_@_3.40GHz-with-glibc2.2.5 KiB Mem: 16262700 total, 3977584 free KiB Swap: 8130556 total, 8102652 free Timestamp of repository gentoo: Wed, 08 Jul 2020 21:35:23 +0000 Head commit of repository gentoo: 531b75d6ffaa36efbabf325beddc346cf1d933a6 Timestamp of repository lto-overlay: Sun, 05 Jul 2020 14:35:10 +0000 Head commit of repository lto-overlay: 2b56cb99dcd312a578e025bbe69cda86bb8d1c38 Timestamp of repository mv: Sun, 05 Jul 2020 16:05:17 +0000 Head commit of repository mv: 1f6f442ad7f83fd6e8e89b0e583ed4e0de3257c8 Timestamp of repository pg_overlay: Wed, 08 Jul 2020 15:35:14 +0000 Head commit of repository pg_overlay: eef020c5ad6ab7ae1ad4fee186442534f04a29be Timestamp of repository steam-overlay: Sat, 04 Jul 2020 07:44:31 +0000 Head commit of repository steam-overlay: fcaa8ccf1c2149d9a61137d400e8ccdc82729dbc sh bash 5.0_p17 ld GNU ld (Gentoo 2.34 p4) 2.34.0 ccache version 3.7.10 [disabled] app-shells/bash: 5.0_p17::gentoo dev-lang/perl: 5.30.3-r1::gentoo dev-lang/python: 2.7.18-r100::lto-overlay, 3.8.3-r1::lto-overlay, 3.9.0_beta4-r1::lto-overlay dev-util/ccache: 3.7.10::gentoo dev-util/cmake: 3.17.3::gentoo sys-apps/baselayout: 2.7::gentoo sys-apps/sandbox: 2.20::gentoo sys-devel/autoconf: 2.13-r1::gentoo, 2.69-r5::gentoo sys-devel/automake: 1.16.2::gentoo sys-devel/binutils: 2.34-r1::gentoo sys-devel/gcc: 10.1.0-r2::gentoo sys-devel/gcc-config: 2.3.1::gentoo sys-devel/libtool: 2.4.6-r6::gentoo sys-devel/make: 4.3::gentoo sys-kernel/linux-headers: 5.7::gentoo (virtual/os-headers) sys-libs/glibc: 2.31-r5::gentoo Repositories: gentoo location: /var/db/repos/gentoo sync-type: git sync-uri: https://github.com/gentoo-mirror/gentoo priority: -1000 crossdev location: /var/db/repos/crossdev masters: gentoo pg_overlay mv lto-overlay location: /var/db/repos/lto-overlay sync-type: git sync-uri: https://github.com/gentoo-mirror/lto-overlay.git masters: gentoo mv mv location: /var/db/repos/mv sync-type: git sync-uri: https://github.com/gentoo-mirror/mv.git masters: gentoo pg_overlay location: /var/db/repos/pg_overlay sync-type: git sync-uri: https://github.com/gentoo-mirror/pg_overlay.git masters: gentoo steam-overlay location: /var/db/repos/steam-overlay sync-type: git sync-uri: https://github.com/gentoo-mirror/steam-overlay.git masters: gentoo telans location: /var/db/repos/telans masters: gentoo priority: 1000 ACCEPT_KEYWORDS="amd64 ~amd64" ACCEPT_LICENSE="*" CBUILD="x86_64-pc-linux-gnu" CFLAGS="-march=haswell -O3 -fgraphite-identity -floop-nest-optimize -fdevirtualize-at-ltrans -fipa-pta -fno-semantic-interposition -flto=8 -fuse-linker-plugin -pipe" CHOST="x86_64-pc-linux-gnu" CONFIG_PROTECT="/etc /usr/share/gnupg/qualified.txt" CONFIG_PROTECT_MASK="/etc/ca-certificates.conf /etc/dconf /etc/env.d /etc/fonts/fonts.conf /etc/gconf /etc/gentoo-release /etc/revdep-rebuild /etc/sandbox.d /etc/terminfo" CXXFLAGS="-march=haswell -O3 -fgraphite-identity -floop-nest-optimize -fdevirtualize-at-ltrans -fipa-pta -fno-semantic-interposition -flto=8 -fuse-linker-plugin -pipe" DISTDIR="/var/cache/distfiles" ENV_UNSET="DBUS_SESSION_BUS_ADDRESS DISPLAY GOBIN GOPATH PERL5LIB PERL5OPT PERLPREFIX PERL_CORE PERL_MB_OPT PERL_MM_OPT XAUTHORITY XDG_CACHE_HOME XDG_CONFIG_HOME XDG_DATA_HOME XDG_RUNTIME_DIR" FCFLAGS="-march=haswell -O3 -fgraphite-identity -floop-nest-optimize -fdevirtualize-at-ltrans -fipa-pta -fno-semantic-interposition -flto=8 -fuse-linker-plugin -pipe" FEATURES="assume-digests binpkg-docompress binpkg-dostrip binpkg-logs config-protect-if-modified distlocks ebuild-locks fixlafiles ipc-sandbox merge-sync multilib-strict network-sandbox news parallel-fetch pid-sandbox preserve-libs protect-owned qa-unresolved-soname-deps sandbox sfperms strict unknown-features-warn unmerge-logs unmerge-orphans userfetch userpriv usersandbox usersync xattr" FFLAGS="-march=haswell -O3 -fgraphite-identity -floop-nest-optimize -fdevirtualize-at-ltrans -fipa-pta -fno-semantic-interposition -flto=8 -fuse-linker-plugin -pipe" GENTOO_MIRRORS="https://gentoo.osuosl.org/" LANG="en_US" LDFLAGS="-Wl,-O1 -Wl,--as-needed" MAKEOPTS="-j8" PKGDIR="/var/cache/binpkgs" PORTAGE_CONFIGROOT="/" PORTAGE_RSYNC_OPTS="--recursive --links --safe-links --perms --times --omit-dir-times --compress --force --whole-file --delete --stats --human-readable --timeout=180 --exclude=/distfiles --exclude=/local --exclude=/packages --exclude=/.git" PORTAGE_TMPDIR="/var/tmp" USE="X aac acl acpi amd64 bash-completion berkdb bzip2 cli crypt dbus dri ffmpeg fortran gdbm git graphite i3wm iconv libnotify libressl libtirpc lto multilib ncurses nls nptl opengl openmp pam pcre pgo pulseaudio readline seccomp split-usr ssl systemd tcpd threads ttf udev unicode vaapi vdpau vulkan xattr zip zlib" ABI_X86="64" ADA_TARGET="gnat_2018" ALSA_CARDS="ali5451 als4000 atiixp atiixp-modem bt87x ca0106 cmipci emu10k1x ens1370 ens1371 es1938 es1968 fm801 hda-intel intel8x0 intel8x0m maestro3 trident usb-audio via82xx via82xx-modem ymfpci" APACHE2_MODULES="authn_core authz_core socache_shmcb unixd actions alias auth_basic authn_alias authn_anon authn_dbm authn_default authn_file authz_dbm authz_default authz_groupfile authz_host authz_owner authz_user autoindex cache cgi cgid dav dav_fs dav_lock deflate dir disk_cache env expires ext_filter file_cache filter headers include info log_config logio mem_cache mime mime_magic negotiation rewrite setenvif speling status unique_id userdir usertrack vhost_alias" CALLIGRA_FEATURES="karbon sheets words" COLLECTD_PLUGINS="df interface irq load memory rrdtool swap syslog" CPU_FLAGS_X86="aes avx avx2 f16c fma3 mmx mmxext pclmul popcnt sse sse2 sse3 sse4_1 sse4_2 ssse3" CURL_SSL="libressl" ELIBC="glibc" GPSD_PROTOCOLS="ashtech aivdm earthmate evermore fv18 garmin garmintxt gpsclock greis isync itrax mtk3301 nmea ntrip navcom oceanserver oldstyle oncore rtcm104v2 rtcm104v3 sirf skytraq superstar2 timing tsip tripmate tnt ublox ubx" GRUB_PLATFORMS="efi-64" INPUT_DEVICES="libinput" KERNEL="linux" LCD_DEVICES="bayrad cfontz cfontz633 glk hd44780 lb216 lcdm001 mtxorb ncurses text" LIBREOFFICE_EXTENSIONS="presenter-console presenter-minimizer" OFFICE_IMPLEMENTATION="libreoffice" PHP_TARGETS="php7-2" POSTGRES_TARGETS="postgres10 postgres11" PYTHON_SINGLE_TARGET="python3_8" PYTHON_TARGETS="python3_8" RUBY_TARGETS="ruby25" USERLAND="GNU" VIDEO_CARDS="nvidia" XTABLES_ADDONS="quota2 psd pknock lscan length2 ipv4options ipset ipp2p iface geoip fuzzy condition tee tarpit sysrq steal rawnat logmark ipmark dhcpmac delude chaos account" Unset: CC, CPPFLAGS, CTARGET, CXX, EMERGE_DEFAULT_OPTS, INSTALL_MASK, LC_ALL, LINGUAS, PORTAGE_BINHOST, PORTAGE_BUNZIP2_COMMAND, PORTAGE_COMPRESS, PORTAGE_COMPRESS_FLAGS, PORTAGE_RSYNC_EXTRA_OPTS
Can you reproduce the problem with sane CFLAGS
I nca't emerge chromium.... I have running version 79 Also I have mesa-20.1.10 with vulkan support Error: Code: [4650/22606] touch obj/third_party/angle/libANGLE.stamp [4651/22606] python "../../build/toolchain/gcc_solink_wrapper.py" --readelf="readelf" --nm="x86_64-pc-linux-gnu-nm" --sofile="./libGLESv2.so" --tocfile="./libGLESv2.so.TOC" --output="./libGLESv2.so" -- x86_64-pc-linux-gnu-g++ -shared -Wl,-soname="libGLESv2.so" -Wl,--build-id -fPIC -Wl,-z,noexecstack -Wl,-z,relro -Wl,-z,now -Wl,-z,defs -Wl,--as-needed -rdynamic -Wl,-O1 -Wl,--as-needed -o "./libGLESv2.so" @"./libGLESv2.so.rsp" FAILED: libGLESv2.so libGLESv2.so.TOC python "../../build/toolchain/gcc_solink_wrapper.py" --readelf="readelf" --nm="x86_64-pc-linux-gnu-nm" --sofile="./libGLESv2.so" --tocfile="./libGLESv2.so.TOC" --output="./libGLESv2.so" -- x86_64-pc-linux-gnu-g++ -shared -Wl,-soname="libGLESv2.so" -Wl,--build-id -fPIC -Wl,-z,noexecstack -Wl,-z,relro -Wl,-z,now -Wl,-z,defs -Wl,--as-needed -rdynamic -Wl,-O1 -Wl,--as-needed -o "./libGLESv2.so" @"./libGLESv2.so.rsp" obj/third_party/angle/src/libANGLE/renderer/vulkan/angle_vulkan_backend/ContextVk.o: In function `rx::ContextVk::onImageRead(unsigned int, rx::vk::ImageLayout, rx::vk::ImageHelper*)': ContextVk.cpp:(.text+0xbf81): undefined reference to `void rx::vk::ImageHelper::barrierImpl<rx::vk::priv::SecondaryCommandBuffer>(unsigned int, rx::vk::ImageLayout, unsigned int, rx::vk::priv::SecondaryCommandBuffer*)' obj/third_party/angle/src/libANGLE/renderer/vulkan/angle_vulkan_backend/ContextVk.o: In function `rx::ContextVk::onImageWrite(unsigned int, rx::vk::ImageLayout, rx::vk::ImageHelper*)': ContextVk.cpp:(.text+0xc03a): undefined reference to `void rx::vk::ImageHelper::barrierImpl<rx::vk::priv::SecondaryCommandBuffer>(unsigned int, rx::vk::ImageLayout, unsigned int, rx::vk::priv::SecondaryCommandBuffer*)' obj/third_party/angle/src/libANGLE/renderer/vulkan/angle_vulkan_backend/SurfaceVk.o: In function `rx::WindowSurfaceVk::present(rx::ContextVk*, int*, int, void const*, bool*)': SurfaceVk.cpp:(.text+0x2d66): undefined reference to `void rx::vk::ImageHelper::barrierImpl<rx::vk::priv::SecondaryCommandBuffer>(unsigned int, rx::vk::ImageLayout, unsigned int, rx::vk::priv::SecondaryCommandBuffer*)' collect2: error: ld returned 1 exit status ninja: build stopped: subcommand failed. same error on chromium-87.0.4280.40 Mesa use: Code: [ebuild R ] media-libs/mesa-20.1.10::gentoo USE="X classic dri3 egl gallium gbm gles2 llvm vaapi vulkan wayland zstd -d3d9 -debug -gles1 -lm-sensors -opencl -osmesa (-selinux) -test -unwind -valgrind -vdpau -vulkan-overlay -xa -xvmc" ABI_X86="32 (64) (-x32)" VIDEO_CARDS="i965 intel (-freedreno) -i915 -iris (-lima) -nouveau (-panfrost) -r100 -r200 -r300 -r600 -radeon -radeonsi (-vc4) -virgl (-vivante) -vmware" 0 KiB emerge --info: Code: Portage 2.3.99 (python 3.7.5-final-0, default/linux/amd64/17.0/systemd, gcc-9.2.0, glibc-2.29-r2, 4.19.2-ck x86_64) ================================================================= System uname: Linux-4.19.2-ck-x86_64-Intel-R-_Core-TM-_i7-6560U_CPU_@_2.20GHz-with-gentoo-2.6 KiB Mem: 15807456 total, 3110848 free KiB Swap: 4194300 total, 3978748 free Timestamp of repository gentoo: Mon, 02 Nov 2020 22:00:01 +0000 Head commit of repository gentoo: 313352e4f5371689b4bccc25ca27718ecf273201 sh bash 4.4_p12 ld GNU ld (Gentoo 2.26.1 p1.0) 2.26.1 distcc[2270536] (dcc_mkdir) ERROR: mkdir '/var/tmp/portage/.distcc//state' failed: No such file or directory [disabled] ccache version 3.3.4 [enabled] app-shells/bash: 4.4_p12::gentoo dev-java/java-config: 2.2.0-r4::gentoo dev-lang/perl: 5.24.3-r1::gentoo dev-lang/python: 2.7.17::gentoo, 3.6.9::gentoo, 3.7.5-r1::gentoo, 3.8.5::gentoo dev-util/ccache: 3.3.4-r1::gentoo dev-util/cmake: 3.14.6::gentoo dev-util/pkgconfig: 0.29.2::gentoo sys-apps/baselayout: 2.6-r1::gentoo sys-apps/openrc: 0.24.2::gentoo sys-apps/sandbox: 2.13::gentoo sys-devel/autoconf: 2.13-r1::gentoo, 2.69-r4::gentoo sys-devel/automake: 1.11.6-r3::gentoo, 1.14.1::gentoo, 1.15.1-r2::gentoo, 1.16.1-r1::gentoo sys-devel/binutils: 2.26.1::gentoo, 2.29.1-r1::gentoo, 2.30-r4::gentoo, 2.31.1-r6::gentoo, 2.32-r1::gentoo, 2.33.1-r1::gentoo sys-devel/gcc: 5.4.0-r3::gentoo, 6.3.0::gentoo, 6.4.0-r1::gentoo, 8.2.0-r3::gentoo, 9.2.0-r2::gentoo sys-devel/gcc-config: 2.0::gentoo sys-devel/libtool: 2.4.6-r3::gentoo sys-devel/make: 4.2.1-r4::gentoo sys-kernel/linux-headers: 4.14-r1::gentoo (virtual/os-headers) sys-libs/glibc: 2.29-r2::gentoo Repositories: gentoo location: /usr/portage sync-type: rsync sync-uri: rsync://rsync.gentoo.org/gentoo-portage priority: -1000 sync-rsync-verify-metamanifest: yes sync-rsync-verify-max-age: 24 sync-rsync-extra-opts: sync-rsync-verify-jobs: 1 localrepo location: /usr/local/portage masters: gentoo FireBurn location: /var/lib/layman/FireBurn masters: gentoo priority: 50 atom location: /var/lib/layman/atom masters: gentoo priority: 50 google-cloud-sdk location: /var/lib/layman/google-cloud-sdk masters: gentoo priority: 50 holgersson-overlay location: /var/lib/layman/holgersson-overlay sync-uri: https://git.holgersson.xyz/foss/holgersson-overlay masters: gentoo priority: 50 pf4public location: /var/lib/layman/pf4public masters: gentoo priority: 50 robert7k location: /var/lib/layman/robert7k masters: gentoo priority: 50 xmw location: /var/lib/layman/xmw masters: gentoo priority: 50 ACCEPT_KEYWORDS="amd64" ACCEPT_LICENSE="@FREE" CBUILD="x86_64-pc-linux-gnu" CFLAGS="-march=skylake -mmmx -mno-3dnow -msse -msse2 -msse3 -mssse3 -mno-sse4a -mcx16 -msahf -mmovbe -maes -mno-sha -mpclmul -mpopcnt -mabm -mno-lwp -mfma -mno-fma4 -mno-xop -mbmi -mbmi2 -mno-tbm -mavx -mavx2 -msse4.2 -msse4.1 -mlzcnt -mno-rtm -mno-hle -mrdrnd -mf16c -mfsgsbase -mrdseed -mprfchw -madx -mfxsr -mxsave -mxsaveopt -mno-avx512f -mno-avx512er -mno-avx512cd -mno-avx512pf -mno-prefetchwt1 -mclflushopt -mxsavec -mxsaves -mno-avx512dq -mno-avx512bw -mno-avx512vl -mno-avx512ifma -mno-avx512vbmi -mno-clwb -mno-mwaitx -mno-clzero -mno-pku --param l1-cache-size=32 --param l1-cache-line-size=64 --param l2-cache-size=4096 -O3 -pipe" CHOST="x86_64-pc-linux-gnu" CONFIG_PROTECT="/etc /usr/share/gnupg/qualified.txt" CONFIG_PROTECT_MASK="/etc/ca-certificates.conf /etc/dconf /etc/env.d /etc/fonts/fonts.conf /etc/gconf /etc/gentoo-release /etc/php/apache2-php7.2/ext-active/ /etc/php/apache2-php7.3/ext-active/ /etc/php/cgi-php7.2/ext-active/ /etc/php/cgi-php7.3/ext-active/ /etc/php/cli-php7.2/ext-active/ /etc/php/cli-php7.3/ext-active/ /etc/revdep-rebuild /etc/sandbox.d /etc/terminfo /etc/texmf/language.dat.d /etc/texmf/language.def.d /etc/texmf/updmap.d /etc/texmf/web2c" CXXFLAGS="-march=skylake -mmmx -mno-3dnow -msse -msse2 -msse3 -mssse3 -mno-sse4a -mcx16 -msahf -mmovbe -maes -mno-sha -mpclmul -mpopcnt -mabm -mno-lwp -mfma -mno-fma4 -mno-xop -mbmi -mbmi2 -mno-tbm -mavx -mavx2 -msse4.2 -msse4.1 -mlzcnt -mno-rtm -mno-hle -mrdrnd -mf16c -mfsgsbase -mrdseed -mprfchw -madx -mfxsr -mxsave -mxsaveopt -mno-avx512f -mno-avx512er -mno-avx512cd -mno-avx512pf -mno-prefetchwt1 -mclflushopt -mxsavec -mxsaves -mno-avx512dq -mno-avx512bw -mno-avx512vl -mno-avx512ifma -mno-avx512vbmi -mno-clwb -mno-mwaitx -mno-clzero -mno-pku --param l1-cache-size=32 --param l1-cache-line-size=64 --param l2-cache-size=4096 -O3 -pipe" DISTDIR="/usr/portage/distfiles" ENV_UNSET="CARGO_HOME DBUS_SESSION_BUS_ADDRESS DISPLAY GOBIN GOPATH PERL5LIB PERL5OPT PERLPREFIX PERL_CORE PERL_MB_OPT PERL_MM_OPT XAUTHORITY XDG_CACHE_HOME XDG_CONFIG_HOME XDG_DATA_HOME XDG_RUNTIME_DIR" FCFLAGS="-O2 -pipe" FEATURES="assume-digests binpkg-docompress binpkg-dostrip binpkg-logs ccache config-protect-if-modified distlocks ebuild-locks fixlafiles ipc-sandbox merge-sync multilib-strict network-sandbox news parallel-fetch pid-sandbox preserve-libs protect-owned qa-unresolved-soname-deps sandbox sfperms strict unknown-features-warn unmerge-logs unmerge-orphans userfetch userpriv usersandbox usersync" FFLAGS="-O2 -pipe" GENTOO_MIRRORS="http://gentoo.mirrors.ovh.net/gentoo-distfiles/ ftp://ftp.snt.utwente.nl/pub/os/linux/gentoo" LANG="pl_PL.utf8" LDFLAGS="-Wl,-O1 -Wl,--as-needed" MAKEOPTS="-j4" PKGDIR="/usr/portage/packages" PORTAGE_CONFIGROOT="/" PORTAGE_RSYNC_OPTS="--recursive --links --safe-links --perms --times --omit-dir-times --compress --force --whole-file --delete --stats --human-readable --timeout=180 --exclude=/distfiles --exclude=/local --exclude=/packages --exclude=/.git" PORTAGE_TMPDIR="/var/tmp" USE="X aiglx alsa amd64 avx avx2 berkdb bzip2 cli consolekit crypt cryptsetup curl dbus dri egl ffmpeg fma3 fortran gdbm geoclue gles gles2 gtk http2 iconv ipv6 jpeg libglvnd libtirpc lvm\ mmx mmxext multilib ncurses nls nptl openmp pam pcre pulseaudio qt3support readline seccomp smp socks5 split-usr sqlite sse sse2 sse3 sse4 sse4_1 sse4_2 sse4a ssl ssse3 systemd tcpd udev unicode vaapi wayland win32codecs xinerama xv zlib zstd" ABI_X86="64" ADA_TARGET="gnat_2018" ALSA_CARDS="ali5451 als4000 atiixp atiixp-modem bt87x ca0106 cmipci emu10k1x ens1370 ens1371 es1938 es1968 fm801 hda-intel intel8x0 intel8x0m maestro3 trident usb-audio via82xx via82xx-modem ymfpci" APACHE2_MODULES="authn_core authz_core socache_shmcb unixd actions alias auth_basic authn_alias authn_anon authn_dbm authn_default authn_file authz_dbm authz_default authz_groupfile authz_host authz_owner authz_user autoindex cache cgi cgid dav dav_fs dav_lock deflate dir disk_cache env expires ext_filter file_cache filter headers include info log_config logio mem_cache mime mime_magic negotiation rewrite setenvif speling status unique_id userdir usertrack vhost_alias" CALLIGRA_FEATURES="karbon sheets words" COLLECTD_PLUGINS="df interface irq load memory rrdtool swap syslog" CPU_FLAGS_X86="aes avx avx2 fma3 mmx mmxext popcnt sse sse2 sse3 sse4_1 sse4_2 ssse3" ELIBC="glibc" GPSD_PROTOCOLS="ashtech aivdm earthmate evermore fv18 garmin garmintxt gpsclock greis isync itrax mtk3301 nmea ntrip navcom oceanserver oldstyle oncore rtcm104v2 rtcm104v3 sirf skytraq superstar2 timing tsip tripmate tnt ublox ubx" INPUT_DEVICES="evdev synaptics libinput" KERNEL="linux" LCD_DEVICES="bayrad cfontz cfontz633 glk hd44780 lb216 lcdm001 mtxorb ncurses text" LIBREOFFICE_EXTENSIONS="presenter-console presenter-minimizer" LUA_SINGLE_TARGET="lua5-1" LUA_TARGETS="lua5-1" OFFICE_IMPLEMENTATION="libreoffice" PHP_TARGETS="php7-2 php7-3 php7-4" POSTGRES_TARGETS="postgres10 postgres11" PYTHON_SINGLE_TARGET="python3_6" PYTHON_TARGETS="python2_7 python3_6 python3_7" RUBY_TARGETS="ruby25" USERLAND="GNU" VIDEO_CARDS="i965 intel" XTABLES_ADDONS="quota2 psd pknock lscan length2 ipv4options ipset ipp2p iface geoip fuzzy condition tee tarpit sysrq steal rawnat logmark ipmark dhcpmac delude chaos account" Unset: CC, CPPFLAGS, CTARGET, CXX, EMERGE_DEFAULT_OPTS, INSTALL_MASK, LC_ALL, LINGUAS, PORTAGE_BINHOST, PORTAGE_BUNZIP2_COMMAND, PORTAGE_COMPRESS, PORTAGE_COMPRESS_FLAGS, PORTAGE_RSYNCcode_ EXTRA_OPTS # emerge -pqv =www-client/chromium-86.0.4240.75::gentoo Code: !!! Repository 'holgersson-overlay' has sync-uri attribute, but is missing sync-type attribute /usr/lib/python3.7/site-packages/portage/package/ebuild/_config/KeywordsManager.py:70: UserWarning: /etc/portage/package.keywords is deprecated, use /etc/portage/package.accept_keywords instead UserWarning) [ebuild U ] www-client/chromium-86.0.4240.75 [79.0.3945.88] USE="custom-cflags hangouts js-type-check%* (pic) proprietary-codecs pulseaudio suid system-ffmpeg system-icu tcmalloc (-component-build) -cups (-headless) -kerberos -official% -ozone% -ozone-wayland% (-selinux) (-system-libvpx) -widevine (-closure-compile%*) (-gnome-keyring%)" L10N="am ar bg bn ca cs da de el en-GB es es-419 et fa fi fil fr gu he hi hr hu id it ja kn ko lt lv ml mr ms nb nl pl pt-BR pt-PT ro ru sk sl sr sv sw ta te th tr uk vi zh-CN zh-TW"
You should post full build.log and also your emerge --info
I have been trying to get firefox to work with only the X server, i.e. no window manager. I've found that there are various bugs with this, most of which, for my use cases, I can probably workaround. However, the main issue I am having right now is that I cannot get Firefox to pull in my profile from another distro. I manually copied it, and I have done this before, no problem, but Firefox absolutely refuses to use it. I launch firefox with the profile manager, explicitly tell it which profile to use, and it simply doesn't: no error or indication as to why. I am completely new to the Gentoo forums, so please be gentle. If there is some kind of information I should have given you, just let me know what it is and I will get it to you as soon as possible. Also, I am completely open to hearing alternatives to firefox. I basically want a keyboard driven web browser that works with Xorg with no additional components needed. I have used Tridactyl with Firefox and been very pleased, but open to trying something different if you think it will work better with the "Xorg no window manager" setup. Thank you in advance!
Gidgers wrote: I have been trying to get firefox to work with only the X server, i.e. no window manager. I've found that there are various bugs with this, most of which, for my use cases, I can probably workaround. Also, I am completely open to hearing alternatives to firefox. I basically want a keyboard driven web browser that works with Xorg with no additional components needed. I have used Tridactyl with Firefox and been very pleased, but open to trying something different if you think it will work better with the "Xorg no window manager" setup. Have you considered using Xorg with a window manager that is primarily, or even solely, keyboard driven? This may provide better results than running with no window manager at all, while still letting you avoid switching between the mouse and keyboard[1]. I think i3wm could be a good fit here. [1]: Given how some websites are, I rather doubt you will get far in the browser without using a mouse, just because in-page keyboard navigation is so terrible. However, that is out of scope of your original question, and is a problem with browsers / webapps in general, regardless of which browser you use.
i got a task to install gentoo+KDE ( and later LFS ) from my CTO , this is my first time messing around with Linux I'm working on KDE now and it's been horrible, been trying to figure it out for days now but i lost hope here is my Startx log - https://dpaste.com/3ZNWF25B2 let me know if anything else is needed thank you
emmanuell, Welcome to Gentoo. First, some advice on getting the best from the forums. When you need to add information to your topic, that only contains your original post, edit that post. When you make a new post, your topic drops out of the 'Unanswered Posts' search, so potential helpers will miss it. Code: [ 61.475] (==) Matched vmware as autoconfigured driver 0 .. [ 61.477] (WW) Warning, couldn't open module vmware .. [ 61.481] (EE) open /dev/dri/card0: No such file or directory You need to use the vmware Xorg video driver and add DRM support to your kernel.
I recently had emerge --depclean run away and delete a random bunch of stuff. My latest is my EasyStore 500 Gb backup disk drive. When I plug it in, my get the usual Device Notifier message giving 2 actions for the device. File Manager and Download photos. When I select the "File Manager" option, I get a "You are not authorized to use this device. " This is unlikely. I have looked in /mnt, /media, and /run/media and the device is not mounted in any of these locations. Since I had emerge ---depclean run away, it is possible that I am missing a critical app. I suppose it is also possible that somebody has moved the mount location. I would appreciate your help with this. By the way, the device mount just fine on my Mint partition.
Is this not related to your other thread Can't Mount backup disk under KDE ? If you have logs, finding what was removed shouldn't be that difficult. You could also try emerge -p @world or @system.
I am running i3 without DM now. My screen keep turning off after 10 min idle, Is it elogind doing this?How to disable it ? I try to find '600' in conf files in /etc and some folders else,but no luck.
Xorg has built-in screensaver. Try 'xset -q' and you'll see your 600.
Things are weird! Code: #!/bin/sh echo a > /home/USER/aaaaaaaaaa This in that folder executed as I expected but if I add this line: Code: i3lock -n The echo executed fine,but i3lock failed! I got this in dmesg: Code: (sd-executor)[4253]: /lib64/elogind/system-sleep/3 failed with exit status 1. Why?
If i3lock -n exits 1 , the shell can return 1 as well, which would explain what is in your logs. How exactly did you invoke i3lock? Does it have permission to talk to the required server?
Hello, I've got a problem with SDDM (0.18.1-r3), Xorg (server 1.20.8-r1) and Plasma (5.19.5). I've made a lot of changes, just regular updates, new packages and a kernel upgrade and suddenly after rebooting Plasma won't start anymore. SDDM starts fine, I can enter my password on the Greeting Login. But after that there's only the ominous "cursor on black screen". I've tried all fixes I could find in the last two days, but none of them brought it back. Here's what I've tried so far, things that worked for others: removing ~/.config and ~/.cache installing sys-apps/haveged resetting /var/lib/sddm and making sure sddm is in video group using loginctl unlock-session plasmashell --replace on different VT using kwin_x11 --replace and then plasmashell in KRunner brought back Plasma on VT7, but everything was broken and not usable. Executin kwin_x11 tells me DISPLAY is not set. booting an previously working kernel Currently I can use startx /usr/bin/startplasma-x11 to start Plasma on a VT. My theme an settings are all together there. But creating a ~/.xinitrc didn't resolve the problem for SDDM. This is the Xorg.0.log from an SDDM Startup: https://0bin.net/paste/1wqiyrrB#okA1Kq9WFPUsfa1DoqUTN8IVB-b3+eLi89n6BVb6zS/ IDK if it's an issue that the modules intel, fbdev and vesa can't be loaded. I'm using mesa with VIDEO_CARDS="i965" on my Intel® HD-Grafics 5500 The SDDM log has no errors. I was even desperate enough to rebuild SDDM several times Any suggestions?
Alright, I've solved it myself. The issue appeared, after I setup keychain with ksshaskpass following https://wiki.gentoo.org/wiki/Keychain#Alternatively_use_KWallet_with_kde-plasma/ksshaskpass_under_Plasma_5 . ssh-agent waited for an input of the password for the ssh key. Seems like the Gentoo Wiki is wrong on this.
Hi Where is cups tools, like as lpinfo, lpadmin and lpstat? Cups version: Code: net-print/cups-2.3.3-r1 -abi_mips_n32 -abi_mips_n64 -abi_mips_o32 -abi_s390_32 -abi_s390_64 abi_x86_32 abi_x86_64 -abi_x86_x32 acl dbus -debug -kerberos lprng-compat pam selinux ssl static-libs -systemd threads usb -X -xinetd -zeroconf net-print/cups-filters-1.27.4 dbus foomatic jpeg -ldap -pclm pdf perl png postscript static-libs -test tiff -zeroconf Code: # G1 Gentoo ### Sun Nov 01 00:48:10 domek : ~ # user ~> lpinfo bash: lpinfo: command not found # G1 Gentoo ### Sun Nov 01 00:48:13 domek : ~ # user ~> lpadmin bash: lpadmin: command not found # G1 Gentoo ### Sun Nov 01 00:48:17 domek : ~ # user ~> lpstat bash: lpstat: command not found Code: e-file lpadmin [I] net-print/cups Available Versions: 1.6.2-r5 2.1.4 2.2.1 2.2.7 2.2.11 2.2.12 2.2.13 2.3.0 2.3.1 2.3.3 2.3.3-r1 Last Installed Ver: filters-1.27.4(Sun 01 Nov 2020 12:46:13 AM CET) Homepage: https://www.cups.org/ Description: The Common Unix Printing System Matched Files: /usr/sbin/lpadmin; e-file lpinfo [I] net-print/cups Available Versions: 1.6.2-r5 2.1.4 2.2.1 2.2.7 2.2.11 2.2.12 2.2.13 2.3.0 2.3.1 2.3.3 2.3.3-r1 Last Installed Ver: filters-1.27.4(Sun 01 Nov 2020 12:46:13 AM CET) Homepage: https://www.cups.org/ Description: The Common Unix Printing System Matched Files: /usr/sbin/lpinfo; Code: qlist cups | egrep 'lpinfo|lpadmin|lpstat' /usr/share/cups/html/help/man-lpadmin.html /usr/share/cups/html/help/man-lpinfo.html /usr/share/cups/html/help/man-lpstat.html Cheers
Jacekalex wrote: Where is cups tools, like as lpinfo, lpadmin and lpstat? These are provided by net-print/cups[-lprng-compat] : Code: # equery f cups | grep -e 'lpinfo\|lpadmin\|lpstat' /usr/bin/lpstat /usr/sbin/lpadmin /usr/sbin/lpinfo There is an explicit warning about this in the ebuild: net-print/cups/cups-2.3.3-r1.ebuild: # for the special case of running lprng and cups together, bug 467226 if use lprng-compat ; then rm -fv "${ED}"/usr/bin/{lp*,cancel} rm -fv "${ED}"/usr/sbin/lp* rm -fv "${ED}"/usr/share/man/man1/{lp*,cancel*} rm -fv "${ED}"/usr/share/man/man8/lp* ewarn "Not installing lp... binaries, since the lprng-compat useflag is set." ewarn "Unless you plan to install an exotic server setup, you most likely" ewarn "do not want this. Disable the useflag then and all will be fine." You enabled lprng-compat , so the ebuild deleted those programs.
[2023 more solved-ish]: Another thing that I just tried and has helped was adding this in ~/.Xresources: Code: Xft.dpi: 96 as well as this in ~/.xinitrc: Code: userresources=$HOME/.Xresources if [ -f "$userresources" ]; then xrdb -merge "$userresources" fi [/2023 more solved-ish] Hi all, something changed in the last couple of months to my default font settings so that *some* gui elements now show almost-unreadably small fonts in the listed programs (known: gimp, gqview, virtualbox, vlc, audacious-playlist). I keep fairly up to date with a mostly stable system. Window mgr is fluxbox launched via startx. I've been using gentoo since 2006 and have never really had problems with fonts. Fluxbox floating menu and toolbar, as well as firefox and thunar are examples that still display fine. Presumably all of these packages use the same basic graphics libs and there are default setting somewhere that've recently changed. I should probably toss out some possibly relevant settings just to get the ball rolling... Code: mythbox ~ # eselect fontconfig list Available fontconfig .conf files (* is enabled): [1] 10-autohint.conf [2] 10-hinting-full.conf [3] 10-hinting-medium.conf [4] 10-hinting-none.conf [5] 10-hinting-slight.conf * [6] 10-no-sub-pixel.conf [7] 10-scale-bitmap-fonts.conf * [8] 10-sub-pixel-bgr.conf [9] 10-sub-pixel-rgb.conf [10] 10-sub-pixel-vbgr.conf [11] 10-sub-pixel-vrgb.conf [12] 10-unhinted.conf [13] 11-lcdfilter-default.conf [14] 11-lcdfilter-legacy.conf [15] 11-lcdfilter-light.conf [16] 20-unhint-small-dejavu-sans.conf [17] 20-unhint-small-dejavu-sans-mono.conf [18] 20-unhint-small-dejavu-serif.conf [19] 20-unhint-small-vera.conf * [20] 25-unhint-nonlatin.conf [21] 30-metric-aliases.conf * [22] 40-nonlatin.conf * [23] 45-generic.conf * [24] 45-latin.conf * [25] 49-sansserif.conf * [26] 50-user.conf * [27] 51-local.conf * [28] 57-dejavu-sans.conf [29] 57-dejavu-sans-mono.conf [30] 57-dejavu-serif.conf [31] 60-generic.conf * [32] 60-latin.conf * [33] 60-liberation.conf [34] 65-fonts-persian.conf * [35] 65-khmer.conf [36] 65-nonlatin.conf * [37] 69-unifont.conf * [38] 70-no-bitmaps.conf [39] 70-yes-bitmaps.conf [40] 80-delicious.conf * [41] 90-synthetic.conf * mythbox ~ # grep -i font /var/log/Xorg.0.log [ 95.956] (WW) The directory "/usr/share/fonts/TTF/" does not exist. [ 95.957] Entry deleted from font path. [ 95.957] (WW) The directory "/usr/share/fonts/OTF/" does not exist. [ 95.957] Entry deleted from font path. [ 95.957] (WW) The directory "/usr/share/fonts/Type1/" does not exist. [ 95.957] Entry deleted from font path. [ 95.957] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/100dpi/". [ 95.957] Entry deleted from font path. [ 95.957] (Run 'mkfontdir' on "/usr/share/fonts/100dpi/"). [ 95.959] (==) FontPath set to: /usr/share/fonts/misc/, /usr/share/fonts/75dpi/ So, are there any suggestions on where to start looking or what might have changed? thanks, -Mark
gtk-chtheme also works for that; it's gtk2-only so it won't mess with any gtk3 settings like lxappearance does.
Hello, there is conflict between app-emulation/open-vm-tools-11.0.1-r1 and dev-libs/icu-67.1. The conflict exists already quite a while. As result my system keeps using older dev-libs/icu-65.1-r1. Is this a simple matter of updating dependencies, or one needs bug-report? Best regards
app-emulation/open-vm-tools support dev-libs/icu-67.1 post full emerge output
Alternating booting Mate and Openbox. I want a white cursor. Xdm shows a white cursor in the greeter (good!) If I launch Mate from XDM it still has a white cursor (good!) If I launch Openbox with pcmanfm it shows a black cursor (bad!, hard to see against dark blue background, impossible against black background) I've tried the settings listed in the wiki (redglass) no effect. I've tried various Fedora and Ubuntu settings, most don''t even exist in Gentoo. And, of course, there are detailed instructions on using Gnome/KDE GUI's (click this, click that ...) Here is ~/.Xresources Code: ~ $ cat ~/.Xresources !xterm*font: *-fixed-*-*-*-18-* xterm*faceName: DejaVuSansMono:size=24:antialias=false xterm*reverseVideo: on !xterm*VT100.geometry: 80x32 xterm*foreground: #000000 xterm*background: #AAAAAA !fix cut and paste xterm*selectToClipboard: true ! set cursor Xcursor.size: 16 Xcursor.theme: redglass Xcursor.themes: whiteglass Note: wiki says to use Xcursor.theme, a forum post says to use Xcursor.theme s Here is ~/.config/openbox/autostart Code: ~ $ cat ~/.config/openbox/autostart DESKTOP_ENV="OPENBOX" xscreensaver & pcmanfm --desktop & mate-panel & #conventional mate panel, works except for logout Obconf would probably show a setting, but it was removed from portage because of python 2.7 Can someone help me with this? I like the setup better than the highly integrated Mate, all essential applications run, but the mouse is very hard to see! It's okay on the forum with the gray background, but not on the desktop unless I set a very light background.
I've got a "xrdb -merge $HOME/.Xresources" line in openbox's autostart. Some desktops do that automatically.
I'm running virtualbox 6.1 under Windows 10 with a Gentoo guest. The guest is set up as described at https://wiki.gentoo.org/wiki/VirtualBox , with VMSVGA as graphics controller, and with the Mate desktop. My problem is that the monitor preferences dialogue does not even display the host display's native resolution (1920x1080 IIRC). I was wondering why that is, considering virtualbox-guest-additions are installed. I can configure the host display down down to 1680x1050 and do the same on the guest, but it leaves ugly black areas on the sides.
Sweet. I didn't even know about cvt.
Hi, i just installed Gentoo on a Laptop. After installing all the X stuff i installed the DM lightdm, the WM dwm, the terminal st, and dmenu. At first everything looked fine. Lightdm starts, dwm starts but then i noticed that i couldn't open st by pressing the standard keybinding (shift+alt+return). I tried to open st with dmenu but when i do alt+p the menubar shows up but as soon as i start typing it disappears. At first i thought there most be something wrong with the dwm config which would be weird since its a fresh install but even after replacing it with my own config st is still not opening. Next i thought that there might be something wrong with st. To test it i installed xterm, changed dwm's config to xterm, recompiled everything. Xterm wasn't starting either. I don't get any errors. I'm not sure if there are some dwm logs somewhere. Someone suggested me to try the command DISPLAY=":0" st. It returned "Segmentation fault" I'm pretty much out of ideas now. Everything should be working since its a fresh install but its not. I would really appreciate some ideas. Thanks.
If programs are terminating with a segmentation fault, something is wrong. Does xterm also terminate with segmentation fault? Can you capture a core file of one of the failed programs, and print its backtrace in gdb ? That may tell us which package is responsible for the fault, since it could be a library instead of the main program. Start with DISPLAY=:0 gdb -ex r /usr/bin/xterm . That will run an xterm under control of gdb, and gdb will interrupt if the process crashes. If the process crashes, type bt in gdb, capture the output, and post it here. You may want to rebuild some or all of the relevant packages with debug symbols before doing this.
Earlier this year I installed a brand new Gentoo system. Ever since I haven't been able to use ctrl+z in xorg and by now it's more than a minor annoyance... Other keyboard shortcuts work like expected, if I have LibreOffice open I can use Ctrl+x, Ctrl+c, Ctrl+v, Ctrl+p, Ctrl+a, Ctrl+s etc. but not Ctrl+z. I can't even seem to generate Ctrl+z using xdotool. It's like if something else grabs the key Sending a running process to the background in bash in a virtual console using Ctrl+z but not in a bash shell in xorg. I've also tried two different keyboards with the same result and they both work fine on a Window system so hardware error could most likely be ruled out. Pressing z alone: Code: $ xev -event keyboard [...] KeyPress event, serial 28, synthetic NO, window 0x2400001, root 0x1e1, subw 0x0, time 1837572, (3409,1892), root:(3409,1892), state 0x10, keycode 52 (keysym 0x7a, z), same_screen YES, XLookupString gives 1 bytes: (7a) "z" XmbLookupString gives 1 bytes: (7a) "z" XFilterEvent returns: False KeyRelease event, serial 28, synthetic NO, window 0x2400001, root 0x1e1, subw 0x0, time 1837692, (3409,1892), root:(3409,1892), state 0x10, keycode 52 (keysym 0x7a, z), same_screen YES, XLookupString gives 1 bytes: (7a) "z" XFilterEvent returns: False Pressing Ctrl+z: Code: $ xev -event keyboard [...] KeyPress event, serial 28, synthetic NO, window 0x2200001, root 0x1e1, subw 0x0, time 1589012, (312,228), root:(352,308), state 0x10, keycode 37 (keysym 0xffe3, Control_L), same_screen YES, XLookupString gives 0 bytes: XmbLookupString gives 0 bytes: XFilterEvent returns: False KeymapNotify event, serial 28, synthetic NO, window 0x0, keys: 4294967265 0 0 0 32 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 KeyRelease event, serial 28, synthetic NO, window 0x2200001, root 0x1e1, subw 0x0, time 1589900, (312,228), root:(352,308), state 0x14, keycode 37 (keysym 0xffe3, Control_L), same_screen YES, XLookupString gives 0 bytes: XFilterEvent returns: False Pressing Ctrl+x: Code: $ xev -event keyboard [...] KeyPress event, serial 28, synthetic NO, window 0x2400001, root 0x1e1, subw 0x0, time 2201892, (717,1617), root:(777,1737), state 0x10, keycode 37 (keysym 0xffe3, Control_L), same_screen YES, XLookupString gives 0 bytes: XmbLookupString gives 0 bytes: XFilterEvent returns: False KeyPress event, serial 28, synthetic NO, window 0x2400001, root 0x1e1, subw 0x0, time 2201972, (717,1617), root:(777,1737), state 0x14, keycode 53 (keysym 0x78, x), same_screen YES, XLookupString gives 1 bytes: (18) "" XmbLookupString gives 1 bytes: (18) "" XFilterEvent returns: False KeyRelease event, serial 28, synthetic NO, window 0x2400001, root 0x1e1, subw 0x0, time 2202060, (717,1617), root:(777,1737), state 0x14, keycode 37 (keysym 0xffe3, Control_L), same_screen YES, XLookupString gives 0 bytes: XFilterEvent returns: False KeyRelease event, serial 28, synthetic NO, window 0x2400001, root 0x1e1, subw 0x0, time 2202076, (717,1617), root:(777,1737), state 0x10, keycode 53 (keysym 0x78, x), same_screen YES, XLookupString gives 1 bytes: (78) "x" XFilterEvent returns: False I don't even know where to start looking. Any ideas?
What window manager do you use, and how did you configure it? Some window managers, when configured to use a key sequence as a shortcut, will inhibit that key sequence from reaching the main X applications. Perhaps your window manager is intercepting Ctrl+Z, but whatever handling it does produces no noticeable results, so the key appears dead, rather than repurposed.
Since my latest upgrade, I've been having an odd problem with XDM (SDDM). I run KDE and use /etc/init.d/xdm to launch SDDM, but since upgrading, every time I boot my machine, I'm dropped to a regular terminal for login instead of SDDM. Running /etc/init.d/xdm status returnes a status of Crashed. All I have to do is run /etc/init.d/xdm restart, and SDDM starts up normally. Looking in Xorg.0.log, it appears X is having trouble finding my (proprietary NVidia) video driver: Code: [ 4.738] (==) Matched nouveau as autoconfigured driver 0 [ 4.738] (==) Matched nv as autoconfigured driver 1 [ 4.738] (==) Matched modesetting as autoconfigured driver 2 [ 4.738] (==) Matched fbdev as autoconfigured driver 3 [ 4.738] (==) Matched vesa as autoconfigured driver 4 [ 4.738] (==) Assigned the driver to the xf86ConfigLayout [ 4.738] (II) LoadModule: "nouveau" [ 4.739] (WW) Warning, couldn't open module nouveau [ 4.739] (EE) Failed to load module "nouveau" (module does not exist, 0) [ 4.739] (II) LoadModule: "nv" [ 4.739] (II) Loading /usr/lib64/xorg/modules/drivers/nv_drv.so [ 4.739] (II) Module nv: vendor="X.Org Foundation" [ 4.739] compiled for 1.20.8, module version = 2.1.21 [ 4.739] Module class: X.Org Video Driver [ 4.739] ABI class: X.Org Video Driver, version 24.1 [ 4.739] (II) LoadModule: "modesetting" [ 4.740] (II) Loading /usr/lib64/xorg/modules/drivers/modesetting_drv.so [ 4.740] (II) Module modesetting: vendor="X.Org Foundation" [ 4.740] compiled for 1.20.8, module version = 1.20.8 [ 4.740] Module class: X.Org Video Driver [ 4.740] ABI class: X.Org Video Driver, version 24.1 [ 4.740] (II) LoadModule: "fbdev" [ 4.740] (WW) Warning, couldn't open module fbdev [ 4.740] (EE) Failed to load module "fbdev" (module does not exist, 0) [ 4.740] (II) LoadModule: "vesa" [ 4.740] (WW) Warning, couldn't open module vesa [ 4.740] (EE) Failed to load module "vesa" (module does not exist, 0) [ 4.740] (II) NV: driver for NVIDIA chipsets: RIVA 128, RIVA TNT, RIVA TNT2, . . . [ 4.743] (II) modesetting: Driver for Modesetting Kernel Drivers: kms [ 4.744] (EE) NV: The PCI device 0x10de0fc8 ((null)) at 01@00:00:0 has a kernel module claiming it. [ 4.744] (EE) NV: This driver cannot operate until it has been unloaded. [ 4.744] (EE) open /dev/dri/card0: No such file or directory [ 4.744] (WW) Falling back to old probe method for modesetting [ 4.744] (EE) open /dev/dri/card0: No such file or directory [ 4.745] (EE) Screen 0 deleted because of no matching config section. [ 4.745] (II) UnloadModule: "modesetting" [ 4.745] (EE) Device(s) detected, but none match those in the config file. [ 4.745] (EE) Fatal server error: [ 4.745] (EE) no screens found(EE) The driver I'm using is x11-drivers/nvidia-drivers. I also installed x11-drivers/xf86-video-nv to see if it would fix the problem, but clearly it hasn't. I've looked in my system config directory (/usr/share/X11/xorg.conf.d), and there is a 50-nvidia-drm-outputclass.conf file that lists the "nvidia" driver, but X seems to be ignoring it on first boot. It loads it fine when I restart XDM, though: Code: [ 130.728] (WW) Falling back to old probe method for modesetting [ 130.728] (II) NVIDIA(0): Creating default Display subsection in Screen section "Default Screen Section" for depth/fbbpp 24/32 [ 130.728] (==) NVIDIA(0): Depth 24, (==) framebuffer bpp 32 [ 130.728] (==) NVIDIA(0): RGB weight 888 [ 130.728] (==) NVIDIA(0): Default visual is TrueColor [ 130.728] (==) NVIDIA(0): Using gamma correction (1.0, 1.0, 1.0) [ 130.728] (**) NVIDIA(0): Enabling 2D acceleration [ 130.728] (II) Loading sub module "glxserver_nvidia" [ 130.728] (II) LoadModule: "glxserver_nvidia" [ 130.728] (II) Loading /usr/lib64/xorg/modules/extensions/libglxserver_nvidia.so [ 130.797] (II) Module glxserver_nvidia: vendor="NVIDIA Corporation" [ 130.797] compiled for 1.6.99.901, module version = 1.0.0 [ 130.797] Module class: X.Org Server Extension [ 130.798] (II) NVIDIA GLX Module 455.28 Wed Sep 30 01:01:28 UTC 2020 Any ideas what's different at boot? Is there some kind of race condition, and if so, how do I move XDM later in the boot order? It's already at runlevel "default", while most of my startup scripts are at runlevel "boot" or "sysinit".
This line Code: 4.744] (EE) NV: The PCI device 0x10de0fc8 ((null)) at 01@00:00:0 has a kernel module claiming it. looks to me as the kernel is still initializing the graphic card. So it seems that the kernel needs more time than he has till xdm is strted. Maybe worth to try a quirk by delaying the xdm service start by putting a "after" entry into /etc/init.d/xdm which depends on a service which is started later?
Hello again. Well after getting my system to upgrade to the newest version of plasma, I rebooted my system and have no wallpaper or task bar. I tried these commands: Code: kquitapp5 plasmashell && kstart plasmashell "Application plasmashell could not be found using service org.kde.plasmashell and path /MainApplication." Code: kquitapp plasmashell && plasmashell & [1] 23056 /bin/bash: line 3: kquitapp: command not found [1]+ Exit 127 kquitapp plasmashell && plasmashell Code: kbuildsycoca5 && kquitapp5 plasmashell && kstart5 plasmashell kbuildsycoca5 running... kf.service.sycoca: Parse error in "/home/rbear/.config/menus/applications-merged/xdg-desktop-menu-dummy.menu" , line 1 , col 1 : "unexpected end of file" kf.service.services: The desktop entry file "/usr/share/applications/org.gnupg.pinentry-qt.desktop" has Type= "Application" but no Exec line kf.service.sycoca: Invalid Service : "/usr/share/applications/org.gnupg.pinentry-qt.desktop" kf.service.services: The desktop entry file "/home/rbear/.local/share/applications/Krita git.desktop" has Type= "Application" but no Exec line kf.service.sycoca: Invalid Service : "/home/rbear/.local/share/applications/Krita git.desktop" "Application plasmashell could not be found using service org.kde.plasmashell and path /MainApplication." I was not sure which one was the correct one to run, but in any case they all failed. But with the last one at least there is some more feed back with it. But I am not sure what the fix is. I have rebuilt my plasma-workspace and plasma-meta packages but I still get this issue. Is this a bug or a config conflict from upgrading to the newest plasma version? Thank you for the help.
I had done a logout and logged back in and for a second I had the wallpaper, but then it instantly crashes. I found out what the other error where, I had some messed up .desktop icon configs and I got rid of them. But I am still stuck with a broken wallpaper and panel.
Been trying to install nvidia drivers they did all install fine but on reboot i was getting black screen Please take note i have took the card out but want to get it going at the moment i am on the onboard intel what i have discovered is for some reason i do not have a /xorg.conf.d directory startx works fine as i am sitting here now typing from kde but i need to get my nvidia card in and now when i put it back in it goes to black screen still as of course i have all ready installed them drivers and xorg. make.conf Code: USE="X cdrom gtk gnome postproc gui mp4 mp3 dvd dbus jpeg png acc acl acpi kms libglvnd amd64 usb cups multilib alsa kde bluetooth crypt desktop-portal gtk3 display-manager elogind grub discover handbook kwallet legacy-systray networkmanager plymouth pulseaudio qrcode sddm sdk smartsystemd thunderbolt wallpapers qt4 qt5 uvm" INPUT_DEVICES="libinput synaptics" EMERGE_DEFAULT_OPTS="--autounmask-write y" VIDEO_CARDS="nvidia" COMMON_FLAGS="-O2 -pipe" CFLAGS="${COMMON_FLAGS}" CXXFLAGS="${COMMON_FLAGS}" FCFLAGS="${COMMON_FLAGS}" FFLAGS="${COMMON_FLAGS}" ACCEPT_LICENSES="-* @free" # NOTE: This stage was built with the bindist Use flag enabled PORTDIR="/var/db/repos/gentoo" DISTDIR="/var/cache/distfiles" PKGDIR="/var/cache/binpkgs" # This sets the language of build output to English. # Please keep this setting intact when reporting bugs. LC_MESSAGES=C GENTOO_MIRRORS="ftp://mirror.bytemark.co.uk/gentoo/ https://mirror.bytemark.co.uk/gentoo/ http://mirror.bytemark.co.uk/gentoo/ rsync://mirror.bytemark.co.uk/gentoo/ ftp://mirrors.gethosted.online/gentoo htt> GRUB_PLATFORMS="efi-64" GRUB_PLATFORMS="efi-64"
jburns wrote: In your make.conf should "smartsystemd" be "smart systemd" I agree that it looks wrong as written. However, I would expect that the OP should not specify USE=systemd at all, and instead should get that automatically by using a profile designed for use with systemd. Such profiles automatically set USE=systemd, and likely other useful systemd-related defaults too.
Code: $ emacs Undefined color: "WINDOW_FOREGROUND" This happens with emacs-27 , emacs-26 , and emacs-25 . This Arch forum suggests a workaround Code: $ xrdb /dev/null which works if I execute it before each invocation of emacs. What is a more permanent solution? [SOLVED] emacs-27.1-r3 executes normally and produces this message: Code: $ emacs WINDOW DECORATIONS RELOADED WINDOW DECORATIONS RELOADED [\SOLVED]
coderanger wrote: Could you grep this string in your .emacs.d folder so we can see which lisp code throws this error? Code: ~$ find .emacs.d -type f -exec grep WINDOW_FOREGROUND {} \; returns nothing. coderanger wrote: Also this can give some additional info https://lists.gnu.org/archive/html/bug-gnu-emacs/2014-01/msg00836.htmlk I deleted Emacs.ad as suggested but get a similar error. coderanger wrote: Try running Code: emacs -fg '#ffffff' I get the same error. coderanger wrote: This is what I see on my laptop for reference: Code: $ xrdb -query | grep -E '^Emacs.*foreground' Emacs*Dialog*foreground: #232627 Emacs*menubar*foreground: #232627 Code: $ xrdb -query|grep -i emacs returns nothing. I believe the problem is KDE/Plasma.
I recently updated @world and emacs works just inside the terminal. No way to get a separate window. The flags I used for the previous version (26) doesn't work -motif athena -gtk Xaw3d -sound -alsa xft I tried also gtk but nothing works Code: emerge --info emacs Portage 3.0.8 (python 3.7.8-final-0, default/linux/amd64/17.0/desktop, gcc-9.3.0, glibc-2.31-r6, 4.19.82-gentoo x86_64) ================================================================= System Settings ================================================================= System uname: Linux-4.19.82-gentoo-x86_64-Intel-R-_Core-TM-_i7-7700HQ_CPU_@_2.80GHz-with-gentoo-2.7 KiB Mem: 16174904 total, 14099440 free KiB Swap: 0 total, 0 free Timestamp of repository gentoo: Sat, 17 Oct 2020 22:05:16 +0000 Head commit of repository gentoo: 07c57cbb223c95c2c4826f6ec8b6499f484228b6 Head commit of repository brother-overlay: c226f1d96c35357cf1a42f9c4ffb01ca59721493 Head commit of repository flatpak-overlay: 85b574e89510f6422e0e5177de99f8893eec6608 sh bash 5.0_p18 ld GNU ld (Gentoo 2.34 p6) 2.34.0 app-shells/bash: 5.0_p18::gentoo dev-java/java-config: 2.3.1::gentoo dev-lang/perl: 5.30.3::gentoo dev-lang/python: 2.7.18-r4::gentoo, 3.6.11-r2::gentoo, 3.7.8-r2::gentoo, 3.8.5::gentoo dev-util/cmake: 3.17.4-r1::gentoo dev-util/pkgconfig: 0.29.2::gentoo sys-apps/baselayout: 2.7::gentoo sys-apps/openrc: 0.42.1::gentoo sys-apps/sandbox: 2.18::gentoo sys-devel/autoconf: 2.13-r1::gentoo, 2.69-r5::gentoo sys-devel/automake: 1.16.1-r1::gentoo sys-devel/binutils: 2.34-r2::gentoo sys-devel/gcc: 9.3.0-r1::gentoo sys-devel/gcc-config: 2.3.2::gentoo sys-devel/libtool: 2.4.6-r6::gentoo sys-devel/make: 4.2.1-r4::gentoo sys-kernel/linux-headers: 5.4-r1::gentoo (virtual/os-headers) sys-libs/glibc: 2.31-r6::gentoo Repositories: gentoo location: /usr/portage sync-type: git sync-uri: https://github.com/gentoo-mirror/gentoo priority: -1000 brother-overlay location: /usr/local/overlay/brother-overlay sync-type: git sync-uri: https://github.com/stefan-langenmaier/brother-overlay.git masters: gentoo flatpak-overlay location: /scratch/flatpak-overlay sync-type: git sync-uri: https://github.com/fosero/flatpak-overlay.git masters: gentoo priority: 50 ACCEPT_KEYWORDS="amd64" ACCEPT_LICENSE="@FREE" CBUILD="x86_64-pc-linux-gnu" CFLAGS="-O2 -pipe -march=native" CHOST="x86_64-pc-linux-gnu" CONFIG_PROTECT="/etc /usr/share/gnupg/qualified.txt" CONFIG_PROTECT_MASK="/etc/ca-certificates.conf /etc/dconf /etc/env.d /etc/fonts/fonts.conf /etc/gconf /etc/gentoo-release /etc/revdep-rebuild /etc/sandbox.d /etc/terminfo /etc/texmf/language.dat.d /etc/texmf/language.def.d /etc/texmf/updmap.d /etc/texmf/web2c" CXXFLAGS="-O2 -pipe -march=native" DISTDIR="/usr/portage/distfiles" EMERGE_DEFAULT_OPTS="--autounmask-write" ENV_UNSET="CARGO_HOME DBUS_SESSION_BUS_ADDRESS DISPLAY GOBIN GOPATH PERL5LIB PERL5OPT PERLPREFIX PERL_CORE PERL_MB_OPT PERL_MM_OPT XAUTHORITY XDG_CACHE_HOME XDG_CONFIG_HOME XDG_DATA_HOME XDG_RUNTIME_DIR" FCFLAGS="-O2 -pipe" FEATURES="assume-digests binpkg-docompress binpkg-dostrip binpkg-logs config-protect-if-modified distlocks ebuild-locks fixlafiles ipc-sandbox merge-sync multilib-strict network-sandbox news parallel-fetch parallel-install pid-sandbox preserve-libs protect-owned qa-unresolved-soname-deps sandbox sfperms sign splitdebug strict unknown-features-warn unmerge-logs unmerge-orphans userfetch userpriv usersandbox usersync xattr" FFLAGS="-O2 -pipe" GENTOO_MIRRORS="http://mirror.eu.oneandone.net/linux/distributions/gentoo/gentoo/" LANG="en_US.utf8" LDFLAGS="-Wl,-O1 -Wl,--as-needed" LINGUAS="en it" MAKEOPTS="-j7" PKGDIR="/usr/portage/packages" PORTAGE_CONFIGROOT="/" PORTAGE_RSYNC_OPTS="--recursive --links --safe-links --perms --times --omit-dir-times --compress --force --whole-file --delete --stats --human-readable --timeout=180 --exclude=/distfiles --exclude=/local --exclude=/packages --exclude=/.git" PORTAGE_TMPDIR="/var/tmp" USE="X a52 aac acl acpi alsa amd64 berkdb bindist bluetooth branding bzip2 cairo cdda cdr cli crypt cups dbus dri dts dvd dvdr elogind emacs emboss encode exif flac fortran gdbm gif gpm gtk gui iconv icu ipv6 jpeg lcms libglvnd libnotify libtirpc lm_sensors mad mng mp3 mp4 mpeg multilib ncurses nls nptl ogg opengl openmp pam pango pcre pdf png policykit ppds pulseaudio qt5 readline sdl seccomp spell split-usr ssl startup-notification svg tcpd threads tiff truetype udev udisks unicode upower usb vorbis wxwidgets x264 xattr xcb xml xv xvid zlib" ABI_X86="64" ADA_TARGET="gnat_2018" ALSA_CARDS="ali5451 als4000 atiixp atiixp-modem bt87x ca0106 cmipci emu10k1x ens1370 ens1371 es1938 es1968 fm801 hda-intel intel8x0 intel8x0m maestro3 trident usb-audio via82xx via82xx-modem ymfpci" APACHE2_MODULES="authn_core authz_core socache_shmcb unixd actions alias auth_basic authn_alias authn_anon authn_dbm authn_default authn_file authz_dbm authz_default authz_groupfile authz_host authz_owner authz_user autoindex cache cgi cgid dav dav_fs dav_lock deflate dir disk_cache env expires ext_filter file_cache filter headers include info log_config logio mem_cache mime mime_magic negotiation rewrite setenvif speling status unique_id userdir usertrack vhost_alias" CALLIGRA_FEATURES="karbon sheets words" COLLECTD_PLUGINS="df interface irq load memory rrdtool swap syslog" CPU_FLAGS_X86="mmx sse sse2" ELIBC="glibc" GPSD_PROTOCOLS="ashtech aivdm earthmate evermore fv18 garmin garmintxt gpsclock greis isync itrax mtk3301 nmea ntrip navcom oceanserver oldstyle oncore rtcm104v2 rtcm104v3 sirf skytraq superstar2 timing tsip tripmate tnt ublox ubx" GRUB_PLATFORMS="efi-64" INPUT_DEVICES="libinput synaptics" KERNEL="linux" L10N="en it" LCD_DEVICES="bayrad cfontz cfontz633 glk hd44780 lb216 lcdm001 mtxorb ncurses text" LIBREOFFICE_EXTENSIONS="presenter-console presenter-minimizer" OFFICE_IMPLEMENTATION="libreoffice" PHP_TARGETS="php7-2 php7-3 php7-4" POSTGRES_TARGETS="postgres10 postgres11" PYTHON_SINGLE_TARGET="python3_7" PYTHON_TARGETS="python2_7 python3_7" RUBY_TARGETS="ruby25 ruby26" USERLAND="GNU" VIDEO_CARDS="intel i965 nvidia" XTABLES_ADDONS="quota2 psd pknock lscan length2 ipv4options ipset ipp2p iface geoip fuzzy condition tee tarpit sysrq steal rawnat logmark ipmark dhcpmac delude chaos account" Unset: CC, CPPFLAGS, CTARGET, CXX, INSTALL_MASK, LC_ALL, PORTAGE_BINHOST, PORTAGE_BUNZIP2_COMMAND, PORTAGE_COMPRESS, PORTAGE_COMPRESS_FLAGS, PORTAGE_RSYNC_EXTRA_OPTS ================================================================= Package Settings ================================================================= app-editors/emacs-27.1-r1::gentoo was built with the following: USE="acl alsa cairo dbus gif gmp gpm gtk inotify jpeg lcms png ssl svg threads tiff xpm zlib -Xaw3d (-aqua) -athena -dynamic-loading -games -gconf -gfile -gsettings -gtk2 -gui -gzip-el -harfbuzz -imagemagick -json -kerberos -libxml2 -livecd -m17n-lib -mailutils -motif (-selinux) -sound -source -systemd -toolkit-scroll-bars -wide-int -xft -xwidgets" ABI_X86="(64)" any idea? thanks
Code: -gui GUI looks disabled, which seems surprising given it's in your global USE (default for desktop profile).
Hello, it seems that running wayland without (e)logind + pam is impossible, meanwhile. (Or does anybody know a way?) (Previously I was able to patch weston to run as root, but this doesn't work anymore for unknown reasons.) It is also very unhappy that you cannot have systemd + elogind both installed, since prevoiusly I liked to switch booting between openrc and systemd to normally use openrc but have systemd as a recovery system if necessary. So I bit the bullet and installed pam, enabling USE=pam in sddm, libcap, and systemd. USE=systemd is enabled almost everywhere (and thus no elogind, of course). But starting wayland doesn't work. While X starts fine with the logs journalctl -b --unit=sddm.service wrote: sddm[1341]: Reading from "/usr/share/xsessions/fvwm-crystal.desktop" sddm[1341]: Session "/usr/share/xsessions/fvwm-crystal.desktop" selected, command: "fvwm-crystal" sddm[1341]: Adding cookie to "/var/run/sddm/{cff9fb53-313e-41c4-82d9-08c93a2200ae}" sddm-helper[1750]: [PAM] Starting... sddm-helper[1750]: [PAM] Authenticating... sddm-helper[1750]: [PAM] returning. sddm[1341]: Authenticated successfully sddm-helper[1750]: Starting: "/home/gentoo/various/etc/X11/Xsession \"fvwm-crystal\"" sddm[1341]: Session started (actually, I do not see the point of logind + pam here: I have X without suid bit, and it did run fine also without pam) (with loginctl, I can see that the user has some logind cookie), I get a different output if I attempt to run wayland (hikari or weston - both the same): journalctl -b --unit=sddm.service wrote: sddm[1341]: Reading from "/usr/share/wayland-sessions/weston.desktop" sddm[1341]: Session "/usr/share/wayland-sessions/weston.desktop" selected, command: "weston" sddm-helper[4221]: [PAM] Starting... sddm-helper[4221]: [PAM] Authenticating... sddm-helper[4221]: [PAM] Preparing to converse... sddm-helper[4221]: [PAM] Conversation with 1 messages sddm-helper[4221]: [PAM] returning. sddm[1341]: Authenticated successfully sddm[1341]: Jumping to VT 1 sddm[1341]: VT mode didn't need to be fixed sddm-helper[4221]: Starting: "/home/gentoo/various/etc/X11/wayland-session weston" sddm[1341]: Session started sddm-helper[4221]: [PAM] Closing session sddm-helper[4221]: [PAM] Ended. sddm[1341]: Auth: sddm-helper exited with 1 Thus, although sddm claims that the authentication was successful, it apparently was not, because sddm-helper has some problem (for which I found no log). The picture of the greeter remains unchanged, and when running weston, I see ~logged_in_user/.local/share/sddm/wayland-session.log wrote: [20:14:22.741] weston 9.0.0 https://wayland.freedesktop.org Bug reports to: https://gitlab.freedesktop.org/wayland/weston/issues/ Build: 9.0.0 [20:14:22.742] Command line: weston [20:14:22.742] OS: Linux, 5.8.7-gentoo, #2 SMP Sun Sep 6 13:54:30 CEST 2020, x86_64 [20:14:22.742] Starting with no config file. [20:14:22.742] Output repaint window is 7 ms maximum. [20:14:22.755] Loading module '/usr/lib64/libweston-9/drm-backend.so' [20:14:22.757] initializing drm backend [20:14:22.757] logind: not running in a systemd session [20:14:22.757] logind: cannot setup systemd-logind helper (-3), using legacy fallback [20:14:22.757] fatal: drm backend should be run using weston-launch binary, or your system should provide the logind D-Bus API. [20:14:22.757] fatal: failed to create compositor backend Internal warning: debug scope 'drm-backend' has not been destroyed. When running hikari, this file is not generated. loginctl on some other terminal only outputs a 1-line error which I missed to save (I can do if you think that this information is important). Why could the authentication fail? Experimentally, I tried to enable USE=pam also for util-linux, but this didn't help.
I tried now with weston, because this at least starts when called from a terminal as the root user. The entry I get when attempting to start it with sddm is: ~/.local/share/sddm wrote: Date: 2020-10-18 CEST [10:53:38.650] weston 9.0.0 https://wayland.freedesktop.org Bug reports to: https://gitlab.freedesktop.org/wayland/weston/issues/ Build: 9.0.0 [10:53:38.650] Command line: weston [10:53:38.650] OS: Linux, 5.9.0-gentoo, #2 SMP Sat Oct 17 20:56:13 CEST 2020, x86_64 [10:53:38.650] Starting with no config file. [10:53:38.650] Output repaint window is 7 ms maximum. [10:53:38.666] Loading module '/usr/lib64/libweston-9/drm-backend.so' [10:53:38.669] initializing drm backend [10:53:38.669] logind: not running in a systemd session [10:53:38.669] logind: cannot setup systemd-logind helper (-3), using legacy fallback [10:53:38.669] fatal: drm backend should be run using weston-launch binary, or your system should provide the logind D-Bus API. [10:53:38.669] fatal: failed to create compositor backend The problem always seems to be the missing logind registration. The full log when first running X (succesfully) and then weston is this: journalctl -b --unit=sddm.service wrote: systemd[1]: Started Simple Desktop Display Manager. sddm[1284]: Initializing... sddm[1284]: Starting... sddm[1284]: Logind interface found sddm[1284]: Adding new display on vt 7 ... sddm[1284]: Loading theme configuration from "" sddm[1284]: Display server starting... sddm[1284]: Running: /usr/bin/X -nolisten tcp -iglx -auth /var/run/sddm/{756e83f3-70df-4899-9600-1ab56fb44361} -background none -noreset -displayfd 17 -seat seat0 vt7 sddm[1284]: Setting default cursor sddm[1284]: Could not setup default cursor sddm[1284]: Running display setup script "/home/gentoo/various/etc/X11/xsession.sddm" sddm[1284]: Display server started. sddm[1284]: Reading from "/usr/share/xsessions/fvwm-crystal.desktop" sddm[1284]: Reading from "/usr/share/xsessions/fvwm-crystal.desktop" sddm[1284]: Session "/usr/share/xsessions/fvwm-crystal.desktop" selected, command: "fvwm-crystal" sddm[1284]: Adding cookie to "/var/run/sddm/{756e83f3-70df-4899-9600-1ab56fb44361}" sddm-helper[1447]: [PAM] Starting... sddm-helper[1447]: [PAM] Authenticating... sddm-helper[1447]: [PAM] returning. sddm[1284]: Authenticated successfully sddm-helper[1447]: Starting: "/home/gentoo/various/etc/X11/Xsession \"fvwm-crystal\"" sddm[1284]: Session started sddm[1284]: Auth: sddm-helper exited successfully sddm[1284]: Display server stopping... sddm[1284]: Display server stopped. sddm[1284]: Running display stop script "/usr/share/sddm/scripts/Xstop" sddm[1284]: Removing display ":0" ... sddm[1284]: Adding new display on vt 7 ... sddm[1284]: Loading theme configuration from "" sddm[1284]: Display server starting... sddm[1284]: Running: /usr/bin/X -nolisten tcp -iglx -auth /var/run/sddm/{a1798342-b4d3-43d0-be36-518d4c6117d8} -background none -noreset -displayfd 17 -seat seat0 vt7 sddm[1284]: Setting default cursor sddm[1284]: Could not setup default cursor sddm[1284]: Running display setup script "/home/gentoo/various/etc/X11/xsession.sddm" sddm[1284]: Display server started. sddm[1284]: Socket server starting... sddm[1284]: Socket server started. sddm[1284]: Loading theme configuration from "" sddm[1284]: Greeter starting... sddm[1284]: Adding cookie to "/var/run/sddm/{a1798342-b4d3-43d0-be36-518d4c6117d8}" sddm-helper[2662]: [PAM] Starting... sddm-helper[2662]: [PAM] Authenticating... sddm-helper[2662]: [PAM] returning. sddm[1284]: Greeter session started successfully sddm[1284]: Message received from greeter: Connect sddm[1284]: Message received from greeter: Login sddm[1284]: Reading from "/usr/share/wayland-sessions/weston.desktop" sddm[1284]: Reading from "/usr/share/wayland-sessions/weston.desktop" sddm[1284]: Session "/usr/share/wayland-sessions/weston.desktop" selected, command: "weston" sddm-helper[2945]: [PAM] Starting... sddm-helper[2945]: [PAM] Authenticating... sddm-helper[2945]: [PAM] Preparing to converse... sddm-helper[2945]: [PAM] Conversation with 1 messages sddm-helper[2945]: [PAM] returning. sddm[1284]: Authenticated successfully sddm[1284]: Jumping to VT 1 sddm[1284]: VT mode didn't need to be fixed sddm-helper[2945]: Starting: "/home/gentoo/various/etc/X11/wayland-session weston" sddm[1284]: Session started sddm-helper[2945]: [PAM] Closing session sddm-helper[2945]: [PAM] Ended. sddm[1284]: Auth: sddm-helper exited with 1 sddm[1284]: Auth: sddm-helper exited successfully sddm[1284]: Greeter stopped. For some reason, sddm-helper fails to register properly when run "for wayland" while when run "for X" it works. What are the differences here? Can I somehow register a session manually to circumvent the (presumed) sddm bug?