prompt
stringlengths
1
63.6k
completion
stringlengths
1
53.1k
Hi I have a hp pavilion with a nvidia GeForce GTX 1050. I set the kernel options according to the gentoo handbooks for X and nvidia, repsectively. My make.conf contains (amongst others) the USE entries 'X', 'opengl', 'nvidia' ,'glut' I built the kernel, rebooted, and did Code: emerge --ask --verbose x11-base/xorg-drivers x11-drivers/nvidia-drivers This went through without errors. I called 'nvidia-xconfig' to create an xorg.conf. However, startx failed: Code: ~ # startx X.Org X Server 1.20.7 X Protocol Version 11, Revision 0 Build Operating System: Linux 5.4.28-gentoo-x86_64 x86_64 Gentoo Current Operating System: Linux quetzal 5.4.28-gentoo-x86_64 #1 SMP Wed Apr 15 11:10:32 CEST 2020 x86_64 Kernel command line: BOOT_IMAGE=/vmlinuz-5.4.28-gentoo-x86_64 root=UUID=a5023d91-b10e-411a-963e-1a4728447fc3 ro Build Date: 13 April 2020 04:24:53PM Current version of pixman: 0.38.4 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: Wed Apr 15 11:37:24 2020 (==) Using config file: "/etc/X11/xorg.conf" (==) Using system config directory "/usr/share/X11/xorg.conf.d" (EE) Fatal server error: (EE) no screens found(EE) (EE) Please consult the The X.Org Foundation support at http://wiki.x.org for help. (EE) Please also check the log file at "/var/log/Xorg.0.log" for additional information. (EE) (EE) Server terminated with error (1). Closing log file. xinit: giving up xinit: unable to connect to X server: Connection refused xinit: server error In '/var/log/Xorg.0.log' i found this line: Code: [ 1928.051] (EE) dbus-core: error connecting to system bus: org.freedesktop.DBus.Error.FileNotFound (Failed to connect to socket /run/dbus/system_bus_socket: No such file or directory) Could this be the reason for startx's failure? I then tried 'eselect opengl list', but eselect claims not to have this: Code: ~ # eselect opengl list !!! Error: Can't load module opengl exiting The nvidia module seems to be loaded: Code: ~ # lsmod | grep nvidia nvidia_drm 49152 0 nvidia_modeset 1085440 1 nvidia_drm nvidia 20013056 1 nvidia_modeset drm_kms_helper 217088 2 nvidia_drm,i915 drm 552960 4 drm_kms_helper,nvidia_drm,i915 i2c_core 94208 10 i2c_designware_platform,videodev,i2c_hid,i2c_designware_core,drm_kms_helper,i2c_algo_bit,nvidia,i2c_i801,i915,drm What do i need to do to put his in order?
jody wrote: I then tried 'eselect opengl list', but eselect claims not to have this: Code: ~ # eselect opengl list !!! Error: Can't load module opengl exiting This is correct if you enabled,and by default is enabled, libglvnd use flag. Now is through media-libs/libglvnd that you can change opngl context.
First of all, If I use dbus, elogind (the whole "stuff"), then there is absolutely no issue to start X as user. So now, on the same system without dbus, elogind, pam, policykit. /etc/portage/make.conf Code: USE="[...] -dbus -elogind -libnotify -pam -policykit -udisks -upower" VIDEO_CARDS="radeon r600" INPUT_DEVICES="libinput" Code: x11-base/xorg-server-1.20.7 ipv6 libglvnd libressl udev xcsecurity xorg xvfb -debug -dmx -doc -elogind -kdrive -minimal -selinux -static-libs -suid -systemd -unwind -wayland -xephyr -xnest Applied the following as usual after xorg-server installation. Code: chown -v :input /usr/bin/Xorg chmod -v g+s /usr/bin/Xorg Here is the error message when login in : Code: [ 40.371] (II) Loading sub module "ramdac" [ 40.371] (II) LoadModule: "ramdac" [ 40.371] (II) Module "ramdac" already built-in [ 40.371] (II) UnloadModule: "modesetting" [ 40.371] (II) Unloading modesetting [ 40.373] Unable to retrieve master [ 40.373] (EE) Fatal server error: [ 40.373] (EE) AddScreen/ScreenInit failed for driver 0 and also (when using straight "startx" on console) : Code: [ 238.124] (II) modesetting: Driver for Modesetting Kernel Drivers: kms [ 238.124] (EE) Fatal server error: [ 238.127] (EE) parse_vt_settings: Cannot open /dev/tty0 (Permission denied) Any idea ? Thanks ---- config : .xinitrc Code: #!/bin/sh userresources=$HOME/.Xresources usermodmap=$HOME/.Xmodmap sysresources=/etc/X11/xinit/Xresources sysmodmap=/etc/X11/xinit/Xmodmap if [ -f $sysresources ]; then xrdb -merge $sysresources fi if [ -f $sysmodmap ]; then xmodmap $sysmodmap fi if [ -f "$userresources" ]; then xrdb -merge "$userresources" fi if [ -f "$usermodmap" ]; then xmodmap "$usermodmap" fi exec openbox-session .bash_profile Code: if [[ -z $DISPLAY ]] && [[ $(tty) = /dev/tty1 ]]; then startx -- vt1 -nolisten tcp -keeptty >/dev/null 2>&1 & vlock
It's not doable unless you patch xorg-server (if you want to use modesetting driver) Now, I use amdgpu driver and I had to patch that one, it's somewhere in the forum I can't find that topic now for some reason. I see you use "radeon r600" so I don't know if it can be done with those. There's no need for doing all that other stuff mentioned in the Wiki (chown etc.) , information in that Wiki is outdated. Edit: Okay, I found the topic, you might find something useful https://forums.gentoo.org/viewtopic-t-1092792-start-0.html
With eselect opengl gone how can I enable openGL on a running system? All the posts I read here seem to imply libglvnd just works, but although the rest of my system runs fine, no 3D, glxgears, blender etc. Code: glxgears X Error of failed request: BadValue (integer parameter out of range for operation) Major opcode of failed request: 150 (GLX) Minor opcode of failed request: 3 (X_GLXCreateContext) Value in failed request: 0x0 Serial number of failed request: 32 Current serial number in output stream: 33 What exactly did eselect opengl do? I have always had to run it after emerging the latest NVidia drivers. Can I manually emulate all the required steps? What is libglvnd supposed to do and how? (I think it is something to do with integrated GFX chips and GFX card) No errors re-emerging x11-drivers/nvidia-drivers-440.82 either directly or via emerge @module-rebuild Code: eix nvidia-drivers [I] x11-drivers/nvidia-drivers Available versions: 340.108(0/340)^mtd 390.132-r1(0/390)^mtd ~390.132-r2(0/390)^mtd 430.64-r1(0/430)^mtd ~430.64-r2(0/430)^mtd 435.21-r1(0/435)^mtd ~435.21-r2(0/435)^mtd 440.82(0/440)^mtd ~440.82-r1(0/440)^mtd {+X acpi compat +driver gtk3 +kms +libglvnd multilib static-libs +tools uvm wayland ABI_MIPS="n32 n64 o32" ABI_RISCV="lp64 lp64d" ABI_S390="32 64" ABI_X86="32 64 x32" KERNEL="FreeBSD linux"} Installed versions: 440.82(0/440)^mtd(23:19:53 23/04/20)(X acpi driver kms libglvnd multilib tools uvm -compat -gtk3 -static-libs -wayland ABI_MIPS="-n32 -n64 -o32" ABI_RISCV="-lp64 -lp64d" ABI_S390="-32 -64" ABI_X86="32 64 -x32" KERNEL="linux -FreeBSD") Homepage: https://www.nvidia.com/ Description: NVIDIA Accelerated Graphics Driver so i am a bit stuck without eselect opengl Code: libglvnd -su: libglvnd: command not found man libglvnd No manual entry for libglvnd any ideas or troubleshooting steps very welcome.
After apply Ionen suggestions what return xrandr --listproviders command?
Hi, Hope this version is OK? www-client/firefox-68.7.0 It just went stable. Maybe I am jumping the gun a little ? https://forums.gentoo.org/viewtopic.php?p=8439848#8439848 Quote: Affected Packages Package: www-client/firefox Vulnerable: < 74.0.1 Unaffected: >= 68.6.1 < 68.6.2 Unaffected: >= 74.0.1 < 74.0.2 Architectures: All supported architectures ?
The GLSA does not discuss stability at all. It merely tells you which version you must install to avoid this CVE.
Even though KDE Plasma is the latest, I noticed that kde-base/kde-meta is still available on the Portage tree. When I do an emerge --ask on kde-base/kde-meta, it wants to pull in kde-plasma/plasma-meta anyway. When Plasma first came out, it seemed that kde-base/kde-meta would pull in KDE 4 while the plasma atoms would pull in the current KDE Plasma. I would have thought that with the release of Plasma that kde-base/kde-meta would be a depreciated package atom. I installed kde-plasma/plasma-meta a few days ago and it seemed to be missing many of the packages that used to come with KDE 4 when emerging kde-base/kde-meta. Also, kde-base/kde-meta appears to pull in a lot more packages than kde-plasma/plasma-meta. What is the difference between the two atoms? Is kde-base/kde-meta the all inclusive KDE Plasma while kde-plasma/plasma-meta is just the desktop with a few programs? Or is there something more to it?
https://wiki.gentoo.org/wiki/KDE at your service. kde-meta exists as sort of a legacy package for people who were used to getting "all of KDE" from way back when KDE3 and KDE SC4 were shipped as a single product. So today it simply does this: Code: * dependency graph for kde-apps/kde-meta-19.12.3 `-- kde-apps/kde-meta-19.12.3 amd64 `-- kde-apps/kde-apps-meta-20.03.90 (>=kde-apps/kde-apps-meta-19.12.3) ~amd64 `-- kde-plasma/plasma-meta-5.18.4.1 (kde-plasma/plasma-meta) ~amd64 ...where kde-apps-meta installs all applications (and some libraries) contained in "KDE Release Service" (formerly known as KDE Applications). ...and where plasma-meta simply installs the desktop, *no* applications. Similarly, we still carry around an old "base install" package: Code: * dependency graph for kde-apps/kdebase-meta-19.12.3 `-- kde-apps/kdebase-meta-19.12.3 amd64 `-- kde-apps/kdecore-meta-20.03.90 (>=kde-apps/kdecore-meta-19.12.3) ~amd64 `-- kde-plasma/plasma-meta-5.18.4.1 (kde-plasma/plasma-meta) ~amd64 We simply haven't got around to getting rid of these two. It would have to be a very long last-rites period to make sure no one depending on those two packages would suddenly lose all their KDE related packages during --depclean.
Is there some way to restore the Session from last logout in Openbox? Either an Openbox feature or some other tool.
/usr/bin/openbox-gnome-session /usr/bin/openbox-kde-session /usr/bin/openbox-session
Hi, Okular rendering some fonts ugly in pdf files instead muPDF rendering them very well. Code: kde-apps/okular-19.12.3-r1(5) (chm crypt djvu epub handbook image-backend markdown mobi pdf plucker postscript share speech tiff -debug -mobile -test) app-text/mupdf-1.16.1(0/1.16.1) (X javascript libressl opengl ssl -static-libs) poppler is in stable version. Here the same page open in both programs. https://ibb.co/2FVRMTJ EDIT: Thanks for the hint, I've check all my fonts installed (my is an old installation) remove some old fonts and now the rendering is OK.
In Okular, please open File -> Properties -> Fonts. Are there any fonts which are NOT included in your document and which were substituted by system fonts? Which fonts were substituted? And which fonts were chosen as a replacement?
Hello all. I switched from consolekit to elogind as proposed by latest news. Now I cannot reboot or shutdown from plasma. The buttons are active and they work, as the screen to select shutdown/reboot/logout follows. But when I select shutdown or reboot I see kind of a freezed desktop. Launcher, tray etc. are still visible but do no react. Only thing I can do is start KSysGuard (Ctrl+Esc). Shutdown/reboot from sddm login works fine. I don't find any remains of consolekit, no USE flag, no package installed. Installed packages: - sys-apps/openrc-0.42.1. - x11-misc/sddm-0.18.1-r1 - sys-auth/elogind-243.7 It's a machine with intel chipset, no nvidia graphics. Some info follwing, I can certainly provide more. Any response appreciated. Code: # rc-status -a Runlevel: boot hwclock [ started ] modules [ started ] fsck [ started ] root [ started ] mtab [ started ] swap [ started ] termencoding [ started ] keymaps [ started ] localmount [ started ] sysctl [ started ] bootmisc [ started ] elogind [ started ] save-termencoding [ started ] procfs [ started ] binfmt [ started ] opentmpfiles-setup [ started ] hostname [ started ] net.lo [ started ] urandom [ started ] loopback [ started ] save-keymaps [ started ] Runlevel: default device-mapper [ started ] dbus [ started ] consolefont [ started ] net.enp0s25 [ started ] net.wlp10s0 [ started ] pdnsd [ started ] netmount [ started ] xdm [ started ] syslog-ng [ started ] acpid [ started ] cupsd [ started ] cronie [ started ] irqbalance [ started ] laptop_mode [ started ] timekeeper [ started ] local [ started ] Runlevel: shutdown savecache [ stopped ] killprocs [ stopped ] mount-ro [ stopped ] Runlevel: nonetwork local [ started ] Runlevel: sysinit sysfs [ started ] devfs [ started ] udev [ started ] dmesg [ started ] kmod-static-nodes [ started ] opentmpfiles-dev [ started ] udev-trigger [ started ] cgroups [ started ] Dynamic Runlevel: hotplugged Dynamic Runlevel: needed/wanted rpcbind [ started ] rpc.pipefs [ started ] rpc.idmapd [ started ] rpc.statd [ started ] xdm-setup [ started ] nfsclient [ started ] Dynamic Runlevel: manual ntpd Code: # equery u sddm [ Legend : U - final flag setting for installation] [ : I - package is installed with flag ] [ Colors : set, unset ] * Found these USE flags for x11-misc/sddm-0.18.1-r1: U I - - consolekit : Use ck-launch-session from sys-auth/consolekit by default in Xsession (no native support) + + elogind : Use sys-auth/elogind for session tracking. - - pam : Add support for PAM (Pluggable Authentication Modules) - DANGEROUS to arbitrarily flip - - systemd : Enable use of systemd-specific libraries and features like socket activation or session tracking - - test : Enable dependencies and/or preparations necessary to run tests (usually controlled by FEATURES=test but can be toggled independently)
This is /var/log/messages after choosing shutdown in KDE, which "freezes" plasma: Code: Apr 23 17:34:51 fanny dbus-daemon[15033]: [session uid=1000 pid=15031] Activating service name='org.kde.LogoutPrompt' requested by ':1.14' (uid=1000 pid=15109 comm="/usr/bin/ksmserver ") Apr 23 17:34:51 fanny dbus-daemon[15033]: [session uid=1000 pid=15031] Successfully activated service 'org.kde.LogoutPrompt' When I restart xdm (sddm) from this state, messages continue: Code: Apr 23 17:35:23 fanny start-stop-daemon[1585]: Will stop /usr/bin/sddm Apr 23 17:35:23 fanny start-stop-daemon[1587]: Will stop /usr/bin/sddm Apr 23 17:35:23 fanny start-stop-daemon[1587]: Will stop PID 11557 Apr 23 17:35:23 fanny start-stop-daemon[1587]: Sending signal 15 to PID 11557 Apr 23 17:35:23 fanny kernel: broken atomic modeset userspace detected, disabling atomic Apr 23 17:35:27 fanny dbus-daemon[1691]: [session uid=1000 pid=1689] Activating service name='org.kde.ActivityManager' requested by ':1.4' (uid=1000 pid=1715 comm="kded5 ") Apr 23 17:35:27 fanny dbus-daemon[1691]: [session uid=1000 pid=1689] Successfully activated service 'org.kde.ActivityManager' Apr 23 17:35:27 fanny dbus-daemon[1691]: [session uid=1000 pid=1689] Activating service name='org.kde.kglobalaccel' requested by ':1.6' (uid=1000 pid=1729 comm="/usr/lib64/libexec/kactivitymanagerd ") Apr 23 17:35:27 fanny dbus-daemon[1691]: [session uid=1000 pid=1689] Successfully activated service 'org.kde.kglobalaccel' Apr 23 17:35:27 fanny dbus-daemon[1691]: [session uid=1000 pid=1689] Activating service name='org.kde.KScreen' requested by ':1.4' (uid=1000 pid=1715 comm="kded5 ") Apr 23 17:35:27 fanny dbus-daemon[1691]: [session uid=1000 pid=1689] Successfully activated service 'org.kde.KScreen' Apr 23 17:35:27 fanny dbus-daemon[1691]: [session uid=1000 pid=1689] Activating service name='ca.desrt.dconf' requested by ':1.12' (uid=1000 pid=1755 comm="/usr/bin/gsettings set org.gnome.desktop.a11y.appl") Apr 23 17:35:27 fanny dbus-daemon[1691]: [session uid=1000 pid=1689] Successfully activated service 'ca.desrt.dconf' Apr 23 15:35:28 fanny rtkit-daemon[15176]: Supervising 0 threads of 0 processes of 1 users. Apr 23 15:35:28 fanny rtkit-daemon[15176]: Supervising 0 threads of 0 processes of 1 users. Apr 23 15:35:28 fanny rtkit-daemon[15176]: Supervising 0 threads of 0 processes of 1 users. Apr 23 15:35:28 fanny rtkit-daemon[15176]: Supervising 0 threads of 0 processes of 1 users. Apr 23 15:35:28 fanny rtkit-daemon[15176]: Supervising 0 threads of 0 processes of 1 users. Apr 23 15:35:28 fanny rtkit-daemon[15176]: Supervising 0 threads of 0 processes of 1 users. Apr 23 15:35:28 fanny rtkit-daemon[15176]: Supervising 0 threads of 0 processes of 1 users. Apr 23 15:35:28 fanny rtkit-daemon[15176]: Supervising 0 threads of 0 processes of 1 users. Apr 23 15:35:28 fanny rtkit-daemon[15176]: Supervising 0 threads of 0 processes of 1 users. Apr 23 15:35:28 fanny rtkit-daemon[15176]: Supervising 0 threads of 0 processes of 1 users. Apr 23 17:35:28 fanny pulseaudio[1794]: [pulseaudio] bluez5-util.c: GetManagedObjects() failed: org.freedesktop.DBus.Error.ServiceUnknown: The name org.bluez was not provided by any .service files Apr 23 17:35:28 fanny dbus-daemon[1691]: [session uid=1000 pid=1689] Activating service name='org.gtk.vfs.Daemon' requested by ':1.25' (uid=1000 pid=1799 comm="claws-mail ") Apr 23 17:35:28 fanny dbus-daemon[1691]: [session uid=1000 pid=1689] Successfully activated service 'org.gtk.vfs.Daemon' Apr 23 17:35:30 fanny /hp-systray[1865]: hp-systray[1865]: error: option -s not recognized Apr 23 17:35:32 fanny dbus-daemon[5110]: [system] Activating service name='org.kde.powerdevil.discretegpuhelper' requested by ':1.215' (uid=1000 pid=1875 comm="/usr/lib64/libexec/org_kde_powerdevil ") (using servicehelper) Apr 23 17:35:32 fanny dbus-daemon[5110]: [system] Successfully activated service 'org.kde.powerdevil.discretegpuhelper' Apr 23 17:35:32 fanny dbus-daemon[5110]: [system] Activating service name='org.kde.powerdevil.backlighthelper' requested by ':1.215' (uid=1000 pid=1875 comm="/usr/lib64/libexec/org_kde_powerdevil ") (using servicehelper) Apr 23 17:35:32 fanny dbus-daemon[5110]: [system] Successfully activated service 'org.kde.powerdevil.backlighthelper' Apr 23 17:35:32 fanny kernel: elogind-daemon[5190]: CLOCK_BOOTTIME_ALARM is not supported Apr 23 17:35:32 fanny dbus-daemon[1691]: [session uid=1000 pid=1689] Activating service name='org.bluez.obex' requested by ':1.4' (uid=1000 pid=1715 comm="kded5 ") Apr 23 17:35:32 fanny obexd[1908]: OBEX daemon 5.54 Apr 23 17:35:32 fanny dbus-daemon[1691]: [session uid=1000 pid=1689] Successfully activated service 'org.bluez.obex'
I've read all messages in all threads but one particular feed ( http://www.elpais.com/rss/feed.html?feedId=1002 ) shows four messages unread. I've tried ctrl-R (mark all read) and I've tried deleting the feed and re-creating it. Before deleting, there was one unread message but now there are four. I've scrolled through the list of items and there are none show in bold (i.e., unread). So what is going on and how can I fix it?
Once I had the same, the reason was: A story with an empty title at the end of all feeds (empty title, empty author and empty date).
Dear All, I am running Code: gentoo stable amd64 on a kaveri box. I have installed Code: gnome-light . I tried changing the keyboard from default (us) to uk. My Code: keymap file looks like this: Code: localhost /etc/conf.d # more keymaps # Use keymap to specify the default console keymap. There is a complete tree # of keymaps in /usr/share/keymaps to choose from. keymap="uk" # Should we first load the 'windowkeys' console keymap? Most x86 users will # say "yes" here. Note that non-x86 users should leave it as "no". # Loading this keymap will enable VT switching (like ALT+Left/Right) # using the special windows keys on the linux console. windowkeys="YES" # The maps to load for extended keyboards. Most users will leave this as is. extended_keymaps="" #extended_keymaps="backspace keypad euro2" # Tell dumpkeys(1) to interpret character action codes to be # from the specified character set. # This only matters if you set unicode="yes" in /etc/rc.conf. # For a list of valid sets, run `dumpkeys --help` dumpkeys_charset="" # Some fonts map AltGr-E to the currency symbol instead of the Euro. # To fix this, set to "yes" fix_euro="NO" Running locale -a gives the following: Code: localhost /etc/conf.d # locale -a C C.utf8 en_GB.utf8 POSIX My Code: make.conf is here: Code: localhost /etc/portage # more make.conf # These settings were set by the catalyst build script that automatically # built this stage. # Please consult /usr/share/portage/config/make.conf.example for a more # detailed example. COMMON_FLAGS="-march=native -O2 -pipe" CFLAGS="${COMMON_FLAGS}" CXXFLAGS="${COMMON_FLAGS}" FCFLAGS="${COMMON_FLAGS}" FFLAGS="${COMMON_FLAGS}" # WARNING: Changing your CHOST is not something that should be done lightly. # Please consult http://www.gentoo.org/doc/en/change-chost.xml before changing. CHOST="x86_64-pc-linux-gnu" # These are the USE and USE_EXPAND flags that were used for # buidling in addition to what is provided by the profile. USE="X acl alsa alsa-plugin aqua asyncns blender bluetooth bmp branding bullet bzip2 cairo caps classic colorio crypt css cycles dbus dds -debug djvu corefonts docs dri3 eet egl elbeem elogind examples fbcondecor ffmpeg fftw filecaps fontconfig gallium game-engine gbm glamor gles glib gnome gpl grub gssapi gtk gtk3 gui handbook hardcoded-tables hardened ico iconv icu idn imx introspection ipv6 jack jit jpeg jumbo-build kerberos latex ldap legacy-systray libkms llvm lockluajit lprng-compat mmap ndof network networkmanager nls npm nptl nss openal opengl openssl openimageio openmp orc pcre pdf pie plasma plymouth png policykit polkit postproc postscript ppm psd pulseaudio qtmedia readline recursion-limit sctp selinux session snapshot sndfile sound ssl startup-notification suid symlink tcl tcpd tftpd threads thunar tiff truetype udev udisks unicode upower usb vanilla webgl webrtc-aec xcb xinetd xv zeroconf zlib -caps -clang -dot -doxysearch -drm -filecaps" FEATURES="split-elog buildpkg" #CCACHE_SIZE="30G" MAKEOPTS="-j5" CPU_FLAGS_X86="mmx sse sse2 3dnow 3dnowext aes avx fma3 fma4 mmx mmxext sse3 sse4_1 sse4_2 ssse3 xop" FFTOOLS="aviocat cws2fws ffescape ffeval ffhash fourcc2pixfmt graph2dot ismindex pktdumper qt-faststart sidxindex trasher" #ABI_X86="32 64 x32" #PYTHON_TARGETS="(python2_7)(python3_4)(python3_5)(python3_6)" #PYTHON_SINGLE_TARGET ="(python3_4)" #PORTAGE_BINHOST="http://binhost.genfic.com/packages" PORTDIR="/usr/portage" DISTDIR="${PORTDIR}/distfiles" PKGDIR="${PORTDIR}/packages" VIDEO_CARDS="amdgpu radeonsi radeon" ACCEPT_KEYWORDS="amd64" # (For mouse, keyboard, and Synaptics touchpad support) INPUT_DEVICES="synaptics libinput" GENTOO_MIRRORS="http://mirror.bytemark.co.uk/gentoo/" ACCEPT_LICENSE="* -@EULA" LINGUAS="en" #SYNC="rsync://rsync.uk.gentoo.org/gentoo-portage" # This sets the language of build output to English. # Please keep this setting intact when reporting bugs. LC_MESSAGES=C # Turn on logging - see http://gentoo-en.vfose.ru/wiki/Gentoo_maintenance. PORTAGE_ELOG_CLASSES="info warn error log qa" # Echo messages after emerge, also save to /var/log/portage/elog PORTAGE_ELOG_SYSTEM="echo save" GRUB_PLATFORMS="pc" I tried setting the keyboard in gnome but it still uses the us configuration not uk. Comments appreciated. Regards MF
mikefot, /etc/conf.d/keymaps is for your console keymap. Code: # LINGUAS is the old way but a few overlays may still use it" LINGUAS="en en_GB en_US" L10N="en en-GB en-US" So you will be missing optional UK English language support. Your default Xorg keymap is set in xorg.conf or xorg.conf.d/
I've been trying to upgrade kde/plasma this weekend and am stuck on xdg-desktop-portal. Code: # emerge -uaN --verbose-conflicts xorg-server kde-plasma/plasma-meta >>> Emerging (1 of 89) sys-apps/xdg-desktop-portal-1.6.0-r1::gentoo ... email.c:(.text+0x2e1): undefined reference to `g_strv_equal' /usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/../../../../x86_64-pc-linux-gnu/bin/ld: email.c:(.text+0x330): undefined reference to `g_strv_equal' /usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/../../../../x86_64-pc-linux-gnu/bin/ld: email.c:(.text+0x37f): undefined reference to `g_strv_equal' collect2: error: ld returned 1 exit status make[2]: *** [Makefile:1803: test-backends] Error 1 make[2]: Leaving directory '/var/tmp/portage/sys-apps/xdg-desktop-portal-1.6.0-r1/work/xdg-desktop-portal-1.6.0' make[1]: *** [Makefile:3715: all-recursive] Error 1 make[1]: Leaving directory '/var/tmp/portage/sys-apps/xdg-desktop-portal-1.6.0-r1/work/xdg-desktop-portal-1.6.0' make: *** [Makefile:1429: all] Error 2 * ERROR: sys-apps/xdg-desktop-portal-1.6.0-r1::gentoo failed (compile phase): * emake failed * * If you need support, post the output of `emerge --info '=sys-apps/xdg-desktop-portal-1.6.0-r1::gentoo'`, * the complete build log and the output of `emerge -pqv '=sys-apps/xdg-desktop-portal-1.6.0-r1::gentoo'`. * The complete build log is located at '/var/tmp/portage/sys-apps/xdg-desktop-portal-1.6.0-r1/temp/build.log'. * The ebuild environment file is located at '/var/tmp/portage/sys-apps/xdg-desktop-portal-1.6.0-r1/temp/environment'. * Working directory: '/var/tmp/portage/sys-apps/xdg-desktop-portal-1.6.0-r1/work/xdg-desktop-portal-1.6.0' * S: '/var/tmp/portage/sys-apps/xdg-desktop-portal-1.6.0-r1/work/xdg-desktop-portal-1.6.0' >>> Failed to emerge sys-apps/xdg-desktop-portal-1.6.0-r1, Log file: Here, I think, are the relevant pastebins emerge --info '=sys-apps/xdg-desktop-portal-1.6.0-r1::gentoo': http://dpaste.com/3AGBGPB emerge -pqv '=sys-apps/xdg-desktop-portal-1.6.0-r1::gentoo: http://dpaste.com/1E07P7Y Build Log: http://dpaste.com/12PXSG0 Environment file: http://dpaste.com/1FDPD87 Thank you in advance for any troubleshooting tips.
g_strv_equal is a dev-libs/glib function, try to rebuild this package.
I have the same. Code: gentoo / # /etc/init.d/libvirtd start * Starting libvirtd ... [ ok ] gentoo / # /etc/init.d/libvirtd status * status: crashed gentoo / # The virt-host-validate command is the same for both root and regular user: Code: gentoo / # virt-host-validate QEMU: Checking for hardware virtualization : PASS QEMU: Checking if device /dev/kvm exists : PASS QEMU: Checking if device /dev/kvm is accessible : PASS QEMU: Checking if device /dev/vhost-net exists : PASS QEMU: Checking if device /dev/net/tun exists : PASS QEMU: Checking for cgroup 'cpu' controller support : PASS QEMU: Checking for cgroup 'cpuacct' controller support : PASS QEMU: Checking for cgroup 'cpuset' controller support : PASS QEMU: Checking for cgroup 'memory' controller support : PASS QEMU: Checking for cgroup 'devices' controller support : PASS QEMU: Checking for cgroup 'blkio' controller support : PASS QEMU: Checking for device assignment IOMMU support : PASS QEMU: Checking if IOMMU is enabled by kernel : PASS gentoo / # User is in 'libvirt' and 'kvm' groups. Split from a 2013 thread of the same name. -- NeddySeagoon
Solved. There was syntax error in /etc/libvirt/qemu.conf (comments inside nvram firmware string).
Hi! Back after years to gentoo, I am trying to get Xorg working following through this guide: https://wiki.gentoo.org/wiki/Xorg/Guide Unfortunately, it won't work out of the box when it comes to startx, I haven't created /etc/X11/xorg.conf.d/xx.conf files yet. Actually before I do, I wonder if my video cards may be supported at all. Here's some more information: Code: # lspci | grep VGA 00:02.0 VGA compatible controller: Intel Corporation UHD Graphics 630 (Mobile) (rev 02) 01:00.0 VGA compatible controller: NVIDIA Corporation TU106GLM [Quadro RTX 3000 Mobile / Max-Q] (rev a1) Code: # emerge -V Portage 2.3.89 (python 3.6.10-final-0, default/linux/amd64/17.0/desktop, gcc-9.2.0, glibc-2.29-r7, 5.6.2-gentoo-x86_64 x86_64) Code: # cat /var/log/Xorg.0.log | grep EE (WW) warning, (EE) error, (NI) not implemented, (??) unknown. [ 449.736] (EE) Failed to load module "nv" (module does not exist, 0) [ 449.736] (EE) Failed to load module "fbdev" (module does not exist, 0) [ 449.736] (EE) Failed to load module "vesa" (module does not exist, 0) [ 449.778] (EE) Unknown chipset: NV166 [ 449.811] (EE) modeset(G0): glamor initialization failed [ 450.129] (II) Initializing extension MIT-SCREEN-SAVER Code: # cat /etc/portage/make.conf USE="-qt -qt4 -qt5 gtk gtk2 dvd aalib aac acpi alsa bluray cddb cdr dbus efi wifi 3dnow X aac crypt directfb dvdr exif fbcondecor ffmpeg flac\ bindist mng mmx sse sse2 encode fbcon ftp gif gnome gphoto2 gpm gzip icq joystick imagemagick ipod imap imlib\ -java -javascript jpeg lame libmpeg2 mmxext mp3 mp4 mpeg mplayer multilib musepack ogg openal opengl oss -pcmcia png quicktime\ scanner smp sound ssse3 ssl udev usb v4l v4l2 vorbis wine xpm xvid xvmc" INPUT_DEVICES="evdev joystick synaptics" VIDEO_CARDS="nouveau intel i915 i965" Code: # dmesg | grep nouveau [ 3.120861] nouveau 0000:01:00.0: enabling device (0000 -> 0003) [ 3.120968] nouveau 0000:01:00.0: NVIDIA TU106 (166000a1) [ 3.213909] nouveau 0000:01:00.0: bios: version 90.06.39.00.70 [ 3.214078] nouveau 0000:01:00.0: gr: failed to load firmware [ 3.214374] nouveau 0000:01:00.0: fb: 6144 MiB GDDR6 [ 3.216724] nouveau 0000:01:00.0: fb: VPR locked, but no scrubber binary! [ 3.219851] nouveau 0000:01:00.0: DRM: VRAM: 6144 MiB [ 3.219853] nouveau 0000:01:00.0: DRM: GART: 536870912 MiB [ 3.219855] nouveau 0000:01:00.0: DRM: BIT table 'A' not found [ 3.219856] nouveau 0000:01:00.0: DRM: BIT table 'L' not found [ 3.219858] nouveau 0000:01:00.0: DRM: TMDS table version 2.0 [ 3.219859] nouveau 0000:01:00.0: DRM: DCB version 4.1 [ 3.219861] nouveau 0000:01:00.0: DRM: DCB outp 00: 02803f66 04600020 [ 3.219863] nouveau 0000:01:00.0: DRM: DCB outp 01: 04824f76 04600010 [ 3.219864] nouveau 0000:01:00.0: DRM: DCB outp 02: 04824f72 00020010 [ 3.219866] nouveau 0000:01:00.0: DRM: DCB outp 03: 02012f52 00020010 [ 3.219867] nouveau 0000:01:00.0: DRM: DCB outp 04: 01830f36 04600010 [ 3.219869] nouveau 0000:01:00.0: DRM: DCB outp 05: 01841f46 04600020 [ 3.219870] nouveau 0000:01:00.0: DRM: DCB conn 00: 00001046 [ 3.219871] nouveau 0000:01:00.0: DRM: DCB conn 01: 00002146 [ 3.219873] nouveau 0000:01:00.0: DRM: DCB conn 02: 00010261 [ 3.219874] nouveau 0000:01:00.0: DRM: DCB conn 03: 08020347 [ 3.219875] nouveau 0000:01:00.0: DRM: DCB conn 04: 01000446 [ 3.220041] nouveau 0000:01:00.0: DRM: failed to create kernel channel, -22 [ 3.220159] nouveau 0000:01:00.0: DRM: MM: using COPY for buffer copies [ 4.888313] nouveau 0000:01:00.0: [drm] Cannot find any crtc or sizes [ 4.888620] [drm] Initialized nouveau 1.3.1 20120801 for 0000:01:00.0 on minor 1 [ 5.048440] nouveau 0000:01:00.0: [drm] Cannot find any crtc or sizes [ 5.208738] nouveau 0000:01:00.0: [drm] Cannot find any crtc or sizes Code: # dmesg | grep i915 [ 2.677853] i915 0000:00:02.0: vgaarb: deactivate vga console [ 2.717151] i915 0000:00:02.0: vgaarb: changed VGA decodes: olddecodes=io+mem,decodes=none:owns=io+mem [ 2.718009] i915 0000:00:02.0: Direct firmware load for i915/kbl_dmc_ver1_04.bin failed with error -2 [ 2.718012] i915 0000:00:02.0: Failed to load DMC firmware i915/kbl_dmc_ver1_04.bin. Disabling runtime power management. [ 2.718014] i915 0000:00:02.0: DMC firmware homepage: https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/i915 [ 3.115683] [drm] Initialized i915 1.6.0 20200114 for 0000:00:02.0 on minor 0 [ 3.463849] fbcon: i915drmfb (fb0) is primary device [ 3.515942] i915 0000:00:02.0: fb0: i915drmfb frame buffer device Any help or advice would be greatly appreciated, thanks for reading!
Adrien, Welcome back. We knew you would come, just not when :) You have two real graphics systems, in I guess, a laptop. Xorg should start with no additional configuration, so lets get that going first of all. Code: [ 449.736] (EE) Failed to load module "nv" (module does not exist, 0) [ 449.736] (EE) Failed to load module "fbdev" (module does not exist, 0) [ 449.736] (EE) Failed to load module "vesa" (module does not exist, 0) Can all safely be ignored. Its Xorg running though its list of possible video drivers for your system and finding out that they are not all available. Your i915 looks like its working. Its missing power management but you will still get a picture. Code: [ 3.515942] i915 0000:00:02.0: fb0: i915drmfb frame buffer device Please put all of your Xorg.0.log onto a pastebin site anh your entire kernel .config file too. As you don't have a GUI, wgetpaste is your friend.
Hi there, during a problem with kde i have tested a new desktop envirement. Cinnamon (Version 2.8.8 ) looks good, but i have a "bug" (I think its a configuration problem) with my both Monitors. They have a different resolutions. Cinnamon handles both like its one. So if i maximize a Software the Window strech over both. Cause of the different resolution there is a "death area" on the left upper side. Also the Taskbar goes over both and it looks wrong. Is there an option to seperate the monitors? So if i maximize something its only on one Monitor and the Taskbar is also only on one? EDIT: xinerama use flag is set, i have a nvidia card with the newest drivers. EDIT2: xinerama USE FLAG is set, and then "emerge --update --deep --newuse @world" solve the problem!
Gladdle wrote: Hi there, during a problem with kde i have tested a new desktop envirement. Cinnamon (Version 2.8.8 ) looks good, but i have a "bug" (I think its a configuration problem) with my both Monitors. They have a different resolutions. Cinnamon handles both like its one. So if i maximize a Software the Window strech over both. Cause of the different resolution there is a "death area" on the left upper side. Also the Taskbar goes over both and it looks wrong. Is there an option to seperate the monitors? So if i maximize something its only on one Monitor and the Taskbar is also only on one? EDIT: xinerama use flag is set, i have a nvidia card with the newest drivers. EDIT2: xinerama USE FLAG is set, and then "emerge --update --deep --newuse @world" solve the problem! Thank you very much for sharing your personal experience. Even in 2020, this topic helped me. Thanks!
Hi everyone, I just emerged app-office/libreoffice-bin 6.3.4.2-r1 on a fresh gentoo install (using genkernel) and I've noticed that Libreoffice's toolbar menu (e.g., at the top where it should say File, Edit, Tools, Help, etc.) is completely missing. The space for a toolbar is there, right above where the Libreoffice icons are, but all the toolbar option are missing. When I Google'd, others had run into a similar issue due to OpenGL problems. I tried running Libreoffice in safe-mode (e.g., $ soffice --safe-mode) to turn off the OpenGL option but it doesn't bring back the missing toolbar. Any ideas? Thanks.
Hi there, Have you tried starting the application with something like: Code: SAL_USE_VCLPLUGIN=gen libreoffice or Code: SAL_USE_VCLPLUGIN=gtk libreoffice ? Cheers, Nathan Zachary
With the most recent portage updates I get blocks: Code: emerge -av xorg-server mesa Calculating dependencies... done! [ebuild N ] media-libs/libglvnd-1.3.1::gentoo USE="X -test" ABI_X86="32 (64) (-x32)" 0 KiB [ebuild R ~] media-libs/mesa-20.0.4::gentoo USE="X classic dri3 egl gallium gbm gles2 libglvnd* llvm wayland xvmc zstd -d3d9 -debug -gles1 -lm-sensors -opencl -osmesa (-selinux) -test -unwind -vaapi -valgrind -vdpau -vulkan -vulkan-overlay -xa" ABI_X86="32 (64) (-x32)" VIDEO_CARDS="nouveau (-freedreno) -i915 -i965 -intel -iris (-lima) (-panfrost) -r100 -r200 -r300 -r600 -radeon -radeonsi (-vc4) -virgl (-vivante) -vmware" 0 KiB [blocks b ] media-libs/mesa[-libglvnd(-)] ("media-libs/mesa[-libglvnd(-)]" is blocking media-libs/libglvnd-1.3.1) [ebuild R ~] x11-base/xorg-server-1.20.8:0/1.20.8::gentoo USE="libglvnd* suid udev xorg -debug -dmx -doc -elogind -ipv6 -kdrive -libressl -minimal (-selinux) -static-libs (-systemd) -unwind -wayland -xcsecurity -xephyr -xnest -xvfb" 0 KiB [blocks B ] app-eselect/eselect-opengl ("app-eselect/eselect-opengl" is blocking x11-base/xorg-server-1.20.8, media-libs/mesa-20.0.4) Total: 3 packages (1 new, 2 reinstalls), Size of downloads: 0 KiB Conflict: 2 blocks (1 unsatisfied) This issue seems to have been dragging on for years: https://bugs.gentoo.org/show_bug.cgi?id=692206 . The simple solution is to set -libglvnd on mesa and xorg-server. But I am wondering if I might benefit from libglvnd, although I have an ancient Nvidia laptop chip and must use the Nouveau drivers. Reading the libglvnd doc it looks like I don't. Thanks Robin
Remove eselect-opengl from your world file.
After upgrading Xorg to libinput as it has been recently recommended, I get both the mouse and keyboard unresponsive in an Xorg session. Both xorg.conf and xorg.conf.d are empty. libinput itself seems to be ok as far as I can see from Code: libinput debug-events In the Xorg log, I obtain: Code: [ 54.896] (II) LoadModule: "mouse" [ 54.897] (WW) Warning, couldn't open module mouse [ 54.897] (EE) Failed to load module "mouse" (module does not exist, 0) [ 54.897] (EE) No input driver matching `mouse' [ 54.897] (II) Falling back to input driver `libinput' [ 54.897] (II) LoadModule: "libinput" [ 54.897] (II) Loading /usr/lib64/xorg/modules/input/libinput_drv.so [ 55.063] (II) Module libinput: vendor="X.Org Foundation" [ 55.063] compiled for 1.20.7, module version = 0.29.0 [ 55.063] Module class: X.Org XInput Driver [ 55.063] ABI class: X.Org XInput driver, version 24.1 [ 55.063] (II) Using input driver 'libinput' for '<default pointer>' [ 55.063] (**) Option "CorePointer" "on" [ 55.063] (**) <default pointer>: always reports core events [ 55.063] (EE) PreInit returned 2 for "<default pointer>" [ 55.063] (II) UnloadModule: "libinput" [ 55.063] (II) LoadModule: "kbd" [ 55.064] (WW) Warning, couldn't open module kbd [ 55.064] (EE) Failed to load module "kbd" (module does not exist, 0) [ 55.064] (EE) No input driver matching `kbd' [ 55.064] (II) Falling back to input driver `libinput' [ 55.064] (II) Using input driver 'libinput' for '<default keyboard>' [ 55.064] (**) Option "CoreKeyboard" "on" [ 55.064] (**) <default keyboard>: always reports core events [ 55.064] (EE) PreInit returned 2 for "<default keyboard>" [ 55.064] (II) UnloadModule: "libinput" Thank you for any help!
You have a config file elsewhere interfering with it. Xorg's default configuration doesn't attempt to load the mouse or kbd drivers, nor does it have CorePointer/CoreKeyboard lines.
The gentoo wiki states: There has been no activity in Consolekit repository since late 2017. elogind is the recommended replacement. Command to shutdown and reboot dbus as a regular user : dbus-send --system --print-reply --dest="org.freedesktop.ConsoleKit" /org/freedesktop/ConsoleKit/Manager What would be the command to shutdown and reboot dbus when using elogind? Thanks!
Code: dbus-send --system --print-reply --dest=org.freedesktop.login1 /org/freedesktop/login1 org.freedesktop.login1.Manager.PowerOff boolean:false Code: dbus-send --system --print-reply --dest=org.freedesktop.login1 /org/freedesktop/login1 org.freedesktop.login1.Manager.Reboot boolean:false However, because of interactions with polkit, I don't know if they can work as-is for any arbitrary nonprivileged user. Changing the last argument to boolean:true should make polkit interactively ask the user for authentication credentials if it needs to.
Hi All I am trying to mount some disk on keys with vfat file system. NTFS external hd I can mount but no vfat. This is the output of dmesg Code: FAT-fs (sdb1): IO charset ascii not found [ 71.987573] FAT-fs (sdb1): IO charset ascii not found [ 117.193952] FAT-fs (sdb1): IO charset ascii not found [ 137.271332] FAT-fs (sdb1): IO charset ascii not found [ 144.088535] usb 1-7: USB disconnect, device number 5 [ 163.089546] usb 2-4: new SuperSpeed USB device number 2 using xhci_hcd [ 163.101942] usb 2-4: New USB device found, idVendor=1b1c, idProduct=1a06 [ 163.101951] usb 2-4: New USB device strings: Mfr=1, Product=2, SerialNumber=3 [ 163.101957] usb 2-4: Product: Slider 3.0 [ 163.101962] usb 2-4: Manufacturer: Corsair [ 163.101967] usb 2-4: SerialNumber: 2331512151250303 [ 168.415493] usb 2-4: Set SEL for device-initiated U1 failed. If I try to mount I get Code: mount /dev/sdb1 /mnt/usb/ mount: /mnt/usb: wrong fs type, bad option, bad superblock on /dev/sdb1, missing codepage or helper program, or other error.t I have enabled the correct codepage in the kernel, vfat as well, correct NLS but still to no avail. Code: grep -i vfat /usr/src/linux/.config CONFIG_VFAT_FS=y Code: grep -i codepage /usr/src/linux/.config CONFIG_FAT_DEFAULT_CODEPAGE=437 CONFIG_NLS_CODEPAGE_437=y # CONFIG_NLS_CODEPAGE_737 is not set # CONFIG_NLS_CODEPAGE_775 is not set # CONFIG_NLS_CODEPAGE_850 is not set # CONFIG_NLS_CODEPAGE_852 is not set # CONFIG_NLS_CODEPAGE_855 is not set # CONFIG_NLS_CODEPAGE_857 is not set # CONFIG_NLS_CODEPAGE_860 is not set # CONFIG_NLS_CODEPAGE_861 is not set CONFIG_NLS_CODEPAGE_862=m # CONFIG_NLS_CODEPAGE_863 is not set # CONFIG_NLS_CODEPAGE_864 is not set # CONFIG_NLS_CODEPAGE_865 is not set # CONFIG_NLS_CODEPAGE_866 is not set # CONFIG_NLS_CODEPAGE_869 is not set # CONFIG_NLS_CODEPAGE_936 is not set # CONFIG_NLS_CODEPAGE_950 is not set # CONFIG_NLS_CODEPAGE_932 is not set # CONFIG_NLS_CODEPAGE_949 is not set # CONFIG_NLS_CODEPAGE_874 is not set # CONFIG_NLS_CODEPAGE_1250 is not set # CONFIG_NLS_CODEPAGE_1251 is not set Code: grep -i utf /usr/src/linux/.config # CONFIG_FAT_DEFAULT_UTF8 is not set CONFIG_NLS_DEFAULT="UTF8" CONFIG_NLS_UTF8=y could it be that "CONFIG_FAT_DEFAULT_UTF8 is not set" is the problem?
I think it is not a problem with your codepage; probably it is your charset - maybe "ASCII". What do you have in "Default iocharset for FAT" ? Have you enabled this in the section "Native Language Support" ?
Hello there. - As said in the title, my keyboard doesn't work after startx, yet I can switch tty with Ctrl+Alt+F<tty number> (replacing libinput as a driver in xorg conf with kbd, result to completely silent keyboard; no more tty switching) - USB keyboard is working. - The window manager is i3. - I'm using libinput. - libinput debug-events catchs pressed keys while testing on active tty running i3. Yet, I cannot do anything with my keyboard within the graphic environment. - atkbd is loaded but isn't used by any process. - I got internal error: Could not resolve keysym XF86FullScreen EDIT : I tried with another window manager, like JWM. PS/2 keyboard working... So the issue is specific to i3. some log from /var/log/Xorg.0.log Code: [ 60.464] (II) XINPUT: Adding extended input device "Logitech Optical USB Mouse" (type: MOUSE, id 8) [ 60.465] (**) Option "AccelerationScheme" "none" [ 60.465] (**) Logitech Optical USB Mouse: (accel) selected scheme none/0 [ 60.465] (**) Logitech Optical USB Mouse: (accel) acceleration factor: 2.000 [ 60.465] (**) Logitech Optical USB Mouse: (accel) acceleration threshold: 4 [ 60.466] (II) event2 - Logitech Optical USB Mouse: is tagged by udev as: Mouse [ 60.466] (II) event2 - Logitech Optical USB Mouse: device set to 400 DPI [ 60.466] (II) event2 - Logitech Optical USB Mouse: device is a pointer [ 60.467] (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event3) [ 60.467] (**) AT Translated Set 2 keyboard: Applying InputClass "libinput keyboard catchall" [ 60.467] (**) AT Translated Set 2 keyboard: Applying InputClass "keyboard" [ 60.467] (II) Using input driver 'libinput' for 'AT Translated Set 2 keyboard' [ 60.467] (**) AT Translated Set 2 keyboard: always reports core events [ 60.467] (**) Option "Device" "/dev/input/event3" [ 60.467] (**) Option "_source" "server/udev" [ 60.468] (II) event3 - AT Translated Set 2 keyboard: is tagged by udev as: Keyboard [ 60.468] (II) event3 - AT Translated Set 2 keyboard: device is a keyboard [ 60.469] (II) event3 - AT Translated Set 2 keyboard: device removed [ 60.469] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio0/input/input3/event3" [ 60.469] (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD, id 9) [ 60.469] (**) Option "xkb_layout" "fr" [ 60.469] (**) Option "xkb_variant" "azerty" [ 60.470] (II) event3 - AT Translated Set 2 keyboard: is tagged by udev as: Keyboard [ 60.470] (II) event3 - AT Translated Set 2 keyboard: device is a keyboard [ 63.656] (II) event1 - Power Button: device removed [ 63.682] (II) event0 - Power Button: device removed [ 63.682] (II) event2 - Logitech Optical USB Mouse: device removed [ 63.682] (II) event3 - AT Translated Set 2 keyboard: device removed [ 63.682] (II) AIGLX: Suspending AIGLX clients for VT switch [ 90.659] (II) UnloadModule: "libinput" [ 90.659] (II) UnloadModule: "libinput" [ 90.659] (II) UnloadModule: "libinput" [ 90.659] (II) UnloadModule: "libinput" [ 90.793] (II) Server terminated successfully (0). Closing log file. The following are related configuration file. Many thanks in advance for your help. my 40-libinput.conf: Code: Section "InputClass" Identifier "libinput pointer catchall" MatchIsPointer "on" MatchDevicePath "/dev/input/event*" Driver "libinput" EndSection Section "InputClass" Identifier "libinput keyboard catchall" Option "XkbLayout" "fr" Option "XkbVariant" "azerty" MatchIsKeyboard "on" MatchDevicePath "/dev/input/event*" Driver "libinput" EndSection Section "InputClass" Identifier "libinput tablet catchall" MatchIsTablet "on" MatchDevicePath "/dev/input/event*" Driver "libinput" EndSection /etc/portage/make.conf Code: # These settings were set by the catalyst build script that automatically # built this stage. # Please consult /usr/share/portage/config/make.conf.example for a more # detailed example. COMMON_FLAGS="-march=native -O2 -pipe" CFLAGS="${COMMON_FLAGS}" CXXFLAGS="${COMMON_FLAGS}" FCFLAGS="${COMMON_FLAGS}" FFLAGS="${COMMON_FLAGS}" # 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 MAKEOPTS="-j1" GENTOO_MIRRORS="ftp://ftp.free.fr/mirrors/ftp.gentoo.org/ http://ftp.free.fr/mirrors/ftp.gentoo.org/ http://gentoo.modulix.net/gentoo/ http://gentoo.mirrors.ovh.net/gentoo-distfiles/ https://mirrors.soeasyto.com/distfiles.gentoo.org/ http://mirrors.soeasyto.com/distfiles.gentoo.org/ ftp://mirrors.soeasyto.com/distfiles.gentoo.org/ https://mirror.eu.oneandone.net/linux/distributions/gentoo/gentoo/ http://mirror.eu.oneandone.net/linux/distributions/gentoo/gentoo/ rsync://mirror.eu.oneandone.net/gentoo/ ftp://ftp.wh2.tu-dresden.de/pub/mirrors/gentoo ftp://mirror.netcologne.de/gentoo/ https://mirror.netcologne.de/gentoo/ http://mirror.netcologne.de/gentoo/ rsync://mirror.netcologne.de/gentoo/ https://linux.rz.ruhr-uni-bochum.de/download/gentoo-mirror/ http://linux.rz.ruhr-uni-bochum.de/download/gentoo-mirror/ https://ftp.halifax.rwth-aachen.de/gentoo/ http://ftp.halifax.rwth-aachen.de/gentoo/ ftp://ftp.halifax.rwth-aachen.de/gentoo/ rsync://ftp.halifax.rwth-aachen.de/gentoo/ https://ftp.fau.de/gentoo http://ftp.fau.de/gentoo ftp://ftp.fau.de/gentoo rsync://ftp.fau.de/gentoo https://ftp-stud.hs-esslingen.de/pub/Mirrors/gentoo/ http://ftp-stud.hs-esslingen.de/pub/Mirrors/gentoo/ ftp://ftp-stud.hs-esslingen.de/pub/Mirrors/gentoo/ rsync://ftp-stud.hs-esslingen.de/gentoo/" GENTOO_MIRRORS="http://gentoo.gossamerhost.com rsync://gentoo.gossamerhost.com/gentoo-distfiles/ ftp://mirrors.tera-byte.com/pub/gentoo http://gentoo.mirrors.tera-byte.com/ rsync://mirrors.tera-byte.com/gentoo ftp://mirror.csclub.uwaterloo.ca/gentoo-distfiles/ https://mirror.csclub.uwaterloo.ca/gentoo-distfiles/ http://mirror.csclub.uwaterloo.ca/gentoo-distfiles/ https://mirrors.163.com/gentoo/ http://mirrors.163.com/gentoo/" USE="X gtk libressl amd64 alsa" CURL_SSL="libressl" VIDEO_CARDS="radeon" INPUT_DEVICES="libinput keyboard" kernel config: Code: CONFIG_CC_IS_GCC=y CONFIG_GCC_VERSION=90200 CONFIG_CLANG_VERSION=0 CONFIG_CC_CAN_LINK=y CONFIG_CC_HAS_ASM_GOTO=y CONFIG_CC_HAS_ASM_INLINE=y CONFIG_CC_HAS_WARN_MAYBE_UNINITIALIZED=y CONFIG_IRQ_WORK=y CONFIG_BUILDTIME_EXTABLE_SORT=y CONFIG_THREAD_INFO_IN_TASK=y CONFIG_INIT_ENV_ARG_LIMIT=32 CONFIG_LOCALVERSION="" CONFIG_BUILD_SALT="" CONFIG_HAVE_KERNEL_GZIP=y CONFIG_HAVE_KERNEL_BZIP2=y CONFIG_HAVE_KERNEL_LZMA=y CONFIG_HAVE_KERNEL_XZ=y CONFIG_HAVE_KERNEL_LZO=y CONFIG_HAVE_KERNEL_LZ4=y CONFIG_KERNEL_GZIP=y CONFIG_DEFAULT_HOSTNAME="(none)" CONFIG_SWAP=y CONFIG_SYSVIPC=y CONFIG_SYSVIPC_SYSCTL=y CONFIG_POSIX_MQUEUE=y CONFIG_POSIX_MQUEUE_SYSCTL=y CONFIG_CROSS_MEMORY_ATTACH=y CONFIG_USELIB=y CONFIG_AUDIT=y CONFIG_HAVE_ARCH_AUDITSYSCALL=y CONFIG_AUDITSYSCALL=y CONFIG_GENERIC_IRQ_PROBE=y CONFIG_GENERIC_IRQ_SHOW=y CONFIG_GENERIC_IRQ_EFFECTIVE_AFF_MASK=y CONFIG_GENERIC_PENDING_IRQ=y CONFIG_GENERIC_IRQ_MIGRATION=y CONFIG_IRQ_DOMAIN=y CONFIG_IRQ_DOMAIN_HIERARCHY=y CONFIG_GENERIC_MSI_IRQ=y CONFIG_GENERIC_MSI_IRQ_DOMAIN=y CONFIG_GENERIC_IRQ_MATRIX_ALLOCATOR=y CONFIG_GENERIC_IRQ_RESERVATION_MODE=y CONFIG_IRQ_FORCED_THREADING=y CONFIG_SPARSE_IRQ=y CONFIG_CLOCKSOURCE_WATCHDOG=y CONFIG_ARCH_CLOCKSOURCE_DATA=y CONFIG_ARCH_CLOCKSOURCE_INIT=y CONFIG_CLOCKSOURCE_VALIDATE_LAST_CYCLE=y CONFIG_GENERIC_TIME_VSYSCALL=y CONFIG_GENERIC_CLOCKEVENTS=y CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST=y CONFIG_GENERIC_CMOS_UPDATE=y CONFIG_TICK_ONESHOT=y CONFIG_NO_HZ_COMMON=y CONFIG_NO_HZ_IDLE=y CONFIG_NO_HZ=y CONFIG_HIGH_RES_TIMERS=y CONFIG_PREEMPT_VOLUNTARY=y CONFIG_TICK_CPU_ACCOUNTING=y CONFIG_BSD_PROCESS_ACCT=y CONFIG_TASKSTATS=y CONFIG_TASK_DELAY_ACCT=y CONFIG_TASK_XACCT=y CONFIG_TASK_IO_ACCOUNTING=y CONFIG_CPU_ISOLATION=y CONFIG_TREE_RCU=y CONFIG_SRCU=y CONFIG_TREE_SRCU=y CONFIG_RCU_STALL_COMMON=y CONFIG_RCU_NEED_SEGCBLIST=y CONFIG_LOG_BUF_SHIFT=18 CONFIG_LOG_CPU_MAX_BUF_SHIFT=12 CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13 CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH=y CONFIG_ARCH_SUPPORTS_INT128=y CONFIG_CGROUPS=y CONFIG_CGROUP_SCHED=y CONFIG_FAIR_GROUP_SCHED=y CONFIG_CGROUP_FREEZER=y CONFIG_CPUSETS=y CONFIG_PROC_PID_CPUSET=y CONFIG_CGROUP_CPUACCT=y CONFIG_NAMESPACES=y CONFIG_UTS_NS=y CONFIG_IPC_NS=y CONFIG_PID_NS=y CONFIG_NET_NS=y CONFIG_RELAY=y CONFIG_BLK_DEV_INITRD=y CONFIG_INITRAMFS_SOURCE="" CONFIG_RD_GZIP=y CONFIG_RD_BZIP2=y CONFIG_RD_LZMA=y CONFIG_RD_XZ=y CONFIG_RD_LZO=y CONFIG_RD_LZ4=y CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE=y CONFIG_SYSCTL=y CONFIG_HAVE_UID16=y CONFIG_SYSCTL_EXCEPTION_TRACE=y CONFIG_HAVE_PCSPKR_PLATFORM=y CONFIG_BPF=y CONFIG_UID16=y CONFIG_MULTIUSER=y CONFIG_SGETMASK_SYSCALL=y CONFIG_SYSFS_SYSCALL=y CONFIG_FHANDLE=y CONFIG_POSIX_TIMERS=y CONFIG_PRINTK=y CONFIG_PRINTK_NMI=y CONFIG_BUG=y CONFIG_ELF_CORE=y CONFIG_PCSPKR_PLATFORM=y CONFIG_BASE_FULL=y CONFIG_FUTEX=y CONFIG_FUTEX_PI=y CONFIG_EPOLL=y CONFIG_SIGNALFD=y CONFIG_TIMERFD=y CONFIG_EVENTFD=y CONFIG_SHMEM=y CONFIG_AIO=y CONFIG_IO_URING=y CONFIG_ADVISE_SYSCALLS=y CONFIG_MEMBARRIER=y CONFIG_KALLSYMS=y CONFIG_KALLSYMS_ABSOLUTE_PERCPU=y CONFIG_KALLSYMS_BASE_RELATIVE=y CONFIG_ARCH_HAS_MEMBARRIER_SYNC_CORE=y CONFIG_RSEQ=y CONFIG_HAVE_PERF_EVENTS=y CONFIG_PERF_EVENTS=y CONFIG_VM_EVENT_COUNTERS=y CONFIG_SLUB_DEBUG=y CONFIG_SLUB=y CONFIG_SLAB_MERGE_DEFAULT=y CONFIG_SLUB_CPU_PARTIAL=y CONFIG_PROFILING=y CONFIG_TRACEPOINTS=y CONFIG_64BIT=y CONFIG_X86_64=y CONFIG_X86=y CONFIG_INSTRUCTION_DECODER=y CONFIG_OUTPUT_FORMAT="elf64-x86-64" CONFIG_ARCH_DEFCONFIG="arch/x86/configs/x86_64_defconfig" CONFIG_LOCKDEP_SUPPORT=y CONFIG_STACKTRACE_SUPPORT=y CONFIG_MMU=y CONFIG_ARCH_MMAP_RND_BITS_MIN=28 CONFIG_ARCH_MMAP_RND_BITS_MAX=32 CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=8 CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=16 CONFIG_GENERIC_ISA_DMA=y CONFIG_GENERIC_BUG=y CONFIG_GENERIC_BUG_RELATIVE_POINTERS=y CONFIG_ARCH_MAY_HAVE_PC_FDC=y CONFIG_GENERIC_CALIBRATE_DELAY=y CONFIG_ARCH_HAS_CPU_RELAX=y CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y CONFIG_ARCH_HAS_FILTER_PGPROT=y CONFIG_HAVE_SETUP_PER_CPU_AREA=y CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y CONFIG_ARCH_HIBERNATION_POSSIBLE=y CONFIG_ARCH_SUSPEND_POSSIBLE=y CONFIG_ARCH_WANT_GENERAL_HUGETLB=y CONFIG_ZONE_DMA32=y CONFIG_AUDIT_ARCH=y CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y CONFIG_HAVE_INTEL_TXT=y CONFIG_X86_64_SMP=y CONFIG_ARCH_SUPPORTS_UPROBES=y CONFIG_FIX_EARLYCON_MEM=y CONFIG_DYNAMIC_PHYSICAL_MASK=y CONFIG_PGTABLE_LEVELS=4 CONFIG_CC_HAS_SANE_STACKPROTECTOR=y CONFIG_ZONE_DMA=y CONFIG_SMP=y CONFIG_X86_FEATURE_NAMES=y CONFIG_X86_MPPARSE=y CONFIG_RETPOLINE=y CONFIG_X86_EXTENDED_PLATFORM=y CONFIG_X86_AMD_PLATFORM_DEVICE=y CONFIG_IOSF_MBI=y CONFIG_X86_SUPPORTS_MEMORY_FAILURE=y CONFIG_SCHED_OMIT_FRAME_POINTER=y CONFIG_MK8=y CONFIG_X86_INTERNODE_CACHE_SHIFT=6 CONFIG_X86_L1_CACHE_SHIFT=6 CONFIG_X86_INTEL_USERCOPY=y CONFIG_X86_USE_PPRO_CHECKSUM=y CONFIG_X86_TSC=y CONFIG_X86_CMPXCHG64=y CONFIG_X86_CMOV=y CONFIG_X86_MINIMUM_CPU_FAMILY=64 CONFIG_X86_DEBUGCTLMSR=y CONFIG_CPU_SUP_INTEL=y CONFIG_CPU_SUP_AMD=y CONFIG_CPU_SUP_HYGON=y CONFIG_CPU_SUP_CENTAUR=y CONFIG_CPU_SUP_ZHAOXIN=y CONFIG_HPET_TIMER=y CONFIG_HPET_EMULATE_RTC=y CONFIG_DMI=y CONFIG_NR_CPUS_RANGE_BEGIN=2 CONFIG_NR_CPUS_RANGE_END=512 CONFIG_NR_CPUS_DEFAULT=64 CONFIG_NR_CPUS=64 CONFIG_SCHED_SMT=y CONFIG_SCHED_MC=y CONFIG_SCHED_MC_PRIO=y CONFIG_X86_LOCAL_APIC=y CONFIG_X86_IO_APIC=y CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS=y CONFIG_X86_MCE=y CONFIG_X86_MCE_AMD=y CONFIG_X86_MCE_THRESHOLD=y CONFIG_PERF_EVENTS_AMD_POWER=y CONFIG_X86_16BIT=y CONFIG_X86_ESPFIX64=y CONFIG_X86_VSYSCALL_EMULATION=y CONFIG_MICROCODE=y CONFIG_MICROCODE_AMD=y CONFIG_MICROCODE_OLD_INTERFACE=y CONFIG_X86_MSR=y CONFIG_X86_CPUID=y CONFIG_X86_DIRECT_GBPAGES=y CONFIG_AMD_MEM_ENCRYPT=y CONFIG_AMD_MEM_ENCRYPT_ACTIVE_BY_DEFAULT=y CONFIG_NUMA=y CONFIG_AMD_NUMA=y CONFIG_X86_64_ACPI_NUMA=y CONFIG_NODES_SPAN_OTHER_NODES=y CONFIG_NODES_SHIFT=6 CONFIG_ARCH_SPARSEMEM_ENABLE=y CONFIG_ARCH_SPARSEMEM_DEFAULT=y CONFIG_ARCH_SELECT_MEMORY_MODEL=y CONFIG_ARCH_PROC_KCORE_TEXT=y CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000 CONFIG_X86_CHECK_BIOS_CORRUPTION=y CONFIG_X86_BOOTPARAM_MEMORY_CORRUPTION_CHECK=y CONFIG_X86_RESERVE_LOW=64 CONFIG_MTRR=y CONFIG_X86_PAT=y CONFIG_ARCH_USES_PG_UNCACHED=y CONFIG_ARCH_RANDOM=y CONFIG_X86_SMAP=y CONFIG_X86_INTEL_UMIP=y CONFIG_X86_INTEL_TSX_MODE_OFF=y CONFIG_EFI=y CONFIG_SECCOMP=y CONFIG_HZ_1000=y CONFIG_HZ=1000 CONFIG_SCHED_HRTICK=y CONFIG_KEXEC=y CONFIG_CRASH_DUMP=y CONFIG_PHYSICAL_START=0x1000000 CONFIG_RELOCATABLE=y CONFIG_RANDOMIZE_BASE=y CONFIG_X86_NEED_RELOCS=y CONFIG_PHYSICAL_ALIGN=0x200000 CONFIG_DYNAMIC_MEMORY_LAYOUT=y CONFIG_RANDOMIZE_MEMORY=y CONFIG_RANDOMIZE_MEMORY_PHYSICAL_PADDING=0x0 CONFIG_HOTPLUG_CPU=y CONFIG_LEGACY_VSYSCALL_EMULATE=y CONFIG_MODIFY_LDT_SYSCALL=y CONFIG_HAVE_LIVEPATCH=y CONFIG_ARCH_HAS_ADD_PAGES=y CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y CONFIG_USE_PERCPU_NUMA_NODE_ID=y CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y CONFIG_ARCH_ENABLE_HUGEPAGE_MIGRATION=y CONFIG_ARCH_HIBERNATION_HEADER=y CONFIG_SUSPEND=y CONFIG_SUSPEND_FREEZER=y CONFIG_HIBERNATE_CALLBACKS=y CONFIG_HIBERNATION=y CONFIG_PM_STD_PARTITION="" CONFIG_PM_SLEEP=y CONFIG_PM_SLEEP_SMP=y CONFIG_PM=y CONFIG_PM_DEBUG=y CONFIG_PM_SLEEP_DEBUG=y CONFIG_PM_TRACE=y CONFIG_PM_TRACE_RTC=y CONFIG_PM_CLK=y CONFIG_ARCH_SUPPORTS_ACPI=y CONFIG_ACPI=y CONFIG_ACPI_LEGACY_TABLES_LOOKUP=y CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC=y CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT=y CONFIG_ACPI_SPCR_TABLE=y CONFIG_ACPI_LPIT=y CONFIG_ACPI_SLEEP=y CONFIG_ACPI_REV_OVERRIDE_POSSIBLE=y CONFIG_ACPI_AC=y CONFIG_ACPI_BATTERY=y CONFIG_ACPI_BUTTON=y CONFIG_ACPI_VIDEO=y CONFIG_ACPI_FAN=y CONFIG_ACPI_DOCK=y CONFIG_ACPI_CPU_FREQ_PSS=y CONFIG_ACPI_PROCESSOR_CSTATE=y CONFIG_ACPI_PROCESSOR_IDLE=y CONFIG_ACPI_CPPC_LIB=y CONFIG_ACPI_PROCESSOR=y CONFIG_ACPI_HOTPLUG_CPU=y CONFIG_ACPI_THERMAL=y CONFIG_ACPI_NUMA=y CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE=y CONFIG_ACPI_TABLE_UPGRADE=y CONFIG_ACPI_CONTAINER=y CONFIG_ACPI_HOTPLUG_IOAPIC=y CONFIG_HAVE_ACPI_APEI=y CONFIG_HAVE_ACPI_APEI_NMI=y CONFIG_X86_PM_TIMER=y CONFIG_CPU_FREQ=y CONFIG_CPU_FREQ_GOV_ATTR_SET=y CONFIG_CPU_FREQ_GOV_COMMON=y CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE=y CONFIG_CPU_FREQ_GOV_PERFORMANCE=y CONFIG_CPU_FREQ_GOV_USERSPACE=y CONFIG_CPU_FREQ_GOV_ONDEMAND=y CONFIG_X86_INTEL_PSTATE=y CONFIG_X86_ACPI_CPUFREQ=y CONFIG_X86_ACPI_CPUFREQ_CPB=y CONFIG_CPU_IDLE=y CONFIG_CPU_IDLE_GOV_MENU=y CONFIG_PCI_DIRECT=y CONFIG_PCI_MMCONFIG=y CONFIG_MMCONF_FAM10H=y CONFIG_ISA_DMA_API=y CONFIG_AMD_NB=y CONFIG_IA32_EMULATION=y CONFIG_COMPAT_32=y CONFIG_COMPAT=y CONFIG_COMPAT_FOR_U64_ALIGNMENT=y CONFIG_SYSVIPC_COMPAT=y CONFIG_FIRMWARE_MEMMAP=y CONFIG_DMIID=y CONFIG_DMI_SCAN_MACHINE_NON_EFI_FALLBACK=y CONFIG_EFI_VARS=y CONFIG_EFI_ESRT=y CONFIG_EFI_RUNTIME_MAP=y CONFIG_EFI_RUNTIME_WRAPPERS=y CONFIG_EFI_EARLYCON=y CONFIG_HAVE_KVM=y CONFIG_HAVE_KVM_IRQCHIP=y CONFIG_HAVE_KVM_IRQFD=y CONFIG_HAVE_KVM_IRQ_ROUTING=y CONFIG_HAVE_KVM_EVENTFD=y CONFIG_KVM_MMIO=y CONFIG_KVM_ASYNC_PF=y CONFIG_HAVE_KVM_MSI=y CONFIG_HAVE_KVM_CPU_RELAX_INTERCEPT=y CONFIG_KVM_VFIO=y CONFIG_KVM_GENERIC_DIRTYLOG_READ_PROTECT=y CONFIG_KVM_COMPAT=y CONFIG_HAVE_KVM_IRQ_BYPASS=y CONFIG_HAVE_KVM_NO_POLL=y CONFIG_VIRTUALIZATION=y CONFIG_KVM=y CONFIG_KVM_AMD=y CONFIG_KVM_MMU_AUDIT=y CONFIG_CRASH_CORE=y CONFIG_KEXEC_CORE=y CONFIG_HOTPLUG_SMT=y CONFIG_HAVE_OPROFILE=y CONFIG_OPROFILE_NMI_TIMER=y CONFIG_KPROBES=y CONFIG_JUMP_LABEL=y CONFIG_OPTPROBES=y CONFIG_UPROBES=y CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y CONFIG_ARCH_USE_BUILTIN_BSWAP=y CONFIG_KRETPROBES=y CONFIG_USER_RETURN_NOTIFIER=y CONFIG_HAVE_IOREMAP_PROT=y CONFIG_HAVE_KPROBES=y CONFIG_HAVE_KRETPROBES=y CONFIG_HAVE_OPTPROBES=y CONFIG_HAVE_KPROBES_ON_FTRACE=y CONFIG_HAVE_FUNCTION_ERROR_INJECTION=y CONFIG_HAVE_NMI=y CONFIG_HAVE_ARCH_TRACEHOOK=y CONFIG_HAVE_DMA_CONTIGUOUS=y CONFIG_GENERIC_SMP_IDLE_THREAD=y CONFIG_ARCH_HAS_FORTIFY_SOURCE=y CONFIG_ARCH_HAS_SET_MEMORY=y CONFIG_ARCH_HAS_SET_DIRECT_MAP=y CONFIG_HAVE_ARCH_THREAD_STRUCT_WHITELIST=y CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT=y CONFIG_HAVE_ASM_MODVERSIONS=y CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y CONFIG_HAVE_RSEQ=y CONFIG_HAVE_FUNCTION_ARG_ACCESS_API=y CONFIG_HAVE_CLK=y CONFIG_HAVE_HW_BREAKPOINT=y CONFIG_HAVE_MIXED_BREAKPOINTS_REGS=y CONFIG_HAVE_USER_RETURN_NOTIFIER=y CONFIG_HAVE_PERF_EVENTS_NMI=y CONFIG_HAVE_HARDLOCKUP_DETECTOR_PERF=y CONFIG_HAVE_PERF_REGS=y CONFIG_HAVE_PERF_USER_STACK_DUMP=y CONFIG_HAVE_ARCH_JUMP_LABEL=y CONFIG_HAVE_ARCH_JUMP_LABEL_RELATIVE=y CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y CONFIG_HAVE_ALIGNED_STRUCT_PAGE=y CONFIG_HAVE_CMPXCHG_LOCAL=y CONFIG_HAVE_CMPXCHG_DOUBLE=y CONFIG_ARCH_WANT_COMPAT_IPC_PARSE_VERSION=y CONFIG_ARCH_WANT_OLD_COMPAT_IPC=y CONFIG_HAVE_ARCH_SECCOMP_FILTER=y CONFIG_SECCOMP_FILTER=y CONFIG_HAVE_ARCH_STACKLEAK=y CONFIG_HAVE_STACKPROTECTOR=y CONFIG_CC_HAS_STACKPROTECTOR_NONE=y CONFIG_STACKPROTECTOR=y CONFIG_STACKPROTECTOR_STRONG=y CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES=y CONFIG_HAVE_CONTEXT_TRACKING=y CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y CONFIG_HAVE_MOVE_PMD=y CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD=y CONFIG_HAVE_ARCH_HUGE_VMAP=y CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y CONFIG_HAVE_ARCH_SOFT_DIRTY=y CONFIG_HAVE_MOD_ARCH_SPECIFIC=y CONFIG_MODULES_USE_ELF_RELA=y CONFIG_HAVE_IRQ_EXIT_ON_IRQ_STACK=y CONFIG_ARCH_HAS_ELF_RANDOMIZE=y CONFIG_HAVE_ARCH_MMAP_RND_BITS=y CONFIG_HAVE_EXIT_THREAD=y CONFIG_ARCH_MMAP_RND_BITS=28 CONFIG_HAVE_ARCH_MMAP_RND_COMPAT_BITS=y CONFIG_ARCH_MMAP_RND_COMPAT_BITS=8 CONFIG_HAVE_ARCH_COMPAT_MMAP_BASES=y CONFIG_HAVE_COPY_THREAD_TLS=y CONFIG_HAVE_STACK_VALIDATION=y CONFIG_HAVE_RELIABLE_STACKTRACE=y CONFIG_OLD_SIGSUSPEND3=y CONFIG_COMPAT_OLD_SIGACTION=y CONFIG_64BIT_TIME=y CONFIG_COMPAT_32BIT_TIME=y CONFIG_HAVE_ARCH_VMAP_STACK=y CONFIG_VMAP_STACK=y CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y CONFIG_STRICT_KERNEL_RWX=y CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y CONFIG_STRICT_MODULE_RWX=y CONFIG_ARCH_HAS_REFCOUNT=y CONFIG_HAVE_ARCH_PREL32_RELOCATIONS=y CONFIG_ARCH_USE_MEMREMAP_PROT=y CONFIG_ARCH_HAS_MEM_ENCRYPT=y CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y CONFIG_PLUGIN_HOSTCC="g++" CONFIG_HAVE_GCC_PLUGINS=y CONFIG_RT_MUTEXES=y CONFIG_BASE_SMALL=0 CONFIG_MODULES=y CONFIG_MODULE_UNLOAD=y CONFIG_MODULE_FORCE_UNLOAD=y CONFIG_MODULES_TREE_LOOKUP=y CONFIG_BLOCK=y CONFIG_BLK_SCSI_REQUEST=y CONFIG_BLK_DEV_BSG=y CONFIG_BLK_DEBUG_FS=y CONFIG_PARTITION_ADVANCED=y CONFIG_OSF_PARTITION=y CONFIG_AMIGA_PARTITION=y CONFIG_MAC_PARTITION=y CONFIG_MSDOS_PARTITION=y CONFIG_BSD_DISKLABEL=y CONFIG_MINIX_SUBPARTITION=y CONFIG_SOLARIS_X86_PARTITION=y CONFIG_UNIXWARE_DISKLABEL=y CONFIG_SGI_PARTITION=y CONFIG_SUN_PARTITION=y CONFIG_KARMA_PARTITION=y CONFIG_EFI_PARTITION=y CONFIG_BLOCK_COMPAT=y CONFIG_BLK_MQ_PCI=y CONFIG_BLK_PM=y CONFIG_MQ_IOSCHED_DEADLINE=y CONFIG_MQ_IOSCHED_KYBER=y CONFIG_PREEMPT_NOTIFIERS=y CONFIG_ASN1=y CONFIG_INLINE_SPIN_UNLOCK_IRQ=y CONFIG_INLINE_READ_UNLOCK=y CONFIG_INLINE_READ_UNLOCK_IRQ=y CONFIG_INLINE_WRITE_UNLOCK=y CONFIG_INLINE_WRITE_UNLOCK_IRQ=y CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y CONFIG_MUTEX_SPIN_ON_OWNER=y CONFIG_RWSEM_SPIN_ON_OWNER=y CONFIG_LOCK_SPIN_ON_OWNER=y CONFIG_ARCH_USE_QUEUED_SPINLOCKS=y CONFIG_QUEUED_SPINLOCKS=y CONFIG_ARCH_USE_QUEUED_RWLOCKS=y CONFIG_QUEUED_RWLOCKS=y CONFIG_ARCH_HAS_SYNC_CORE_BEFORE_USERMODE=y CONFIG_ARCH_HAS_SYSCALL_WRAPPER=y CONFIG_FREEZER=y CONFIG_BINFMT_ELF=y CONFIG_COMPAT_BINFMT_ELF=y CONFIG_ELFCORE=y CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS=y CONFIG_BINFMT_SCRIPT=y CONFIG_BINFMT_MISC=y CONFIG_COREDUMP=y CONFIG_SELECT_MEMORY_MODEL=y CONFIG_SPARSEMEM_MANUAL=y CONFIG_SPARSEMEM=y CONFIG_NEED_MULTIPLE_NODES=y CONFIG_HAVE_MEMORY_PRESENT=y CONFIG_SPARSEMEM_EXTREME=y CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y CONFIG_SPARSEMEM_VMEMMAP=y CONFIG_HAVE_MEMBLOCK_NODE_MAP=y CONFIG_HAVE_FAST_GUP=y CONFIG_SPLIT_PTLOCK_CPUS=4 CONFIG_COMPACTION=y CONFIG_MIGRATION=y CONFIG_PHYS_ADDR_T_64BIT=y CONFIG_BOUNCE=y CONFIG_VIRT_TO_BUS=y CONFIG_MMU_NOTIFIER=y CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 CONFIG_ARCH_SUPPORTS_MEMORY_FAILURE=y CONFIG_ARCH_WANTS_THP_SWAP=y CONFIG_GENERIC_EARLY_IOREMAP=y CONFIG_ARCH_HAS_PTE_DEVMAP=y CONFIG_ARCH_HAS_PTE_SPECIAL=y CONFIG_NET=y CONFIG_NET_INGRESS=y CONFIG_SKB_EXTENSIONS=y CONFIG_PACKET=y CONFIG_UNIX=y CONFIG_UNIX_SCM=y CONFIG_XFRM=y CONFIG_XFRM_ALGO=y CONFIG_XFRM_USER=y CONFIG_INET=y CONFIG_IP_MULTICAST=y CONFIG_IP_ADVANCED_ROUTER=y CONFIG_IP_MULTIPLE_TABLES=y CONFIG_IP_ROUTE_MULTIPATH=y CONFIG_IP_ROUTE_VERBOSE=y CONFIG_IP_PNP=y CONFIG_IP_PNP_DHCP=y CONFIG_IP_PNP_BOOTP=y CONFIG_IP_PNP_RARP=y CONFIG_NET_IP_TUNNEL=y CONFIG_IP_MROUTE_COMMON=y CONFIG_IP_MROUTE=y CONFIG_IP_PIMSM_V1=y CONFIG_IP_PIMSM_V2=y CONFIG_SYN_COOKIES=y CONFIG_INET_TUNNEL=y CONFIG_TCP_CONG_ADVANCED=y CONFIG_TCP_CONG_CUBIC=y CONFIG_DEFAULT_CUBIC=y CONFIG_DEFAULT_TCP_CONG="cubic" CONFIG_TCP_MD5SIG=y CONFIG_IPV6=y CONFIG_INET6_AH=y CONFIG_INET6_ESP=y CONFIG_IPV6_SIT=y CONFIG_IPV6_NDISC_NODETYPE=y CONFIG_NETLABEL=y CONFIG_NETWORK_SECMARK=y CONFIG_NET_PTP_CLASSIFY=y CONFIG_NETFILTER=y CONFIG_NETFILTER_INGRESS=y CONFIG_NETFILTER_NETLINK=y CONFIG_NETFILTER_NETLINK_LOG=y CONFIG_NF_CONNTRACK=y CONFIG_NF_LOG_COMMON=m CONFIG_NF_CONNTRACK_SECMARK=y CONFIG_NF_CONNTRACK_PROCFS=y CONFIG_NF_CONNTRACK_FTP=y CONFIG_NF_CONNTRACK_IRC=y CONFIG_NF_CONNTRACK_SIP=y CONFIG_NF_CT_NETLINK=y CONFIG_NF_NAT=m CONFIG_NF_NAT_FTP=m CONFIG_NF_NAT_IRC=m CONFIG_NF_NAT_SIP=m CONFIG_NF_NAT_MASQUERADE=y CONFIG_NETFILTER_XTABLES=y CONFIG_NETFILTER_XT_MARK=m CONFIG_NETFILTER_XT_TARGET_CONNSECMARK=y CONFIG_NETFILTER_XT_TARGET_LOG=m CONFIG_NETFILTER_XT_NAT=m CONFIG_NETFILTER_XT_TARGET_NFLOG=y CONFIG_NETFILTER_XT_TARGET_MASQUERADE=m CONFIG_NETFILTER_XT_TARGET_SECMARK=y CONFIG_NETFILTER_XT_TARGET_TCPMSS=y CONFIG_NETFILTER_XT_MATCH_ADDRTYPE=m CONFIG_NETFILTER_XT_MATCH_CONNTRACK=y CONFIG_NETFILTER_XT_MATCH_POLICY=y CONFIG_NETFILTER_XT_MATCH_STATE=y CONFIG_NF_DEFRAG_IPV4=y CONFIG_NF_LOG_ARP=m CONFIG_NF_LOG_IPV4=m CONFIG_NF_REJECT_IPV4=y CONFIG_IP_NF_IPTABLES=y CONFIG_IP_NF_FILTER=y CONFIG_IP_NF_TARGET_REJECT=y CONFIG_IP_NF_NAT=m CONFIG_IP_NF_TARGET_MASQUERADE=m CONFIG_IP_NF_MANGLE=y CONFIG_NF_REJECT_IPV6=y CONFIG_NF_LOG_IPV6=m CONFIG_IP6_NF_IPTABLES=y CONFIG_IP6_NF_MATCH_IPV6HEADER=y CONFIG_IP6_NF_FILTER=y CONFIG_IP6_NF_TARGET_REJECT=y CONFIG_IP6_NF_MANGLE=y CONFIG_NF_DEFRAG_IPV6=y CONFIG_HAVE_NET_DSA=y CONFIG_NET_SCHED=y CONFIG_NET_CLS=y CONFIG_NET_EMATCH=y CONFIG_NET_EMATCH_STACK=32 CONFIG_NET_CLS_ACT=y CONFIG_NET_SCH_FIFO=y CONFIG_DNS_RESOLVER=y CONFIG_RPS=y CONFIG_RFS_ACCEL=y CONFIG_XPS=y CONFIG_NET_RX_BUSY_POLL=y CONFIG_BQL=y CONFIG_NET_FLOW_LIMIT=y CONFIG_FIB_RULES=y CONFIG_WIRELESS=y CONFIG_MAC80211_STA_HASH_MAX_SIZE=0 CONFIG_RFKILL=y CONFIG_RFKILL_LEDS=y CONFIG_RFKILL_INPUT=y CONFIG_DST_CACHE=y CONFIG_GRO_CELLS=y CONFIG_HAVE_EBPF_JIT=y CONFIG_HAVE_EISA=y CONFIG_HAVE_PCI=y CONFIG_PCI=y CONFIG_PCI_DOMAINS=y CONFIG_PCIEPORTBUS=y CONFIG_PCIEAER=y CONFIG_PCIEASPM=y CONFIG_PCIEASPM_DEFAULT=y CONFIG_PCIE_PME=y CONFIG_PCI_MSI=y CONFIG_PCI_MSI_IRQ_DOMAIN=y CONFIG_PCI_QUIRKS=y CONFIG_PCI_ATS=y CONFIG_PCI_LOCKLESS_CONFIG=y CONFIG_PCI_PRI=y CONFIG_PCI_PASID=y CONFIG_PCI_LABEL=y CONFIG_HOTPLUG_PCI=y CONFIG_PCCARD=y CONFIG_PCMCIA=y CONFIG_PCMCIA_LOAD_CIS=y CONFIG_CARDBUS=y CONFIG_YENTA=y CONFIG_YENTA_O2=y CONFIG_YENTA_RICOH=y CONFIG_YENTA_TI=y CONFIG_YENTA_ENE_TUNE=y CONFIG_YENTA_TOSHIBA=y CONFIG_PCCARD_NONSTATIC=y CONFIG_UEVENT_HELPER=y CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug" CONFIG_DEVTMPFS=y CONFIG_DEVTMPFS_MOUNT=y CONFIG_STANDALONE=y CONFIG_PREVENT_FIRMWARE_BUILD=y CONFIG_FW_LOADER=y CONFIG_EXTRA_FIRMWARE="" CONFIG_ALLOW_DEV_COREDUMP=y CONFIG_DEBUG_DEVRES=y CONFIG_GENERIC_CPU_AUTOPROBE=y CONFIG_GENERIC_CPU_VULNERABILITIES=y CONFIG_REGMAP=y CONFIG_DMA_SHARED_BUFFER=y CONFIG_CONNECTOR=y CONFIG_PROC_EVENTS=y CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=y CONFIG_PNP=y CONFIG_PNP_DEBUG_MESSAGES=y CONFIG_PNPACPI=y CONFIG_BLK_DEV=y CONFIG_CDROM=y CONFIG_BLK_DEV_LOOP=y CONFIG_BLK_DEV_LOOP_MIN_COUNT=8 CONFIG_HAVE_IDE=y CONFIG_SCSI_MOD=y CONFIG_SCSI=y CONFIG_SCSI_DMA=y CONFIG_SCSI_PROC_FS=y CONFIG_BLK_DEV_SD=y CONFIG_BLK_DEV_SR=y CONFIG_BLK_DEV_SR_VENDOR=y CONFIG_CHR_DEV_SG=y CONFIG_SCSI_CONSTANTS=y CONFIG_SCSI_SPI_ATTRS=y CONFIG_ATA=y CONFIG_ATA_VERBOSE_ERROR=y CONFIG_ATA_ACPI=y CONFIG_SATA_PMP=y CONFIG_SATA_AHCI=y CONFIG_SATA_MOBILE_LPM_POLICY=0 CONFIG_ATA_SFF=y CONFIG_ATA_BMDMA=y CONFIG_ATA_PIIX=y CONFIG_PATA_AMD=y CONFIG_PATA_ATIIXP=y CONFIG_MD=y CONFIG_BLK_DEV_MD=y CONFIG_MD_AUTODETECT=y CONFIG_BLK_DEV_DM_BUILTIN=y CONFIG_BLK_DEV_DM=y CONFIG_DM_MIRROR=y CONFIG_DM_ZERO=y CONFIG_NETDEVICES=y CONFIG_MII=y CONFIG_NET_CORE=y CONFIG_NETCONSOLE=y CONFIG_NETPOLL=y CONFIG_NET_POLL_CONTROLLER=y CONFIG_ETHERNET=y CONFIG_NET_VENDOR_3COM=y CONFIG_NET_VENDOR_ADAPTEC=y CONFIG_NET_VENDOR_AGERE=y CONFIG_NET_VENDOR_ALACRITECH=y CONFIG_NET_VENDOR_ALTEON=y CONFIG_NET_VENDOR_AMAZON=y CONFIG_NET_VENDOR_AMD=y CONFIG_NET_VENDOR_AQUANTIA=y CONFIG_NET_VENDOR_ARC=y CONFIG_NET_VENDOR_ATHEROS=y CONFIG_NET_VENDOR_AURORA=y CONFIG_NET_VENDOR_BROADCOM=y CONFIG_TIGON3=y CONFIG_TIGON3_HWMON=y CONFIG_NET_VENDOR_BROCADE=y CONFIG_NET_VENDOR_CADENCE=y CONFIG_NET_VENDOR_CAVIUM=y CONFIG_CAVIUM_PTP=y CONFIG_NET_VENDOR_CHELSIO=y CONFIG_NET_VENDOR_CISCO=y CONFIG_NET_VENDOR_CORTINA=y CONFIG_NET_VENDOR_DEC=y CONFIG_NET_TULIP=y CONFIG_NET_VENDOR_DLINK=y CONFIG_NET_VENDOR_EMULEX=y CONFIG_NET_VENDOR_EZCHIP=y CONFIG_NET_VENDOR_FUJITSU=y CONFIG_NET_VENDOR_GOOGLE=y CONFIG_NET_VENDOR_HP=y CONFIG_NET_VENDOR_HUAWEI=y CONFIG_NET_VENDOR_I825XX=y CONFIG_NET_VENDOR_INTEL=y CONFIG_E100=y CONFIG_E1000=y CONFIG_E1000E=y CONFIG_E1000E_HWTS=y CONFIG_NET_VENDOR_MARVELL=y CONFIG_SKY2=y CONFIG_NET_VENDOR_MELLANOX=y CONFIG_NET_VENDOR_MICREL=y CONFIG_NET_VENDOR_MICROCHIP=y CONFIG_NET_VENDOR_MICROSEMI=y CONFIG_NET_VENDOR_MYRI=y CONFIG_NET_VENDOR_NATSEMI=y CONFIG_NET_VENDOR_NETERION=y CONFIG_NET_VENDOR_NETRONOME=y CONFIG_NET_VENDOR_NI=y CONFIG_NET_VENDOR_8390=y CONFIG_NET_VENDOR_NVIDIA=y CONFIG_FORCEDETH=y CONFIG_NET_VENDOR_OKI=y CONFIG_NET_VENDOR_PACKET_ENGINES=y CONFIG_NET_VENDOR_PENSANDO=y CONFIG_NET_VENDOR_QLOGIC=y CONFIG_NET_VENDOR_QUALCOMM=y CONFIG_NET_VENDOR_RDC=y CONFIG_NET_VENDOR_REALTEK=y CONFIG_8139TOO=y CONFIG_8139TOO_PIO=y CONFIG_R8169=y CONFIG_NET_VENDOR_RENESAS=y CONFIG_NET_VENDOR_ROCKER=y CONFIG_NET_VENDOR_SAMSUNG=y CONFIG_NET_VENDOR_SEEQ=y CONFIG_NET_VENDOR_SOLARFLARE=y CONFIG_NET_VENDOR_SILAN=y CONFIG_NET_VENDOR_SIS=y CONFIG_NET_VENDOR_SMSC=y CONFIG_NET_VENDOR_SOCIONEXT=y CONFIG_NET_VENDOR_STMICRO=y CONFIG_NET_VENDOR_SUN=y CONFIG_NET_VENDOR_SYNOPSYS=y CONFIG_NET_VENDOR_TEHUTI=y CONFIG_NET_VENDOR_TI=y CONFIG_NET_VENDOR_VIA=y CONFIG_NET_VENDOR_WIZNET=y CONFIG_NET_VENDOR_XILINX=y CONFIG_NET_VENDOR_XIRCOM=y CONFIG_FDDI=y CONFIG_MDIO_DEVICE=y CONFIG_MDIO_BUS=y CONFIG_PHYLIB=y CONFIG_REALTEK_PHY=y CONFIG_USB_NET_DRIVERS=y CONFIG_WLAN=y CONFIG_WLAN_VENDOR_ADMTEK=y CONFIG_WLAN_VENDOR_ATH=y CONFIG_WLAN_VENDOR_ATMEL=y CONFIG_WLAN_VENDOR_BROADCOM=y CONFIG_WLAN_VENDOR_CISCO=y CONFIG_WLAN_VENDOR_INTEL=y CONFIG_WLAN_VENDOR_INTERSIL=y CONFIG_WLAN_VENDOR_MARVELL=y CONFIG_WLAN_VENDOR_MEDIATEK=y CONFIG_WLAN_VENDOR_RALINK=y CONFIG_WLAN_VENDOR_REALTEK=y CONFIG_WLAN_VENDOR_RSI=y CONFIG_WLAN_VENDOR_ST=y CONFIG_WLAN_VENDOR_TI=y CONFIG_WLAN_VENDOR_ZYDAS=y CONFIG_WLAN_VENDOR_QUANTENNA=y CONFIG_INPUT=y CONFIG_INPUT_LEDS=y CONFIG_INPUT_FF_MEMLESS=y CONFIG_INPUT_POLLDEV=y CONFIG_INPUT_SPARSEKMAP=y CONFIG_INPUT_EVDEV=y CONFIG_INPUT_EVBUG=y CONFIG_INPUT_KEYBOARD=y CONFIG_KEYBOARD_ATKBD=m CONFIG_INPUT_MOUSE=y CONFIG_MOUSE_PS2=y CONFIG_MOUSE_PS2_ALPS=y CONFIG_MOUSE_PS2_BYD=y CONFIG_MOUSE_PS2_LOGIPS2PP=y CONFIG_MOUSE_PS2_SYNAPTICS=y CONFIG_MOUSE_PS2_SYNAPTICS_SMBUS=y CONFIG_MOUSE_PS2_CYPRESS=y CONFIG_MOUSE_PS2_LIFEBOOK=y CONFIG_MOUSE_PS2_TRACKPOINT=y CONFIG_MOUSE_PS2_FOCALTECH=y CONFIG_MOUSE_PS2_SMBUS=y CONFIG_SERIO=y CONFIG_ARCH_MIGHT_HAVE_PC_SERIO=y CONFIG_SERIO_I8042=y CONFIG_SERIO_SERPORT=y CONFIG_SERIO_LIBPS2=y CONFIG_TTY=y CONFIG_VT=y CONFIG_CONSOLE_TRANSLATIONS=y CONFIG_VT_CONSOLE=y CONFIG_VT_CONSOLE_SLEEP=y CONFIG_HW_CONSOLE=y CONFIG_VT_HW_CONSOLE_BINDING=y CONFIG_UNIX98_PTYS=y CONFIG_SERIAL_NONSTANDARD=y CONFIG_LDISC_AUTOLOAD=y CONFIG_DEVMEM=y CONFIG_SERIAL_EARLYCON=y CONFIG_SERIAL_8250=y CONFIG_SERIAL_8250_DEPRECATED_OPTIONS=y CONFIG_SERIAL_8250_PNP=y CONFIG_SERIAL_8250_CONSOLE=y CONFIG_SERIAL_8250_DMA=y CONFIG_SERIAL_8250_PCI=y CONFIG_SERIAL_8250_EXAR=y CONFIG_SERIAL_8250_NR_UARTS=32 CONFIG_SERIAL_8250_RUNTIME_UARTS=4 CONFIG_SERIAL_8250_EXTENDED=y CONFIG_SERIAL_8250_MANY_PORTS=y CONFIG_SERIAL_8250_SHARE_IRQ=y CONFIG_SERIAL_8250_DETECT_IRQ=y CONFIG_SERIAL_8250_RSA=y CONFIG_SERIAL_8250_DWLIB=y CONFIG_SERIAL_8250_LPSS=y CONFIG_SERIAL_8250_MID=y CONFIG_SERIAL_CORE=y CONFIG_SERIAL_CORE_CONSOLE=y CONFIG_HW_RANDOM=y CONFIG_HW_RANDOM_VIA=y CONFIG_NVRAM=y CONFIG_HPET=y CONFIG_DEVPORT=y CONFIG_I2C=y CONFIG_ACPI_I2C_OPREGION=y CONFIG_I2C_BOARDINFO=y CONFIG_I2C_COMPAT=y CONFIG_I2C_HELPER_AUTO=y CONFIG_I2C_SMBUS=y CONFIG_I2C_ALGOBIT=y CONFIG_I2C_I801=y CONFIG_PPS=y CONFIG_PTP_1588_CLOCK=y CONFIG_PINCTRL=y CONFIG_POWER_SUPPLY=y CONFIG_POWER_SUPPLY_HWMON=y CONFIG_HWMON=y CONFIG_THERMAL=y CONFIG_THERMAL_EMERGENCY_POWEROFF_DELAY_MS=0 CONFIG_THERMAL_HWMON=y CONFIG_THERMAL_DEFAULT_GOV_STEP_WISE=y CONFIG_THERMAL_GOV_STEP_WISE=y CONFIG_WATCHDOG=y CONFIG_WATCHDOG_HANDLE_BOOT_ENABLED=y CONFIG_WATCHDOG_OPEN_TIMEOUT=0 CONFIG_SSB_POSSIBLE=y CONFIG_BCMA_POSSIBLE=y CONFIG_AGP=y CONFIG_AGP_AMD64=y CONFIG_AGP_INTEL=y CONFIG_INTEL_GTT=y CONFIG_VGA_ARB=y CONFIG_VGA_ARB_MAX_GPUS=16 CONFIG_DRM=y CONFIG_DRM_KMS_HELPER=y CONFIG_DRM_KMS_FB_HELPER=y CONFIG_DRM_FBDEV_EMULATION=y CONFIG_DRM_FBDEV_OVERALLOC=100 CONFIG_DRM_TTM=m CONFIG_DRM_RADEON=m CONFIG_DRM_RADEON_USERPTR=y CONFIG_DRM_PANEL=y CONFIG_DRM_BRIDGE=y CONFIG_DRM_PANEL_BRIDGE=y CONFIG_DRM_PANEL_ORIENTATION_QUIRKS=y CONFIG_FB_CMDLINE=y CONFIG_FB_NOTIFY=y CONFIG_FB=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_BACKLIGHT_CLASS_DEVICE=y CONFIG_BACKLIGHT_GENERIC=y CONFIG_HDMI=y CONFIG_VGA_CONSOLE=y CONFIG_VGACON_SOFT_SCROLLBACK=y CONFIG_VGACON_SOFT_SCROLLBACK_SIZE=64 CONFIG_DUMMY_CONSOLE=y CONFIG_DUMMY_CONSOLE_COLUMNS=80 CONFIG_DUMMY_CONSOLE_ROWS=25 CONFIG_FRAMEBUFFER_CONSOLE=y CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY=y CONFIG_LOGO=y CONFIG_LOGO_LINUX_CLUT224=y CONFIG_SOUND=y CONFIG_SND=y CONFIG_SND_TIMER=y CONFIG_SND_PCM=y CONFIG_SND_HWDEP=y CONFIG_SND_SEQ_DEVICE=y CONFIG_SND_JACK=y CONFIG_SND_JACK_INPUT_DEV=y CONFIG_SND_PCM_TIMER=y CONFIG_SND_HRTIMER=y CONFIG_SND_SUPPORT_OLD_API=y CONFIG_SND_PROC_FS=y CONFIG_SND_VERBOSE_PROCFS=y CONFIG_SND_VMASTER=y CONFIG_SND_DMA_SGBUF=y CONFIG_SND_SEQUENCER=y CONFIG_SND_SEQ_DUMMY=y CONFIG_SND_SEQ_HRTIMER_DEFAULT=y CONFIG_SND_DRIVERS=y CONFIG_SND_PCI=y CONFIG_SND_HDA=y CONFIG_SND_HDA_INTEL=y CONFIG_SND_HDA_HWDEP=y CONFIG_SND_HDA_POWER_SAVE_DEFAULT=0 CONFIG_SND_HDA_CORE=y CONFIG_SND_HDA_PREALLOC_SIZE=64 CONFIG_SND_INTEL_NHLT=y CONFIG_SND_USB=y CONFIG_SND_PCMCIA=y CONFIG_SND_X86=y CONFIG_HID=y CONFIG_HIDRAW=y CONFIG_HID_GENERIC=y CONFIG_HID_SONY=y CONFIG_SONY_FF=y CONFIG_USB_HID=y CONFIG_HID_PID=y CONFIG_USB_HIDDEV=y CONFIG_USB_OHCI_LITTLE_ENDIAN=y CONFIG_USB_SUPPORT=y CONFIG_USB_COMMON=y CONFIG_USB_ARCH_HAS_HCD=y CONFIG_USB=y CONFIG_USB_PCI=y CONFIG_USB_ANNOUNCE_NEW_DEVICES=y CONFIG_USB_DEFAULT_PERSIST=y CONFIG_USB_AUTOSUSPEND_DELAY=2 CONFIG_USB_MON=y CONFIG_USB_EHCI_HCD=y CONFIG_USB_EHCI_TT_NEWSCHED=y CONFIG_USB_EHCI_PCI=y CONFIG_USB_OHCI_HCD=y CONFIG_USB_OHCI_HCD_PCI=y CONFIG_USB_UHCI_HCD=y CONFIG_USB_PRINTER=y CONFIG_USB_STORAGE=y CONFIG_NEW_LEDS=y CONFIG_LEDS_CLASS=y CONFIG_LEDS_TRIGGERS=y CONFIG_EDAC_ATOMIC_SCRUB=y CONFIG_EDAC_SUPPORT=y CONFIG_EDAC=y CONFIG_EDAC_LEGACY_SYSFS=y CONFIG_EDAC_DECODE_MCE=y CONFIG_RTC_LIB=y CONFIG_RTC_MC146818_LIB=y CONFIG_RTC_CLASS=y CONFIG_RTC_SYSTOHC=y CONFIG_RTC_SYSTOHC_DEVICE="rtc0" CONFIG_RTC_NVMEM=y CONFIG_RTC_INTF_SYSFS=y CONFIG_RTC_INTF_PROC=y CONFIG_RTC_INTF_DEV=y CONFIG_RTC_I2C_AND_SPI=y CONFIG_RTC_DRV_CMOS=y CONFIG_DMADEVICES=y CONFIG_DMA_ENGINE=y CONFIG_DMA_VIRTUAL_CHANNELS=y CONFIG_DMA_ACPI=y CONFIG_DW_DMAC_CORE=y CONFIG_HSU_DMA=y CONFIG_SYNC_FILE=y CONFIG_IRQ_BYPASS_MANAGER=y CONFIG_X86_PLATFORM_DEVICES=y CONFIG_EEEPC_LAPTOP=y CONFIG_PMC_ATOM=y CONFIG_CLKDEV_LOOKUP=y CONFIG_HAVE_CLK_PREPARE=y CONFIG_COMMON_CLK=y CONFIG_CLKEVT_I8253=y CONFIG_I8253_LOCK=y CONFIG_CLKBLD_I8253=y CONFIG_MAILBOX=y CONFIG_PCC=y CONFIG_IOMMU_IOVA=y CONFIG_IOMMU_API=y CONFIG_IOMMU_SUPPORT=y CONFIG_AMD_IOMMU=y CONFIG_DMAR_TABLE=y CONFIG_INTEL_IOMMU=y CONFIG_INTEL_IOMMU_FLOPPY_WA=y CONFIG_RAS=y CONFIG_NVMEM=y CONFIG_NVMEM_SYSFS=y CONFIG_DCACHE_WORD_ACCESS=y CONFIG_FS_IOMAP=y CONFIG_EXT3_FS=y CONFIG_EXT3_FS_POSIX_ACL=y CONFIG_EXT3_FS_SECURITY=y CONFIG_EXT4_FS=y CONFIG_EXT4_USE_FOR_EXT2=y CONFIG_EXT4_FS_POSIX_ACL=y CONFIG_EXT4_FS_SECURITY=y CONFIG_EXT4_DEBUG=y CONFIG_JBD2=y CONFIG_FS_MBCACHE=y CONFIG_FS_POSIX_ACL=y CONFIG_EXPORTFS=y CONFIG_FILE_LOCKING=y CONFIG_MANDATORY_FILE_LOCKING=y CONFIG_FS_ENCRYPTION=y CONFIG_FSNOTIFY=y CONFIG_DNOTIFY=y CONFIG_INOTIFY_USER=y CONFIG_QUOTA=y CONFIG_QUOTA_NETLINK_INTERFACE=y CONFIG_QUOTA_TREE=y CONFIG_QFMT_V2=y CONFIG_QUOTACTL=y CONFIG_QUOTACTL_COMPAT=y CONFIG_AUTOFS4_FS=y CONFIG_AUTOFS_FS=y CONFIG_ISO9660_FS=y CONFIG_JOLIET=y CONFIG_ZISOFS=y CONFIG_UDF_FS=y CONFIG_FAT_FS=y CONFIG_MSDOS_FS=y CONFIG_VFAT_FS=y CONFIG_FAT_DEFAULT_CODEPAGE=437 CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1" CONFIG_FAT_DEFAULT_UTF8=y CONFIG_NTFS_FS=y CONFIG_NTFS_DEBUG=y CONFIG_NTFS_RW=y CONFIG_PROC_FS=y CONFIG_PROC_KCORE=y CONFIG_PROC_VMCORE=y CONFIG_PROC_SYSCTL=y CONFIG_PROC_PAGE_MONITOR=y CONFIG_PROC_PID_ARCH_STATUS=y CONFIG_KERNFS=y CONFIG_SYSFS=y CONFIG_TMPFS=y CONFIG_TMPFS_POSIX_ACL=y CONFIG_TMPFS_XATTR=y CONFIG_HUGETLBFS=y CONFIG_HUGETLB_PAGE=y CONFIG_MEMFD_CREATE=y CONFIG_ARCH_HAS_GIGANTIC_PAGE=y CONFIG_EFIVAR_FS=m CONFIG_MISC_FILESYSTEMS=y CONFIG_NETWORK_FILESYSTEMS=y CONFIG_NFS_FS=y CONFIG_NFS_V2=y CONFIG_NFS_V3=y CONFIG_NFS_V3_ACL=y CONFIG_NFS_V4=y CONFIG_ROOT_NFS=y CONFIG_NFS_USE_KERNEL_DNS=y CONFIG_GRACE_PERIOD=y CONFIG_LOCKD=y CONFIG_LOCKD_V4=y CONFIG_NFS_ACL_SUPPORT=y CONFIG_NFS_COMMON=y CONFIG_SUNRPC=y CONFIG_SUNRPC_GSS=y CONFIG_RPCSEC_GSS_KRB5=y CONFIG_NLS=y CONFIG_NLS_DEFAULT="utf8" CONFIG_NLS_CODEPAGE_437=y CONFIG_NLS_ASCII=y CONFIG_NLS_ISO8859_1=y CONFIG_NLS_UTF8=y CONFIG_KEYS=y CONFIG_KEYS_COMPAT=y CONFIG_SECURITY=y CONFIG_SECURITY_WRITABLE_HOOKS=y CONFIG_SECURITY_NETWORK=y CONFIG_PAGE_TABLE_ISOLATION=y CONFIG_LSM_MMAP_MIN_ADDR=65536 CONFIG_HAVE_HARDENED_USERCOPY_ALLOCATOR=y CONFIG_SECURITY_SELINUX=y CONFIG_SECURITY_SELINUX_BOOTPARAM=y CONFIG_SECURITY_SELINUX_DISABLE=y CONFIG_SECURITY_SELINUX_DEVELOP=y CONFIG_SECURITY_SELINUX_AVC_STATS=y CONFIG_SECURITY_SELINUX_CHECKREQPROT_VALUE=0 CONFIG_INTEGRITY=y CONFIG_INTEGRITY_AUDIT=y CONFIG_DEFAULT_SECURITY_SELINUX=y CONFIG_LSM="lockdown,yama,loadpin,safesetid,integrity,selinux,smack,tomoyo,apparmor" CONFIG_INIT_STACK_NONE=y CONFIG_CRYPTO=y CONFIG_CRYPTO_ALGAPI=y CONFIG_CRYPTO_ALGAPI2=y CONFIG_CRYPTO_AEAD=y CONFIG_CRYPTO_AEAD2=y CONFIG_CRYPTO_BLKCIPHER=y CONFIG_CRYPTO_BLKCIPHER2=y CONFIG_CRYPTO_HASH=y CONFIG_CRYPTO_HASH2=y CONFIG_CRYPTO_RNG=y CONFIG_CRYPTO_RNG2=y CONFIG_CRYPTO_RNG_DEFAULT=y CONFIG_CRYPTO_AKCIPHER2=y CONFIG_CRYPTO_AKCIPHER=y CONFIG_CRYPTO_KPP2=y CONFIG_CRYPTO_ACOMP2=y CONFIG_CRYPTO_MANAGER=y CONFIG_CRYPTO_MANAGER2=y CONFIG_CRYPTO_MANAGER_DISABLE_TESTS=y CONFIG_CRYPTO_GF128MUL=y CONFIG_CRYPTO_NULL=y CONFIG_CRYPTO_NULL2=y CONFIG_CRYPTO_AUTHENC=y CONFIG_CRYPTO_RSA=y CONFIG_CRYPTO_CCM=y CONFIG_CRYPTO_GCM=y CONFIG_CRYPTO_SEQIV=y CONFIG_CRYPTO_ECHAINIV=y CONFIG_CRYPTO_CBC=y CONFIG_CRYPTO_CTR=y CONFIG_CRYPTO_CTS=y CONFIG_CRYPTO_ECB=y CONFIG_CRYPTO_XTS=y CONFIG_CRYPTO_CMAC=y CONFIG_CRYPTO_HMAC=y CONFIG_CRYPTO_CRC32C=y CONFIG_CRYPTO_GHASH=y CONFIG_CRYPTO_MD5=y CONFIG_CRYPTO_SHA1=y CONFIG_CRYPTO_LIB_SHA256=y CONFIG_CRYPTO_SHA256=y CONFIG_CRYPTO_SHA512=y CONFIG_CRYPTO_LIB_AES=y CONFIG_CRYPTO_AES=y CONFIG_CRYPTO_LIB_ARC4=y CONFIG_CRYPTO_ARC4=y CONFIG_CRYPTO_LIB_DES=y CONFIG_CRYPTO_DES=y CONFIG_CRYPTO_DRBG_MENU=y CONFIG_CRYPTO_DRBG_HMAC=y CONFIG_CRYPTO_DRBG=y CONFIG_CRYPTO_JITTERENTROPY=y CONFIG_CRYPTO_HASH_INFO=y CONFIG_CRYPTO_HW=y CONFIG_ASYMMETRIC_KEY_TYPE=y CONFIG_ASYMMETRIC_PUBLIC_KEY_SUBTYPE=y CONFIG_X509_CERTIFICATE_PARSER=y CONFIG_PKCS7_MESSAGE_PARSER=y CONFIG_SYSTEM_TRUSTED_KEYRING=y CONFIG_SYSTEM_TRUSTED_KEYS="" CONFIG_BINARY_PRINTF=y CONFIG_BITREVERSE=y CONFIG_GENERIC_STRNCPY_FROM_USER=y CONFIG_GENERIC_STRNLEN_USER=y CONFIG_GENERIC_NET_UTILS=y CONFIG_GENERIC_FIND_FIRST_BIT=y CONFIG_RATIONAL=y CONFIG_GENERIC_PCI_IOMAP=y CONFIG_GENERIC_IOMAP=y CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y CONFIG_ARCH_HAS_FAST_MULTIPLIER=y CONFIG_CRC_CCITT=y CONFIG_CRC16=y CONFIG_CRC_ITU_T=y CONFIG_CRC32=y CONFIG_CRC32_SLICEBY8=y CONFIG_ZLIB_INFLATE=y CONFIG_LZO_COMPRESS=y CONFIG_LZO_DECOMPRESS=y CONFIG_LZ4_DECOMPRESS=y CONFIG_XZ_DEC=y CONFIG_XZ_DEC_X86=y CONFIG_XZ_DEC_POWERPC=y CONFIG_XZ_DEC_IA64=y CONFIG_XZ_DEC_ARM=y CONFIG_XZ_DEC_ARMTHUMB=y CONFIG_XZ_DEC_SPARC=y CONFIG_XZ_DEC_BCJ=y CONFIG_DECOMPRESS_GZIP=y CONFIG_DECOMPRESS_BZIP2=y CONFIG_DECOMPRESS_LZMA=y CONFIG_DECOMPRESS_XZ=y CONFIG_DECOMPRESS_LZO=y CONFIG_DECOMPRESS_LZ4=y CONFIG_GENERIC_ALLOCATOR=y CONFIG_INTERVAL_TREE=y CONFIG_ASSOCIATIVE_ARRAY=y CONFIG_HAS_IOMEM=y CONFIG_HAS_IOPORT_MAP=y CONFIG_HAS_DMA=y CONFIG_NEED_SG_DMA_LENGTH=y CONFIG_NEED_DMA_MAP_STATE=y CONFIG_ARCH_DMA_ADDR_T_64BIT=y CONFIG_ARCH_HAS_FORCE_DMA_UNENCRYPTED=y CONFIG_SWIOTLB=y CONFIG_SGL_ALLOC=y CONFIG_CHECK_SIGNATURE=y CONFIG_CPU_RMAP=y CONFIG_DQL=y CONFIG_GLOB=y CONFIG_NLATTR=y CONFIG_CLZ_TAB=y CONFIG_MPILIB=y CONFIG_OID_REGISTRY=y CONFIG_UCS2_STRING=y CONFIG_HAVE_GENERIC_VDSO=y CONFIG_GENERIC_GETTIMEOFDAY=y CONFIG_FONT_SUPPORT=y CONFIG_FONT_8x8=y CONFIG_FONT_8x16=y CONFIG_SG_POOL=y CONFIG_ARCH_HAS_PMEM_API=y CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE=y CONFIG_ARCH_HAS_UACCESS_MCSAFE=y CONFIG_ARCH_STACKWALK=y CONFIG_SBITMAP=y CONFIG_PRINTK_TIME=y CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7 CONFIG_CONSOLE_LOGLEVEL_QUIET=4 CONFIG_MESSAGE_LOGLEVEL_DEFAULT=4 CONFIG_ENABLE_MUST_CHECK=y CONFIG_FRAME_WARN=2048 CONFIG_DEBUG_FS=y CONFIG_OPTIMIZE_INLINING=y CONFIG_SECTION_MISMATCH_WARN_ONLY=y CONFIG_STACK_VALIDATION=y CONFIG_MAGIC_SYSRQ=y CONFIG_MAGIC_SYSRQ_DEFAULT_ENABLE=0x1 CONFIG_MAGIC_SYSRQ_SERIAL=y CONFIG_DEBUG_KERNEL=y CONFIG_DEBUG_MISC=y CONFIG_HAVE_DEBUG_KMEMLEAK=y CONFIG_DEBUG_STACK_USAGE=y CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y CONFIG_DEBUG_MEMORY_INIT=y CONFIG_HAVE_ARCH_KASAN=y CONFIG_CC_HAS_KASAN_GENERIC=y CONFIG_KASAN_STACK=1 CONFIG_ARCH_HAS_KCOV=y CONFIG_CC_HAS_SANCOV_TRACE_PC=y CONFIG_HARDLOCKUP_CHECK_TIMESTAMP=y CONFIG_PANIC_ON_OOPS_VALUE=0 CONFIG_PANIC_TIMEOUT=0 CONFIG_SCHED_INFO=y CONFIG_SCHEDSTATS=y CONFIG_LOCK_DEBUGGING_SUPPORT=y CONFIG_STACKTRACE=y CONFIG_DEBUG_BUGVERBOSE=y CONFIG_RCU_CPU_STALL_TIMEOUT=21 CONFIG_RCU_TRACE=y CONFIG_FUNCTION_ERROR_INJECTION=y CONFIG_USER_STACKTRACE_SUPPORT=y CONFIG_NOP_TRACER=y CONFIG_HAVE_FUNCTION_TRACER=y CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y CONFIG_HAVE_DYNAMIC_FTRACE=y CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y CONFIG_HAVE_SYSCALL_TRACEPOINTS=y CONFIG_HAVE_FENTRY=y CONFIG_HAVE_C_RECORDMCOUNT=y CONFIG_TRACE_CLOCK=y CONFIG_RING_BUFFER=y CONFIG_EVENT_TRACING=y CONFIG_CONTEXT_SWITCH_TRACER=y CONFIG_TRACING=y CONFIG_GENERIC_TRACER=y CONFIG_TRACING_SUPPORT=y CONFIG_FTRACE=y CONFIG_BRANCH_PROFILE_NONE=y CONFIG_BLK_DEV_IO_TRACE=y CONFIG_KPROBE_EVENTS=y CONFIG_UPROBE_EVENTS=y CONFIG_DYNAMIC_EVENTS=y CONFIG_PROBE_EVENTS=y CONFIG_PROVIDE_OHCI1394_DMA_INIT=y CONFIG_RUNTIME_TESTING_MENU=y CONFIG_HAVE_ARCH_KGDB=y CONFIG_ARCH_HAS_UBSAN_SANITIZE_ALL=y CONFIG_UBSAN_ALIGNMENT=y CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y CONFIG_STRICT_DEVMEM=y CONFIG_TRACE_IRQFLAGS_SUPPORT=y CONFIG_EARLY_PRINTK_USB=y CONFIG_X86_VERBOSE_BOOTUP=y CONFIG_EARLY_PRINTK=y CONFIG_EARLY_PRINTK_DBGP=y CONFIG_DOUBLEFAULT=y CONFIG_HAVE_MMIOTRACE_SUPPORT=y CONFIG_IO_DELAY_0X80=y CONFIG_DEBUG_BOOT_PARAMS=y CONFIG_X86_DEBUG_FPU=y CONFIG_UNWINDER_ORC=y CONFIG_GENTOO_LINUX=y CONFIG_GENTOO_LINUX_UDEV=y CONFIG_GENTOO_LINUX_PORTAGE=y CONFIG_GENTOO_LINUX_INIT_SCRIPT=y
No surprise with the fact that fix was obvious and easy, if not silly... the mod key of i3 wasn't configured well. For some reason window key doesn't work. Set $mod to Mod1 solved the issue.
Dear All, I am trying to emerge gnome light. gnome-extra/zenity is failing to emerge: Code: * Messages for package gnome-extra/zenity-3.32.0: * Package: gnome-extra/zenity-3.32.0 * Repository: gentoo * Maintainer: gnome@gentoo.org * USE: abi_x86_64 amd64 debug elibc_glibc kernel_linux userland_GNU * FEATURES: network-sandbox preserve-libs sandbox userpriv usersandbox * Disabling deprecation warnings ... * ERROR: gnome-extra/zenity-3.32.0::gentoo failed (compile phase): * emake failed * * If you need support, post the output of `emerge --info '=gnome-extra/zenity-3.32.0::gentoo'`, * the complete build log and the output of `emerge -pqv '=gnome-extra/zenity-3.32.0::gentoo'`. * The complete build log is located at '/var/tmp/portage/gnome-extra/zenity-3.32.0/temp/build.log'. * The ebuild environment file is located at '/var/tmp/portage/gnome-extra/zenity-3.32.0/temp/environment'. * Working directory: '/var/tmp/portage/gnome-extra/zenity-3.32.0/work/zenity-3.32.0' * S: '/var/tmp/portage/gnome-extra/zenity-3.32.0/work/zenity-3.32.0' The build log file is here: http://dpaste.com/18HJB8J My make.conf file is here: Code: localhost /etc/portage # more make.conf # These settings were set by the catalyst build script that automatically # built this stage. # Please consult /usr/share/portage/config/make.conf.example for a more # detailed example. COMMON_FLAGS="-march=native -O2 -pipe" CFLAGS="${COMMON_FLAGS}" CXXFLAGS="${COMMON_FLAGS}" FCFLAGS="${COMMON_FLAGS}" FFLAGS="${COMMON_FLAGS}" # WARNING: Changing your CHOST is not something that should be done lightly. # Please consult http://www.gentoo.org/doc/en/change-chost.xml before changing. CHOST="x86_64-pc-linux-gnu" # These are the USE and USE_EXPAND flags that were used for # buidling in addition to what is provided by the profile. USE="X acl alsa alsa-plugin aqua asyncns blender bluetooth bmp branding bullet bzip2 caps classic colorio crypt css cycles dbus dds debug djvu corefonts docs dri3 eet egl elbeem elogind examples fbcondecor ffmpeg fftw filecaps fontconfig gallium game-engine gbm glamor gles glib gnome gpl grub gssapi gtk gtk3 gui handbook hardcoded-tables hardened ico iconv icu idn imx introspection ipv6 jack jit jpeg jumbo-build kerberos latex ldap legacy-systray libkms llvm lockluajit lprng-compat mmap ndof network networkmanager nls npm nptl nss openal opengl openssl openimageio openmp orc pcre pdf pie plasma plymouth png policykit polkit postproc postscript ppm psd pulseaudio qtmedia readline recursion-limit sctp selinux session snapshot sndfile sound ssl startup-notification suid symlink tcl tcpd tftpd threads thunar tiff truetype udev udisks unicode upower usb vanilla webgl webrtc-aec xcb xinetd xv zeroconf zlib -caps -clang -dot -doxysearch -drm -filecaps" FEATURES="split-elog buildpkg" FEATURES="ccache" CCACHE_SIZE="30G" MAKEOPTS="-j5" CPU_FLAGS_X86="mmx sse sse2 3dnow 3dnowext aes avx fma3 fma4 mmx mmxext sse3 sse4_1 sse4_2 ssse3 xop" FFTOOLS="aviocat cws2fws ffescape ffeval ffhash fourcc2pixfmt graph2dot ismindex pktdumper qt-faststart sidxindex trasher" #ABI_X86="32 64 x32" #PYTHON_TARGETS="(python2_7)(python3_4)(python3_5)(python3_6)" #PYTHON_SINGLE_TARGET ="(python3_4)" PORTAGE_BINHOST="http://binhost.genfic.com/packages" PORTDIR="/usr/portage" DISTDIR="${PORTDIR}/distfiles" PKGDIR="${PORTDIR}/packages" VIDEO_CARDS="amdgpu radeonsi radeon" ACCEPT_KEYWORDS="amd64" # (For mouse, keyboard, and Synaptics touchpad support) INPUT_DEVICES="synaptics libinput" GENTOO_MIRRORS="http://mirror.bytemark.co.uk/gentoo/" ACCEPT_LICENSE="* -@EULA" #SYNC="rsync://rsync.uk.gentoo.org/gentoo-portage" # This sets the language of build output to English. # Please keep this setting intact when reporting bugs. LC_MESSAGES=C # Turn on logging - see http://gentoo-en.vfose.ru/wiki/Gentoo_maintenance. PORTAGE_ELOG_CLASSES="info warn error log qa" # Echo messages after emerge, also save to /var/log/portage/elog PORTAGE_ELOG_SYSTEM="echo save" GRUB_PLATFORMS="pc" Comments appreciated Regards Michael Fothergill PS The Code: emerge info output is here: https://pastebin.com/TjYePv3w Code: localhost /etc/portage # emerge -pqv '=gnome-extra/zenity-3.32.0::gentoo' [ebuild N ] gnome-extra/zenity-3.32.0 USE="debug -libnotify -webkit" localhost /etc/portage #
https://bugs.gentoo.org/651740
Hi, I'm trying to setup a basic bar with Polybar . I've created a very basic config file just to check if it works: Code: # /home/user/.config/polybar/config [bar/mybar] modules-right = date [module/date] type = internal/date date = %Y-%m-%d% Then I tried to launch it with the " polybar mybar " command but I get the message " error: Undefined bar: mybar " I also tried other config files from around the web. These don't work either. I emerged Polybar with almost no USE flags because currently I'm not sure what I'll need. Code: emerge -avp x11-misc/polybar These are the packages that would be merged, in order: Calculating dependencies... done! [ebuild R ] x11-misc/polybar-3.4.2-r1::gentoo USE="-alsa -curl -i3wm -ipc -mpd -network -pulseaudio" PYTHON_SINGLE_TARGET="python3_6 -python3_7 (-python3_8)" 0 KiB Total: 1 package (1 reinstall), Size of downloads: 0 KiB
Well... I've edited the config file with SublimeText on a Windows 10 host machine via SSH TCP forwarding. Important lesson learned: Don't modify Linux files with Windows... I hope I didn't cause more problems like that.
Hi i use tbsm as display manager https://loh-tar.github.io/tbsm/ tbsm is written in bash, i want to use zsh as my main shell instead of bash, i installed zsh and changed with the chsh command to zsh, when booting the system start but tbsm doesnt it goes to the zsh config. but if im using bash and in the terminal y type zsh and then from zsh y launch tbsm the program start, how can i make tbsm work with zsh at start?
I'm afraid I don't understand the question. What exactly doesn't work? Do you want your machine to start tbsm automatically after you log in? And that works if you use bash as login shell and it doesn't work if you use zsh as login shell? If that was the question, the answer is: The tbsm manual recommends to add the two lines below to ~/.bash_profile if you want tbsm to be started after login: Code: # Auto start tbsm after login on first two VTs [[ $XDG_VTNR -le 2 ]] && tbsm zsh does NOT run ~/.bash_profile after login. Instead, it runs ~/.zprofile. Therefore, if you configure zsh to be the login shell, it's necessary to add the tbsm start commands to ~/.zprofile.
git operation through curl is broken, but pure curl operation is ok. I have tried "emerge -1 dev-vcs/git net-misc/curl" but the problem is still there. Code: fpemud@localhost ~ $ git clone https://github.com/fpemud/games-roms-ebuilder Cloning into 'games-roms-ebuilder'... warning: curl_multi_add_handle failed: Invalid easy handle fatal: unable to access 'https://github.com/fpemud/games-roms-ebuilder/': failed to start HTTP request Code: fpemud@localhost ~ $ curl https://github.com/fpemud/games-roms-ebuilder <!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <link rel="dns-prefetch" href="https://github.githubassets.com"> <link rel="dns-prefetch" href="https://avatars0.githubusercontent.com"> <link rel="dns-prefetch" href="https://avatars1.githubusercontent.com"> <link rel="dns-prefetch" href="https://avatars2.githubusercontent.com"> <link rel="dns-prefetch" href="https://avatars3.githubusercontent.com"> <link rel="dns-prefetch" href="https://github-cloud.s3.amazonaws.com"> <link rel="dns-prefetch" href="https://user-images.githubusercontent.com/"> ...
Did you build your curl with +adns and -ipv6 by any chances? It would trigger this bug: https://github.com/curl/curl/issues/5097 Fixed upstream in this commit , which you could apply as a user patch while waiting for next version (will be in 7.69.2). That or I believe either -adns or +ipv6 should let it work too. Edit: note that the "threads" USE on curl (disabled by default like adns) let curl use its own implementation of async dns without depending on c-ares, the alarm() implementation (that may or may not have heard of) is only used if both flags are disabled.
Hello, I ugraded to the newest version for kde-plasma/ to 5.18.0 ~amd64 and both kde-plasma/powerdevil and kde-plasma/plasma-nm are both failing to complie. This is the message that they are both outputing: Code: -- Configuring done CMake Error in libs/CMakeLists.txt: Imported target "KF5::NetworkManagerQt" includes non-existent path "/usr/lib64/libffi-3.3_rc0/include" in its INTERFACE_INCLUDE_DIRECTORIES. Possible reasons include: * The path was deleted, renamed, or moved to another location. * An install or uninstall procedure did not complete successfully. * The installation package was faulty and references files it does not provide. CMake Error in libs/editor/CMakeLists.txt: Imported target "KF5::NetworkManagerQt" includes non-existent path "/usr/lib64/libffi-3.3_rc0/include" in its INTERFACE_INCLUDE_DIRECTORIES. Possible reasons include: * The path was deleted, renamed, or moved to another location. * An install or uninstall procedure did not complete successfully. * The installation package was faulty and references files it does not provide. CMake Error in libs/CMakeLists.txt: Imported target "KF5::NetworkManagerQt" includes non-existent path "/usr/lib64/libffi-3.3_rc0/include" in its INTERFACE_INCLUDE_DIRECTORIES. Possible reasons include: * The path was deleted, renamed, or moved to another location. * An install or uninstall procedure did not complete successfully. * The installation package was faulty and references files it does not provide. CMake Error in libs/editor/CMakeLists.txt: Imported target "KF5::NetworkManagerQt" includes non-existent path "/usr/lib64/libffi-3.3_rc0/include" in its INTERFACE_INCLUDE_DIRECTORIES. Possible reasons include: * The path was deleted, renamed, or moved to another location. * An install or uninstall procedure did not complete successfully. * The installation package was faulty and references files it does not provide. I rebuilt my libffi to see if that would fix it, but it changed nothing. Thank you for the help.
emerge -1 networkmanager-qt https://bugs.gentoo.org/695788
Hello What happened to Gnome's redshift flavor (whatever it was called, I cannot find it out for obvious reasons...) I remember setting it up months ago and it worked. Gnome on Wayland. Once I needed to temporarily turn it off. This (and nothing else - specifically no updates) had the effect of completely uninstalling the feature from all of Gnome. No Gnome interfaces mention anything like it any more. It cannot be turned on again no matter what, there just is no such thing any more. What is going on there? I googled, there seems to be a long deprecated gnome extension. Also there are updates to Gnome (ahead of Gentoo) that mention improving the nonexistent feature. Similarly to Gnome proxy setup, which has evaporated from underneath its users (Chromium). Is Gnome completely falling apart? Has it been moved into USE flags, separate applications, extensions? Why does nobody notice? No relevant search results in the forums thanks
OK, this one does still exist, under (Gnome config) Devices -> Displays And its official name is "Night light"
Have anyone knows how to get the emoji picker mentioned in https://pointieststick.com/2019/12/08/this-week-in-kde-easy-emoji-input-and-more/ from Plasma 5.18? It seems like you have to press meta + . but nothing happen in my setup. meta + tab to get the activities works but I cannot get the emoji picker. I am missing an use flag or a package? Can this shortcut be set? I have look for it in system settings without luck. Thanks in advance
Or more simple enable ibus use flag to kde-plasma/plasma-desktop
I am unable to start x with xdm on startup, X or startx. The console output is http://dpaste.com/3DRBD86 Xorg.0.log: http://dpaste.com/2N7GA74 make.conf: http://dpaste.com/11GT18T I have chosen the KDE desktop profile without systemd Any help would be appreciated, thanks in advance
You are sure you enabled all you need in kernel ?
Hello all, I have a script which I would like to run whenever my computer goes into the "suspend" state. I'm using Xfce for my DE, and I have consolekit, policykit, and pm-utils installed in order to make "suspend" work, and it suspends without much issue. The script I am trying to run checks for any "emerge" or "gcc" processes and aborts the suspend operation if something is compiling. I placed it in the /etc/pm/sleep.d/ folder and formatted it properly according to the pm-utils instructions. The script works just fine. Now, here's my issue: When I suspend using either the Xfce "log out" menu, the pm-suspend command, "pkexec xfce4-pm-helper --suspend", or even invoking the Suspend method in dbus, my system runs the scripts in /etc/pm/sleep.d/ and suspends normally. However, when I use the xfce4-power-manager to make my computer suspend after XX minutes, or when I close the lid, it completely skips all the /etc/pm/ scripts and continues the suspend. I know this because 1: it still suspends even if I'm compiling something, and 2: the log file at /var/log/pm-suspend.log remains empty in this case. Ordinarily there would be ~30 lines or so entered there if it ran my script. Does anyone have any idea why this happens? I'm assuming that the Xfce power manager uses a different command to suspend, depending on which way you tell it to suspend. But I have no idea... Please help if you can, -skiwarz
Thank you, 0azza0 for digging into this. The xfpm_power_suspend() function calls xfpm_power_sleep. Code: void xfpm_power_suspend (XfpmPower *power, gboolean force) { xfpm_power_sleep (power, "Suspend", force); } The xfpm_power_sleep function then calls on either a built-in function or consolekit (if installed) to perform the suspend: Code: if (check_for_consolekit2 (power)) { xfpm_console_kit_suspend (power->priv->console, &error); } else { xfpm_suspend_try_action (XFPM_SUSPEND); } The xfpm_console_kit_suspend() makes a call to dbus: Code: void xfpm_console_kit_suspend (XfpmConsoleKit *console, GError **error) { GVariant *var; g_return_if_fail (console->priv->proxy != NULL ); var = g_dbus_proxy_call_sync (console->priv->proxy, "Suspend", g_variant_new ("(b)", TRUE), G_DBUS_CALL_FLAGS_NONE, -1, NULL, error); if (var) g_variant_unref (var); } ...and the xfpm_suspend_try_action() invokes xfce-pm-helper, running the code mentioned in the second half of your post. If I run the above dbus call manually in a terminal, it still results in the pm-suspend scripts being run. (The "force" argument shown here doesn't do anything meaningful). In other words, my friend, I still can't find any way to suspend which skips the /etc/pm/sleep.d/ scripts.. but somehow xfce-power-manager IS skipping them...
Hi, I was using net-misc/teamviewer since a long time, but recently it stopped working. Current Portage version is 13.2.13582, while I also tried the very recent release by creating a trivial local teamviewer-13.2.26559.ebuild myself. Starting the service: Code: rc-service teamviewerd start * Starting teamviewerd ... [ ok ] # cat /var/log/teamviewer13/TeamViewer13_Logfile.log 2018/11/13 08:58:02.064 27469 140373678078784 S Logger started. 2018/11/13 08:58:02.065 27469 140373678078784 S Found 0 core dump files ... 2018/11/13 08:58:02.066 27469 140373675742976 S+ Thread: SystemBusIO0 2018/11/13 08:58:02.066 27469 140373667350272 S+ Thread: SystemBusIO1 2018/11/13 08:58:02.067 27469 140373678078784 S systemd: logind service available 2018/11/13 08:58:02.068 27469 140373678078784 S systemd: New seat seat0 [path=/org/freedesktop/login1/seat/seat0, activeSession='', canGraphical=1, canTTY=1, canMultiSession=1] 2018/11/13 08:58:02.072 27469 140373650564864 S+ Thread: IOServiceWorker_0 2018/11/13 08:58:02.072 27469 140373642172160 S+ Thread: IOServiceWorker_1 2018/11/13 08:58:02.072 27469 140373633779456 S+ Thread: IOServiceWorker_2 2018/11/13 08:58:02.072 27469 140373288548096 S+ Thread: IOServiceWorker_3 2018/11/13 08:58:02.072 27469 140373678078784 S SysSessionInfoManager: observing sessions from logind is marked as reliable 2018/11/13 08:58:02.072 27469 140373678078784 S SysSessionInfoManager: Session Information provided by VT [priority: 2] 2018/11/13 08:58:02.077 27469 140373678078784 S Starting as daemon 2018/11/13 08:58:02.077 27469 140373678078784 S Using systemd-logind for suspend/resume monitoring 2018/11/13 08:58:02.078 27469 140373678078784 S! AsioSettings::FindExternalIP: found 0 external IPs instead of 1! 2018/11/13 08:58:02.081 27469 140373678078784 S UpdateOnlineState alwaysOnline=0 modifiedOnline=0 otherProcess=0 restart=0 2018/11/13 08:58:02.081 27469 140373678078784 S+ tvnetwork::Offline: online state 0 2018/11/13 08:58:02.082 27469 140373678078784 S! AsioSettings::FindExternalIP: found 0 external IPs instead of 1! 2018/11/13 08:58:02.084 27469 140373678078784 S System uptime: 91642 seconds 2018/11/13 08:58:02.085 27469 140373678078784 S MID: Read from disk failed. 2018/11/13 08:58:02.085 27469 140373678078784 S SystemID m=1 s=1 7bbe58a762a694c004c3334f0000270c Start: 2018/11/13 08:58:02.085 (UTC+1:00) Version: 13.2.26559 ID: 667013155 Loglevel: Info (100) License: 10000 Server: master4.teamviewer.com IC: 1312991530 CPU: Intel(R) Core(TM) i7-2620M CPU @ 2.70GHz CPU extensions: e9 OS: Lx Gentoo/Linux (x86_64) IP: 10.190.222.22 MID: l7bbe12a762a694c004c3223f0000270c:e4115bf82f19:9ba82a221bb44e0fad7e4a38350f7647 MIDv: 1 Proxy-Settings: Type=2 IP=gw01:8080 User= 2018/11/13 08:58:02.087 27469 140373678078784 S NetWatchdog: Internet is now connected 2018/11/13 08:58:02.087 27469 140373678078784 S NetWatchDogLinux: initialized network manager connection 2018/11/13 08:58:02.087 27469 140373678078784 S RemoteSettingsMDRelationshipWatchDog: DEVICE ISN'T A MANAGED DEVICE 2018/11/13 08:58:02.087 27469 140373236057856 S RemoteSettingsStore: Cleanup all policies. 2018/11/13 08:58:02.088 27469 140373678078784 S RemoteSettingsStoreListener: Establish connection. 2018/11/13 08:58:02.088 27469 140373236057856 S RemoteSettingsStore::LoadLastReceivedPolicies : Storage Entry Remote_Settings_TVClientSetting_Policy empty 2018/11/13 08:58:02.088 27469 140373678078784 S Using IPC-Port 5939 2018/11/13 08:58:02.088 27469 140373236057856 S RemoteSettingsMDRelationshipWatchDog: DEVICE ISN'T A MANAGED DEVICE 2018/11/13 08:58:02.088 27469 140373633779456 S OSSessionEventTranslatorLinux::RegisterSessionEvents(): Start observing session events 2018/11/13 08:58:02.088 27469 140373633779456 S OSSessionEventTranslator::GenerateEventsForSession: SessionID = 4294967295, username = , primarySession = 0, unusable = 0, locked = 0, connected = 0 2018/11/13 08:58:02.088 27469 140373633779456 S OSSessionEventTranslator::GenerateEventsForSession: SessionID = 3510599056, username = root, primarySession = 0, unusable = 0, locked = 0, connected = 0 2018/11/13 08:58:02.088 27469 140373633779456 S UpdateOnlineState alwaysOnline=0 modifiedOnline=0 otherProcess=0 restart=0 As far as I know, the service must be always running for the client, eventhough the client will be used as client only starting the connection and not intercepting connections. Starting the client as user: Code: $ teamviewer Init... CheckCPU: SSE2 support: yes Checking setup... Launching TeamViewer ... Launching TeamViewer GUI ... Nothing happens, no GUI appears. No GUI process running: Code: $ pgrep -alf team 27469 /opt/teamviewer13/tv_bin/teamviewerd -d Code: $ cat ~/.local/share/teamviewer13/logfiles/TeamViewer13_Logfile.log 2018/11/13 09:06:34.685 26890 140192279673856 G Logger started. 2018/11/13 09:06:34.686 26890 140192279673856 G Found 0 core dump files ... 2018/11/13 09:06:34.687 26890 140192279673856 G systemd: logind service available 2018/11/13 09:06:34.689 26890 140192279673856 G systemd: New seat seat0 [path=/org/freedesktop/login1/seat/seat0, activeSession='', canGraphical=1, canTTY=1, canMultiSession=1] 2018/11/13 09:06:34.692 26890 140192279673856 G SysSessionInfoManager: observing sessions from logind is marked as reliable 2018/11/13 09:06:34.692 26890 140192279673856 G SysSessionInfoManager: Session Information provided by VT [priority: 2] 2018/11/13 09:06:34.697 26890 140192279673856 G SysSessionInfoManager: own session cache set to '4294967295' 2018/11/13 09:06:34.697 26890 140192279673856 G Running on Qt 5.11.2 2018/11/13 09:06:34.800 26890 140192279673856 G Initialised XRandR extension 1.6 (base=88 error=145) 2018/11/13 09:06:35.031 26890 140192279673856 G MonitorInfo: [XRandR 1.2] CRTC DisplayPort-1 1920x1200@60Hz [1680, 0, 3600, 1200] - 1 2018/11/13 09:06:35.031 26890 140192279673856 G MonitorInfo: [XRandR 1.2] CRTC 1 has no outputs 2018/11/13 09:06:35.031 26890 140192279673856 G MonitorInfo: [XRandR 1.2] CRTC DisplayPort-2 1680x1050@60Hz [0, 0, 1680, 1050] - 1 2018/11/13 09:06:35.032 26890 140192279673856 G MonitorInfo: [XRandR 1.2] CRTC VGA-0 1680x1050@60Hz [3600, 0, 5280, 1050] - 1 2018/11/13 09:06:35.032 26890 140192279673856 G MonitorInfo: [XRandR 1.2] CRTC 4 has no outputs 2018/11/13 09:06:35.032 26890 140192279673856 G MonitorInfo: [XRandR 1.2] CRTC 5 has no outputs 2018/11/13 09:06:35.032 26890 140192279673856 G Virtual Desktop [0, 0, 5280, 1200] 2018/11/13 09:06:35.292 26890 140192279673856 G MonitorInfo: [XRandR 1.2] CRTC DisplayPort-1 1920x1200@60Hz [1680, 0, 3600, 1200] - 1 2018/11/13 09:06:35.292 26890 140192279673856 G MonitorInfo: [XRandR 1.2] CRTC 1 has no outputs 2018/11/13 09:06:35.292 26890 140192279673856 G MonitorInfo: [XRandR 1.2] CRTC DisplayPort-2 1680x1050@60Hz [0, 0, 1680, 1050] - 1 2018/11/13 09:06:35.292 26890 140192279673856 G MonitorInfo: [XRandR 1.2] CRTC VGA-0 1680x1050@60Hz [3600, 0, 5280, 1050] - 1 2018/11/13 09:06:35.292 26890 140192279673856 G MonitorInfo: [XRandR 1.2] CRTC 4 has no outputs 2018/11/13 09:06:35.292 26890 140192279673856 G MonitorInfo: [XRandR 1.2] CRTC 5 has no outputs 2018/11/13 09:06:35.292 26890 140192279673856 G Virtual Desktop [0, 0, 5280, 1200] 2018/11/13 09:06:35.304 26890 140192279673856 G Loaded language 'de', using locale 'de' 2018/11/13 09:06:35.304 26890 140192279673856 G InterProcessBase::SecureNetwork created 2018/11/13 09:06:35.305 26890 140192279673856 G AutoLogin::Login: enabled: 1 2018/11/13 09:06:35.306 26890 140192279673856 G AccountLoginStateMachine::Reset 2018/11/13 09:06:35.306 26890 140192279673856 G SetUserLoggedIn(0x2922040): changed to: 1 2018/11/13 09:06:35.306 26890 140192279673856 G!!!Own session could not be resolved, unable to startup 2018/11/13 09:06:35.306 26890 140192279673856 G Chat::Stop: Stopping chat 2018/11/13 09:06:35.307 26890 140192279673856 G!! ConfigurationHub::HandleRegistrationResponse(): registering for feature 9 failed with error 2 2018/11/13 09:06:35.307 26890 140192279673856 G!! ConfigurationHub::HandleRegistrationResponse(): registering for feature 5 failed with error 2 2018/11/13 09:06:35.307 26890 140192279673856 G!! ConfigurationHub::HandleRegistrationResponse(): registering for feature 6 failed with error 2 2018/11/13 09:06:35.307 26890 140192279673856 G!! ConfigurationHub::HandleRegistrationResponse(): registering for feature 10 failed with error 2 2018/11/13 09:06:35.307 26890 140192279673856 G interprocessbase::SecureNetwork destroyed 2018/11/13 09:06:35.312 26890 140192279673856 G Shutting down System DBus References without a solution so far: https://community.teamviewer.com/t5/Linux/Teammviewer-13-0-6634-not-working-on-fedora-26-64-bit/m-p/27212 https://community.teamviewer.com/t5/Linux/Teamviewer-13-amp-Debian-Stable-9-2-no-GUI/m-p/24817
Awesome, that solved it. However I had elogind-daemon running, and that sys-auth/elogind was a requirement to get gnome-base/gnome-settings-daemon and net-libs/gnome-online-accounts emerged, while I don't actually use Gnome or systemd, just Xfce with OpenRC. PS.: Too bad this was not able to solve my long time issue about not starting vmware-workstation .
Greetings, I'm trying to setup my keyboard layout on Xorg the same as the one I'm using on console (br-abnt2). Whenever I run Code: setxkbmap br abnt2 it works just fine. But if I try to set it to be persistent through xorg.conf it doesn't work. Here's my xorg.conf: Code: Section "Files" EndSection Section "InputClass" Identifier "evdev pointer catchall" MatchIsPointer "on" MatchDevicePath "/dev/input/event*" Driver "evdev" EndSection Section "InputClass" Identifier "evdev keyboard catchall" MatchIsKeyboard "on" MatchDevicePath "/dev/input/event*" Driver "evdev" Option "XkbLayout" "br" Option "XkbVariant" "abnt2" EndSection Section "InputClass" Identifier "evdev touchpad catchall" MatchIsTouchpad "on" MatchDevicePath "/dev/input/event*" Driver "evdev" EndSection Section "InputClass" Identifier "evdev tablet catchall" MatchIsTablet "on" MatchDevicePath "/dev/input/event*" Driver "evdev" EndSection Section "InputClass" Identifier "evdev touchscreen catchall" MatchIsTouchscreen "on" MatchDevicePath "/dev/input/event*" Driver "evdev" EndSection Here's my emerge --info Code: Portage 2.3.84 (python 3.6.9-final-0, default/linux/amd64/17.1, gcc-9.2.0, glibc-2.29-r7, 5.4.17-ckoniichanr1 x86_64) ================================================================= System uname: Linux-5.4.17-ckoniichanr1-x86_64-AMD_Ryzen_5_2600_Six-Core_Processor-with-gentoo-2.6 KiB Mem: 16395304 total, 14938924 free KiB Swap: 16777212 total, 16777212 free Timestamp of repository gentoo: Sat, 22 Feb 2020 15:30:02 +0000 Head commit of repository gentoo: 90fa958ab31ce0aa545f9f5f6667606440ef2799 Timestamp of repository libressl: Sat, 22 Feb 2020 11:09:43 +0000 Head commit of repository libressl: 9117a08a604dd775ccd777b719be348aa244561b Timestamp of repository mv: Sat, 22 Feb 2020 11:09:46 +0000 Head commit of repository mv: e927ee4fe78f128d5017fd8dc22b9fea21ab321d sh bash 4.4_p23-r1 ld GNU ld (Gentoo 2.32 p2) 2.32.0 ccache version 3.7.7 [disabled] app-shells/bash: 4.4_p23-r1::gentoo dev-java/java-config: 2.2.0-r4::gentoo dev-lang/perl: 5.30.1::gentoo dev-lang/python: 2.7.17::gentoo, 3.6.9::mv, 3.7.5-r1::mv dev-util/ccache: 3.7.7::gentoo dev-util/cmake: 3.14.6::gentoo sys-apps/baselayout: 2.6-r1::gentoo sys-apps/openrc: 0.42.1::gentoo sys-apps/sandbox: 2.13::gentoo sys-devel/autoconf: 2.13-r1::gentoo, 2.69-r4::gentoo sys-devel/automake: 1.16.1-r1::gentoo sys-devel/binutils: 2.32-r1::gentoo sys-devel/gcc: 9.2.0-r2::gentoo sys-devel/gcc-config: 2.2::gentoo sys-devel/libtool: 2.4.6-r6::gentoo sys-devel/make: 4.2.1-r4::gentoo sys-kernel/linux-headers: 4.19::gentoo (virtual/os-headers) sys-libs/glibc: 2.29-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-extra-opts: sync-rsync-verify-metamanifest: yes sync-rsync-verify-max-age: 24 libressl location: /var/db/repos/libressl sync-type: git sync-uri: https://github.com/gentoo-mirror/libressl.git masters: gentoo mv location: /var/db/repos/mv sync-type: git sync-uri: https://github.com/gentoo-mirror/mv.git masters: gentoo ACCEPT_KEYWORDS="amd64" ACCEPT_LICENSE="*" CBUILD="x86_64-pc-linux-gnu" CFLAGS="-march=native -O2 -pipe -fomit-frame-pointer" CHOST="x86_64-pc-linux-gnu" CONFIG_PROTECT="/etc /usr/share/gnupg/qualified.txt" 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" CXXFLAGS="-march=native -O2 -pipe -fomit-frame-pointer" DISTDIR="/var/cache/distfiles" ENV_UNSET="DBUS_SESSION_BUS_ADDRESS DISPLAY GOBIN 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=native -O2 -pipe -fomit-frame-pointer" 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 sandbox sfperms strict unknown-features-warn unmerge-logs unmerge-orphans userfetch userpriv usersandbox usersync xattr" FFLAGS="-march=native -O2 -pipe -fomit-frame-pointer" GENTOO_MIRRORS="https://gentoo.c3sl.ufpr.br/" LANG="en_US.utf8" LDFLAGS="-Wl,-O1 -Wl,--as-needed" MAKEOPTS="-j6" 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 acl alsa amd64 berkdb bzip2 cli crypt cxx dri fortran gdbm iconv libressl libtirpc logrotate minimal multilib nptl openmp seccomp split-usr ssl tcpd unicode xattr xfs zlib" ABI_X86="64" ADA_TARGET="gnat_2018" ALSA_CARDS="hda-intel" 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" 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="evdev" KERNEL="linux" LCD_DEVICES="text" LIBREOFFICE_EXTENSIONS="presenter-console presenter-minimizer" LLVM_TARGETS="AMDGPU X86" OFFICE_IMPLEMENTATION="libreoffice" PHP_TARGETS="php7-2" POSTGRES_TARGETS="postgres10 postgres11" PYTHON_SINGLE_TARGET="python3_6" PYTHON_TARGETS="python3_6 python3_7" RUBY_TARGETS="ruby24 ruby25" USERLAND="GNU" VIDEO_CARDS="amdgpu radeon 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, PORTAGE_BINHOST, PORTAGE_BUNZIP2_COMMAND, PORTAGE_COMPRESS, PORTAGE_COMPRESS_FLAGS, PORTAGE_RSYNC_EXTRA_OPTS Best regards, vhns
it looks good for me, your answer is in your xorg.log ; if you need help post it, if you want try yourself, you should seek what it says about the evdev keyboard catchall class
Hello. I have been trying to get my spellcheck working in both Falkon browser and Discord. I have seen these https://forums.gentoo.org/viewtopic-t-1101948-highlight-spellcheck.html and https://forums.gentoo.org/viewtopic-t-1101426-highlight-.html postings but they do not say what it is I need to do, and if it does I have no idea what to do. I have no idea where this command is suppossed to be made Code: qwebengine_convert_dict /path/to/hunspell/dict.dic /output/path/to/created.bdic or what dirrectories that they are to go in, and if I am suppossed to make a symlink like was posted in the links. It is all to vague for me to understand what I am suppossed to do. I would greatly appreciate the help so I can get my spellcheck working on my system. Thank you.
Thank you for replying. I am not sure what the part is that is after the mkdir part. I had every thing there except the Code: /usr/share/qt5/qtwebengine_dictionaries/en_US.bdic Where do I get the en_US.bdic from, do I just touch the en_US.bdic or do I need to copy it from somewhere? Thanks.
I have tried running bemenu and dmenu but neither of them works. In both dmenu and bemenu just nothing happens when I try to launch it from terminal with default configs. If I change the environment variable from wayland to curses in bemenu, I'm at least able to run it in terminal but that is not what I'm looking after. I believe dmenu should also work since Xwayland is installed. Tried in st and kitty with similar results. Using config determined keys to launch leads to nothing happening. I'm a new user in Gentoo so I might be missing something trivial. Use flags from make.conf: Code: USE="acpi alsa bash-completion emacs ncurses glamor truetype ttf vim-syntax xattr -gnome -gnome-keyring -kde -pulseaudio -startup-notification -systemd" $equery --nocolor uses bemenu Code: [ Legend : U - final flag setting for installation] [ : I - package is installed with flag ] [ Colors : set, unset ] * Found these USE flags for dev-libs/bemenu-9999: U I + + X : Add support for X11 - - doc : Add extra documentation (API, Javadoc, etc). It is recommended to enable per package instead of globally + + ncurses : Add ncurses support (console display library) - - wayland : Enable dev-libs/wayland backend $equery --nocolor uses dmenu Code: [ Legend : U - final flag setting for installation] [ : I - package is installed with flag ] [ Colors : set, unset ] * Found these USE flags for x11-misc/dmenu-4.8: U I - - savedconfig : Use this to restore your config from /etc/portage/savedconfig ${CATEGORY}/${PN}. Make sure your USE flags allow for appropriate dependencies - - xinerama : Add support for querying multi-monitor screen geometry through the Xinerama API
It seems that bemenu has changed from cmake to make then you can compile only 0.2.0 version with current ebuild
Code: /usr/portage # emerge -auvDN @world * IMPORTANT: 1 news items need reading for repository 'gentoo'. * Use eselect news read to view new items. These are the packages that would be merged, in order: Calculating dependencies... done! !!! Multiple package instances within a single package slot have been pulled !!! into the dependency graph, resulting in a slot conflict: x11-base/xorg-server:0 (x11-base/xorg-server-1.20.7:0/1.20.7::gentoo, installed) USE="ipv6 suid systemd udev xorg -debug -dmx -doc (-elogind) -kdrive -libglvnd -libressl -minimal (-selinux) -static-libs -unwind -wayland -xcsecurity -xephyr -xnest -xvfb" ABI_X86="(64)" pulled in by x11-base/xorg-server:0/1.20.7= required by (x11-drivers/xf86-input-keyboard-1.9.0:0/0::gentoo, installed) USE="" ABI_X86="(64)" ^^^^^^^^^^ (and 1 more with the same problem) (x11-base/xorg-server-1.20.6:0/1.20.6::gentoo, ebuild scheduled for merge) USE="ipv6 suid systemd udev xorg -debug -dmx -doc (-elogind) -kdrive -libglvnd -libressl -minimal (-selinux) -static-libs -unwind -wayland -xcsecurity -xephyr -xnest -xvfb" ABI_X86="(64)" pulled in by x11-base/xorg-server:0/1.20.6= required by (x11-drivers/xf86-video-ati-19.1.0:0/0::gentoo, installed) USE="udev" ABI_X86="(64)" ^^^^^^^^^^ NOTE: Use the '--verbose-conflicts' option to display parents omitted above It may be possible to solve this problem by using package.mask to prevent one of those packages from being selected. However, it is also possible that conflicting dependencies exist such that they are impossible to satisfy simultaneously. If such a conflict exists in the dependencies of two different packages, then those packages can not be installed simultaneously. You may want to try a larger value of the --backtrack option, such as --backtrack=30, in order to see if that will solve this conflict automatically. For more information, see MASKED PACKAGES section in the emerge man page or refer to the Gentoo Handbook. emerge: there are no ebuilds to satisfy "dev-libs/boost:0/1.71.0=". (dependency required by "dev-util/mdds-1.4.3::gentoo" [installed]) (dependency required by "dev-libs/liborcus-0.14.1-r1::gentoo" [ebuild]) (dependency required by "app-office/libreoffice-bin-6.3.4.2::gentoo" [ebuild]) (dependency required by "@selected" [set]) (dependency required by "@world" [argument]) [Moderator edit: added [c ode] tags to preserve output layout. -Hu]
Hello gentoo-find, in your post I miss the question but I think you want to know why there's this trouble with these two versions of x11-base/xorg-server that portage wants to pull in but can't? I'm no expert but maybe I can put a little light on that issue. First I assume that your system is amd64 and is on the stable branch (you don't have ACCEPT_KEYWORDS="~amd64" in /etc/portage/make.conf). According to that your problem is that x11-drivers/xf86-input-keyboard-1.9.0 wants x11-base/xorg-server-1.20.7 (which is installed on your system): Code: (x11-base/xorg-server-1.20.7:0/1.20.7::gentoo, installed) USE="ipv6 suid systemd udev xorg -debug -dmx -doc (-elogind) -kdrive -libglvnd -libressl -minimal (-selinux) -static-libs -unwind -wayland -xcsecurity -xephyr -xnest -xvfb" ABI_X86="(64)" pulled in by x11-base/xorg-server:0/1.20.7= required by (x11-drivers/xf86-input-keyboard-1.9.0:0/0::gentoo, installed) USE="" ABI_X86="(64)" And at the same time x11-drivers/xf86-video-ati-19.1.0 wants x11-base/xorg-server-1.20.6 (which is not installed in your system): Code: (x11-base/xorg-server-1.20.6:0/1.20.6::gentoo, ebuild scheduled for merge) USE="ipv6 suid systemd udev xorg -debug -dmx -doc (-elogind) -kdrive -libglvnd -libressl -minimal (-selinux) -static-libs -unwind -wayland -xcsecurity -xephyr -xnest -xvfb" ABI_X86="(64)" pulled in by x11-base/xorg-server:0/1.20.6= required by (x11-drivers/xf86-video-ati-19.1.0:0/0::gentoo, installed) USE="udev" ABI_X86="(64)" According to https://gpo.zugaina.org/x11-base/xorg-server x11-base/xorg-server-1.20.6 is stable. So I assume in /etc/portage/package.keywords you have an entry for x11-base/xorg-server because portage wants to pull in x11x11-base/xorg-server-1.20.7 and doesn't complain about it being keyworded. What's the output for Code: cat /etc/portage/package.keywords/* | grep x11 ? Regards, Andy
In recent linux systems, xterm has 256color support, so xterm-256color doesn't have to appear. However, my $TERM happens to be xterm-256color. I've checked .bashrc and /etc/bashrc, but found nothing about $TERM. I'm just curious where it was initially set. I don't tend to change /etc/bash/bashrc, since it should only affect interactive shells, while I'd like it to affect everything. Thanks for your time .
PhoenixStarEclipse wrote: In recent linux systems, xterm has 256color support, so xterm-256color doesn't have to appear. However, my $TERM happens to be xterm-256color. I've checked .bashrc and /etc/bashrc, but found nothing about $TERM. I'm just curious where it was initially set. PhoenixStarEclipse ... it's set/reported by the terminal, or in the case of console by inittab/agetty. So, if you run screen, or tmux, within your xterm it'll detect the term supports 256 colours and set/report 'screen-256color'. For this reason you shouldn't set TERM in .bashrc or what-have-you. HTH & best ... khay
edit: MOSTLY SOLVED tldr: seemed to be caused by some things build against an older meson back at the days, recompile meson / make sure you have the most recent stable meson; then recompile xorg-proto, libxshmfence and possibly others (just in case, and make sure eveything else is up to date), then re-try qtgui. -------- Hello I did updates recently, Qt5.7.x to 5.9.4. On most machines it worked so far (FX, Kabini,...) until I got to my AMD E-350 based notebook. Here qtgui fails to compile (past some early checks?) - no matter what I do. glibc glib and gcc are up to date to what is stable in amd64. Everything else seemed to compile so far. Moreover, I cleaned and removed ccache from FEATURES and I even tried CFLAGS via command line (CFLAGS="-march=x86_64 -mmmx -msse -msse2 -msse3) to have something very default and probably failsafe. Also chrooting the sdd form another box didn't help, not that I really expected it, but at least the error is thrown faster. (Also removing previous versions of dev-qt/* didn't improve anything but the calculating dependencies process.) here is the error message Code: Note: Also available for Linux: linux-clang linux-icc Note: Dropped compiler flags '-pthread' when detecting library 'glib'. Qt is now configured for building. Just run 'gmake'. Once everything is built, you must run 'gmake install'. Qt will be installed into '/usr'. Prior to reconfiguration, make sure you remove any leftovers from the previous build. * Running qt5_qmake in src/gui * Running qt5_qmake in src/openglextensions * Running qt5_qmake in src/platformheaders * Running qt5_qmake in src/platformsupport * Running qt5_qmake in src/plugins/generic * Running qt5_qmake in src/plugins/imageformats * Running qt5_qmake in src/plugins/platforms * Running qt5_qmake in src/plugins/platforminputcontexts >>> Source configured. >>> Compiling source in /var/tmp/portage/dev-qt/qtgui-5.9.4-r3/work/qtbase-opensource-src-5.9.4 ... * Running emake in src/gui make -j2 perl /var/tmp/portage/dev-qt/qtgui-5.9.4-r3/work/qtbase-opensource-src-5.9.4/mkspecs/features/data/unix/findclasslist.pl < QtGui.version.in > QtGui.version x86_64-pc-linux-gnu-g++ -c -O2 -mtune=btver1 -march=btver1 -mfpmath=sse -O2 -pipe -mpopcnt -mmmx -msse -msse2 -msse3 -mssse3 -msse4a -std=c++1z -fvisibility=hidden -fvisibility-inlines-hidden -fno-exceptions -Wall -W -Wvla -Wdate-time -Wshift-overflow=2 -Wduplicated-cond -D_REENTRANT -fPIC -DQT_NO_USING_NAMESPACE -DQT_NO_FOREACH -DENABLE_PIXMAN_DRAWHELPERS -DQT_NO_NARROWING_CONVERSIONS_IN_CONNECT -DQT_BUILD_GUI_LIB -DQT_BUILDING_QT -DQT_NO_CAST_TO_ASCII -DQT_ASCII_CAST_WARNINGS -DQT_MOC_COMPAT -DQT_USE_QSTRINGBUILDER -DQT_DEPRECATED_WARNINGS -DQT_DISABLE_DEPRECATED_BEFORE=0x050000 -DQT_NO_EXCEPTIONS -D_LARGEFILE64_SOURCE -D_LARGEFILE_SOURCE -DQT_NO_DEBUG -DQT_CORE_LIB -msse4.1 -I. -I../../include -I../../include/QtGui -I../../include/QtGui/5.9.4 -I../../include/QtGui/5.9.4/QtGui -isystem /usr/include/libdrm -isystem /usr/include -isystem /usr/include/qt5/QtCore/5.9.4 -isystem /usr/include/qt5/QtCore/5.9.4/QtCore -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -I.moc -isystem /usr/include/libpng16 -I../../mkspecs/linux-g++ image/qimage_sse4.cpp -o .obj/qimage_sse4.o In file included from /usr/lib/gcc/x86_64-pc-linux-gnu/6.4.0/include/g++-v6/bits/stl_algo.h:59:0, from /usr/lib/gcc/x86_64-pc-linux-gnu/6.4.0/include/g++-v6/algorithm:62, from ../../include/QtCore/../../src/corelib/global/qglobal.h:109, from ../../include/QtCore/qglobal.h:1, from ../../include/QtGui/../../src/gui/kernel/qtguiglobal.h:43, from ../../include/QtGui/qtguiglobal.h:1, from ../../include/QtGui/../../src/gui/image/qimage.h:43, from ../../include/QtGui/qimage.h:1, from image/qimage_sse4.cpp:40: /usr/lib/gcc/x86_64-pc-linux-gnu/6.4.0/include/g++-v6/cstdlib:75:25: fatal error: stdlib.h: No such file or directory #include_next <stdlib.h> ^ compilation terminated. make: *** [Makefile:1845: .obj/qimage_sse4.o] Error 1 make: *** Waiting for unfinished jobs.... * ERROR: dev-qt/qtgui-5.9.4-r3::gentoo failed (compile phase): * emake failed * * If you need support, post the output of `emerge --info '=dev-qt/qtgui-5.9.4-r3::gentoo'`, * the complete build log and the output of `emerge -pqv '=dev-qt/qtgui-5.9.4-r3::gentoo'`. * The complete build log is located at '/var/tmp/portage/dev-qt/qtgui-5.9.4-r3/temp/build.log'. * The ebuild environment file is located at '/var/tmp/portage/dev-qt/qtgui-5.9.4-r3/temp/environment'. * Working directory: '/var/tmp/portage/dev-qt/qtgui-5.9.4-r3/work/qtbase-opensource-src-5.9.4/src/gui' * S: '/var/tmp/portage/dev-qt/qtgui-5.9.4-r3/work/qtbase-opensource-src-5.9.4' >>> Failed to emerge dev-qt/qtgui-5.9.4-r3, Log file: >>> '/var/tmp/portage/dev-qt/qtgui-5.9.4-r3/temp/build.log' I'm quite confused why this is just failing like this and why it seemed to work in similar conditions elsewhere. Or maybe there is something else in the chain that needs updating - but that isn't automagically pulled in by portage in front of qtgui? (equery depgraph lists a bunch of libs, but not too many) output from emerge --info '=dev-qt/qtgui-5.9.4-r3::gentoo' Code: Portage 2.3.24 (python 3.4.5-final-0, default/linux/amd64/17.0/desktop/plasma, gcc-6.4.0, glibc-2.25-r11, 4.15.12-gentoo-4-default x86_64) ================================================================= System Settings ================================================================= System uname: Linux-4.15.12-gentoo-4-default-x86_64-AMD_FX-tm-6300_Six-Core_Processor-with-gentoo-2.4.1 KiB Swap: 271356 total, 271356 free Timestamp of repository gentoo: Wed, 04 Apr 2018 08:00:01 +0000 Head commit of repository gentoo: 6c81a3f14aa41558c51f48dc4907bd6015b604f7 sh bash 4.4_p12 ld GNU ld (Gentoo 2.29.1 p3) 2.29.1 ccache version 3.2.4 [disabled] 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.14-r1::gentoo, 3.4.5-r1::gentoo, 3.5.4-r1::gentoo, 3.6.3-r1::gentoo dev-util/ccache: 3.2.4::gentoo dev-util/cmake: 3.9.6::gentoo dev-util/pkgconfig: 0.29.2::gentoo sys-apps/baselayout: 2.4.1-r2::gentoo sys-apps/openrc: 0.34.11::gentoo sys-apps/sandbox: 2.13::gentoo sys-devel/autoconf: 2.13::gentoo, 2.69-r4::gentoo sys-devel/automake: 1.11.6-r3::gentoo, 1.13.4-r2::gentoo, 1.14.1-r2::gentoo, 1.15.1-r2::gentoo sys-devel/binutils: 2.29.1-r1::gentoo sys-devel/gcc: 6.4.0-r1::gentoo sys-devel/gcc-config: 1.8-r1::gentoo sys-devel/libtool: 2.4.6-r3::gentoo sys-devel/make: 4.2.1::gentoo sys-kernel/linux-headers: 4.15::gentoo (virtual/os-headers) sys-libs/glibc: 2.25-r11::gentoo Repositories: gentoo location: /usr/portage sync-type: rsync sync-uri: rsync://rsync.gentoo.org/gentoo-portage priority: -1000 sync-rsync-verify-metamanifest: no sync-rsync-extra-opts: ACCEPT_KEYWORDS="amd64" ACCEPT_LICENSE="* -@EULA" CBUILD="x86_64-pc-linux-gnu" CFLAGS="-O2 -mtune=btver1 -march=btver1 -mfpmath=sse -O2 -pipe -mpopcnt -mmmx -msse -msse2 -msse3 -mssse3 -msse4a" CHOST="x86_64-pc-linux-gnu" CONFIG_PROTECT="/etc /usr/share/config /usr/share/gnupg/qualified.txt /usr/share/themes/oxygen-gtk/gtk-2.0" 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="-O2 -mtune=btver1 -march=btver1 -mfpmath=sse -O2 -pipe -mpopcnt -mmmx -msse -msse2 -msse3 -mssse3 -msse4a" DISTDIR="/usr/portage/distfiles" EMERGE_DEFAULT_OPTS="--autounmask=n --verbose-conflicts --keep-going" FCFLAGS="-O2 -pipe" FEATURES="assume-digests binpkg-logs config-protect-if-modified distlocks ebuild-locks fixlafiles merge-sync multilib-strict news parallel-fetch preserve-libs protect-owned sandbox sfperms strict unknown-features-warn unmerge-logs unmerge-orphans userfetch userpriv usersandbox usersync xattr" FFLAGS="-O2 -pipe" LANG="en_US.utf8" LDFLAGS="-Wl,-O1 -Wl,--as-needed" LINGUAS="en de en_GB" MAKEOPTS="-j2" 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 aalib acl acpi alsa amd64 apng bash-completion berkdb bluetooth branding bzip2 cairo cdda cdr cli crypt cups cxx dbus declarative dri dts dvd dvdr emboss emf encode exif fam fdformat flac fortran gdbm gif glamor gnutls gpm gtk iconv id3tag idn ipv6 jpeg jpeg2k kipi ladspa lcms ldap libcaca libnotify libsamplerate lm_sensors lzma mad mikmod mng modplug modules mp3 mp4 mpeg multilib ncurses nls nptl offlinehelp ogg opengl openmp openvg pam pango pdf phonon plasma png policykit ppds pulseaudio qml qt3support qt5 readline sdl seccomp secure-delete semantic-desktop smp spell ssl startup-notification svg system-cairo system-icu system-jpeg system-sqlite tcpd theora tiff timidity truetype udev udisks unicode upower usb vdpau vorbis widgets wmf wxwidgets x264 x265 xattr xcb xcomposite xml xv xvid zlib" ABI_X86="64 32" ALSA_CARDS="intel-hda" 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="braindump flow karbon krita words stage sheets" CAMERAS="*" COLLECTD_PLUGINS="df interface irq load memory rrdtool swap syslog" CPU_FLAGS_X86="mmx mmxext popcnt sse sse2 sse3 ssse3 sse4a" ELIBC="glibc" GPSD_PROTOCOLS="*" INPUT_DEVICES="keyboard mouse evdev joystick synaptics wacom v4l roccat_kone roccat_koneplus roccat_konextd roccat_konextdoptical" KERNEL="linux" L10N="en-US en-GB de-DE" LCD_DEVICES="bayrad cfontz cfontz633 glk hd44780 lb216 lcdm001 mtxorb ncurses text" LIBREOFFICE_EXTENSIONS="presenter-console presenter-minimizer pdfimport" LIRC_DEVICES="*" LLVM_TARGETS="AMDGPU BPF X86" OFFICE_IMPLEMENTATION="libreoffice" PHP_TARGETS="php5-3 php5-2" POSTGRES_TARGETS="postgres9_5" PYTHON_SINGLE_TARGET="python3_4" PYTHON_TARGETS="python2_7 python3_4 python3_6" QEMU_USER_TARGETS="arm armeb m68k mips mipsel ppc ppc64 ppc64abi32 i386 x86_64" RUBY_TARGETS="ruby22 ruby23" SANE_BACKENDS="*" USERLAND="GNU" VIDEO_CARDS="r600 radeon vesa" 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_BUNZIP2_COMMAND, PORTAGE_COMPRESS, PORTAGE_COMPRESS_FLAGS, PORTAGE_RSYNC_EXTRA_OPTS and eventually emerge -pqv '=dev-qt/qtgui-5.9.4-r3::gentoo' Code: [ebuild N ] dev-qt/qtgui-5.9.4-r3 USE="dbus egl evdev gif jpeg libinput png udev xcb -accessibility -debug -eglfs (-gles2) -ibus {-test} -tslib -tuio -vnc" Does anyone have a hint? (I did not yet try to remerge gcc-6.4.0-r1, in case something broke there (why should it?), as equery belongs stdlib.h lists it also as part of gcc and the error seemed to relate to it. I might also try gcc-7.3.0 but why did it work on all other machines yet?)
GCC is not the reason, please don't make random downgrades. What version of meson do you all have installed. Make sure it is *not* meson-0.43.0, that version produced broken pkgconfig files. Then, rebuild x11-base/xorg-proto. Then, rebuild libxshmfence (I don't know if that was also involved, but probably not). Then try again with qtgui.
Hello, all. I'm reinstalling my Gentoo box after a year or so, and mate-applets is choking on the cpufreq bug no matter what I try. I'm on gentoo-sources 4.19.104 and ~amd64. I've applied the patch here, with no luck. https://www.gentoofan.org/gentoo/misc/gst/gstreamer-1.16.2-make43.patch As a side note, it seems like the Mate packages in portage are really, really stale. Building it has been a mess with workarounds, masks, and patches at every turn because the base system is so far ahead of the desktop packages. make-4.3 breaks a whole bunch of gstreamer stuff, and apparently mate-applets has problems with quite a few kernels from what I can tell. Anybody know when the upstream might get merged into portage?
Linx_ wrote: What overlay is that? I tried mate-de-gentoo, but I just got a package block on gdbus-codeblocks and glib that I couldn't resolve. I tried now mate-de-gentoo and emerge --ask --changed-use mate-base/mate return no blocker, you can post exact emerge output?
Hello. I have a problem very strange. The problem is that i can't open txt files from desktop in gnome 3. When I try open txt files in journalctl -f shows file in plain text: Code: feb 03 07:51:22 localhost.localdomain org.gnome.Shell.desktop[39574]: /home/zapa/Desktop/leases2.txt: línea 35: 10.10.10.7:2A:A8:6A:BB:F3,JASON: no se encontró la orden feb 03 07:51:22 localhost.localdomain org.gnome.Shell.desktop[39575]: /home/zapa/Desktop/leases2.txt: línea 36: 10.10.10.6,F0:9F:C2:4A:BB:F4,PETER: no se encontró la orden When I try open for example open png files located in my desktop, journalctlf -f shows this: Code: feb 04 07:31:38 localhost.localdomain org.gnome.Shell.desktop[3739]: [795B blob data] feb 04 07:31:39 localhost.localdomain org.gnome.Shell.desktop[3745]: /home/zapa/Escritorio/blank.png: línea 1: $'\211PNG\r': no se encontró la orden feb 04 07:31:39 localhost.localdomain org.gnome.Shell.desktop[3746]: /home/zapa/Escritorio/blank.png: línea 2: $'\032': no se encontró la orden feb 04 07:31:39 localhost.localdomain org.gnome.Shell.desktop[3743]: /home/zapa/Escritorio/blank.png: línea 3: error sintáctico cerca del elemento inesperado `(' This files should be opened with gedit but gedit is not executed for gnome. If i open a folder and execute this file from nautilus i can see the file without problem.p When I can open text files from desktop without problem, journalctlf -f shows this: Code: feb 03 08:02:49 localhost.localdomain /usr/libexec/gdm-x-session[2799]: dbus-daemon[2799]: [session uid=1000 pid=2799] Activating service name='org.gnome.gedit' requested by ':1.17' (uid=1000 pid=2859 comm="/usr/bin/gnome-shell " label="kernel") feb 03 08:02:49 localhost.localdomain /usr/libexec/gdm-x-session[2799]: dbus-daemon[2799]: [session uid=1000 pid=2799] Successfully activated service 'org.gnome.gedit' feb 03 08:02: Thanks.
I've fixed the problem. With chmod 644 in my Desktop folder: Code: chmod 644 * all my files were copied without maintaining attributes with cp in my old computer. Problem solved!
My apologies if this is another version of the same question I asked in a different post; the computers and issues feel different to me. I would like to have my laptop use the Nvidia drivers for opengl. I have used eselect to set the opengl to nvidia. However, if I run glxinfo by itself it doesn't work Code: ~ $ glxinfo name of display: :0.0 Error: couldn't find RGB GLX visual or fbconfig if I use optirun I get what I want, indicating that it's using NVIDIA as well; Code: ~ $ optirun glxinfo name of display: :0.0 display: :0 screen: 0 direct rendering: Yes server glx vendor string: VirtualGL . . . Currently available dedicated video memory: 4027 MB OpenGL vendor string: NVIDIA Corporation OpenGL renderer string: Quadro P600/PCIe/SSE2 OpenGL core profile version string: 4.6.0 NVIDIA 440.44 OpenGL core profile shading language version string: 4.60 NVIDIA OpenGL core profile context flags: (none) . . . How can I make nvidia be the default for this? I tried copying the xorg.conf from another machine that has this behavior but X would start; the relevant lines of the config file seem to be: Quote: [ 72.031] (II) NVIDIA GLX Module 440.44 Sun Dec 8 03:36:07 UTC 2019 [ 72.031] (II) NVIDIA: The X server supports PRIME Render Offload. [ 73.412] (--) NVIDIA(0): Valid display device(s) on GPU-0 at PCI:1:0:0 [ 73.412] (--) NVIDIA(0): DFP-0 [ 73.412] (--) NVIDIA(0): DFP-1 . . .[ 73.413] (II) NVIDIA(0): NVIDIA GPU Quadro P600 (GP107GL-A) at PCI:1:0:0 (GPU-0) [ 73.413] (--) NVIDIA(0): Memory: 4194304 kBytes [ 73.413] (--) NVIDIA(0): VideoBIOS: 86.07.6a.00.04 [ 73.413] (II) NVIDIA(0): Detected PCI Express Link width: 16X [ 73.413] (--) NVIDIA(GPU-0): DFP-0: disconnected [ 73.413] (--) NVIDIA(GPU-0): DFP-0: Internal DisplayPort [ 73.413] (--) NVIDIA(GPU-0): DFP-0: 1440.0 MHz maximum pixel clock [ 73.413] (--) NVIDIA(GPU-0): [ 73.436] (--) NVIDIA(GPU-0): DFP-1: disconnected [ 73.436] (--) NVIDIA(GPU-0): DFP-1: Internal TMDS [ 73.436] (--) NVIDIA(GPU-0): DFP-1: 165.0 MHz maximum pixel clock [ 73.436] (--) NVIDIA(GPU-0): . . . [ 73.549] (--) NVIDIA(GPU-0): [ 73.549] (EE) NVIDIA(0): Failed to assign any connected display devices to X screen 0. [ 73.549] (EE) NVIDIA(0): Set AllowEmptyInitialConfiguration if you want the server [ 73.549] (EE) NVIDIA(0): to start anyway [ 73.549] (EE) NVIDIA(0): Failing initialization of X screen Any ideas what's going on here? UPDATE: It seems vulkan isn't working either: Code: ~ $ vulkaninfo /var/tmp/portage/dev-util/vulkan-tools-1.1.124/work/Vulkan-Tools-119e7c3bbae122f6cc5d778d068fb91e0e85d6a9/vulkaninfo/vulkaninfo.h:393: failed with ERROR_INITIALIZATION_FAILED The machine has a Quadro P600 which, as noted above, seems to work fine with bumblebee
O.k., I got this working by following the directions at https://wiki.gentoo.org/wiki/NVIDIA/Optimus
Hello, I have checked the kernel support Code: Device Drivers ---> Graphics support ---> <*> /dev/agpgart (AGP Support) ---> <*> SiS chipset support , have changed the file /etc/portage/make.conf Code: .. VIDEO_CARDS="sis" .. ,but when I execute the code Code: emerge --pretend --verbose x11-base/xorg-drivers I get the result without sis drivers Code: These are the packages that would be merged, in order: Calculating dependencies ... done! [ebuild R ] x11-base/xorg-drivers-1.20-r1::gentoo INPUT_DEVICES="keyboard libinput mouse -elographics -evdev -joystick -synaptics -vmmouse -void -wacom" VIDEO_CARDS="-amdgpu -ast -dummy -fbdev (-freedreno) (-geode) -glint -i915 -i965 -intel -mga -nouveau -nv -nvidia (-omap) -qxl -r128 -radeon -radeonsi -siliconmotion (-tegra) (-vc4) -vesa -via -virtualbox -vmware" 0 KiB Total: 1 package (1 reinstall), Size of downloads: 0 KiB Please explain to me how to achieve a resolution of 1366x768?
iurii, The simple answer is that the sis driver you need is no longer in the portage tree. I suspect that means that Xorg is using the modesetting driver, so you need to configure Xorg if its not using the native resolution for your display. The more complex answer, not tested, is that you need the xf86-video-sis671 ebuild in your local overlay. Then Code: emerge xf86-video-sis671 to try to install it.
Recently x11vnc stopped accepting shift, meaning I could get 'a' but not 'A', also '!' was now '1'. Using vnc from both another gentoo install (tigervnc) and on android had the same result. Strangely enough control still works so I can control-c out of stuff. The command is Code: x11vnc -nonc -noxrecord -noxdamage -noxinerama -display WAIT:0 -forever -loop -nobell -nocursor -passwd password -q -rfbport 5900 and I have toggled pretty much every command with no change. The one thing that did change recently is I moved to GGC8 and recompiled everything for good measure. There was also a sizeable python update recently too. Toggling -modtweak and -xkb also have no affect.
The new ebuild x11vnc-0.9.16-r1.ebuild added --without-xkeyboard to the econf, removing that and recompiling fixed it.
I've run into a snag. Every time I boot into xfce4 when I log in I'm presented with a box to start panel. I've tried cleaning out sessions and another directory but the problem persists. After I execute another box comes up to tell me I'm in kiosk mode and to save before I log out. I've searched and it's not clear just how and what steps I must take. Any suggestions would be appreciated. TIA
Hello A.S. Pushkin. Did you check or have a Code: /etc/xdg/xfce4/kiosk/kioskrc file? Any more info can be found here, if you did not already find them: https://wiki.xfce.org/howto/kiosk_mode
Hello all. I'm having a problem that, my X is always at 100% CPU utilization and the load average is always high . This slows down my system, and I don't know what could it be... Here's a screenshot of top: https://i.imgur.com/Dta0Ck5.png And my emerge --info Code: nightcrawler ~ # emerge --info Unavailable repository 'raiagent' referenced by masters entry in '/var/lib/layman/waebbl/metadata/layout.conf' Portage 2.3.79 (python 3.6.9-final-0, default/linux/amd64/17.1/desktop, gcc-9.2.0, glibc-2.29-r7, 4.19.86-gentoo x86_64) ================================================================= System uname: Linux-4.19.86-gentoo-x86_64-Intel-R-_Core-TM-_i7-3610QM_CPU_@_2.30GHz-with-gentoo-2.6 KiB Mem: 12177052 total, 7668620 free KiB Swap: 6291452 total, 6291452 free Timestamp of repository gentoo: Sat, 18 Jan 2020 15:30:01 +0000 Head commit of repository gentoo: 7bcff1e2634f9774186dae797302c58df8a35443 Head commit of repository sk-overlay: 1181a39d7c3f56c3dbb21454767b3f0517d813f3 sh bash 4.4_p23-r1 ld GNU ld (Gentoo 2.32 p2) 2.32.0 app-shells/bash: 4.4_p23-r1::gentoo dev-java/java-config: 2.2.0-r4::gentoo dev-lang/perl: 5.30.1::gentoo dev-lang/python: 2.7.17::gentoo, 3.6.9::gentoo dev-util/cmake: 3.14.6::gentoo sys-apps/baselayout: 2.6-r1::gentoo sys-apps/openrc: 0.42.1::gentoo sys-apps/sandbox: 2.13::gentoo sys-devel/autoconf: 2.13-r1::gentoo, 2.69-r4::gentoo sys-devel/automake: 1.16.1-r1::gentoo sys-devel/binutils: 2.32-r1::gentoo sys-devel/gcc: 9.2.0-r2::gentoo sys-devel/gcc-config: 2.1::gentoo sys-devel/libtool: 2.4.6-r3::gentoo sys-devel/make: 4.2.1-r4::gentoo sys-kernel/linux-headers: 4.19::gentoo (virtual/os-headers) sys-libs/glibc: 2.29-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-max-age: 24 sync-rsync-verify-metamanifest: yes sync-rsync-extra-opts: localrepo location: /var/db/repos/localrepo masters: gentoo sk-overlay location: /usr/local/overlay/sk-overlay sync-type: git sync-uri: https://c.darenet.org/scriptkitties/overlay.git masters: gentoo crossdev location: /usr/local/portage-crossdev masters: gentoo priority: 10 dotnet location: /var/lib/layman/dotnet sync-type: laymansync sync-uri: https://github.com/gentoo/dotnet.git masters: gentoo priority: 50 jorgicio location: /var/lib/layman/jorgicio sync-type: laymansync sync-uri: https://github.com/jorgicio/jorgicio-gentoo.git masters: gentoo priority: 50 sabayon-distro location: /var/lib/layman/sabayon-distro sync-type: laymansync sync-uri: git://github.com/Sabayon/sabayon-distro.git masters: gentoo priority: 50 steam-overlay location: /var/lib/layman/steam-overlay sync-type: laymansync sync-uri: https://github.com/anyc/steam-overlay.git masters: gentoo priority: 50 waebbl location: /var/lib/layman/waebbl sync-type: laymansync sync-uri: https://github.com/waebbl/waebbl-gentoo.git masters: gentoo priority: 50 ACCEPT_KEYWORDS="amd64" ACCEPT_LICENSE="@FREE" CBUILD="x86_64-pc-linux-gnu" CFLAGS="-O2 -pipe -march=ivybridge" CHOST="x86_64-pc-linux-gnu" CONFIG_PROTECT="/etc /usr/lib64/libreoffice/program/sofficerc /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.3/ext-active/ /etc/php/cgi-php7.3/ext-active/ /etc/php/cli-php7.3/ext-active/ /etc/revdep-rebuild /etc/sandbox.d /etc/terminfo" CXXFLAGS="-O2 -pipe -march=ivybridge" DISTDIR="/var/cache/distfiles" ENV_UNSET="DBUS_SESSION_BUS_ADDRESS DISPLAY GOBIN 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 -march=ivybridge" 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 sandbox sfperms strict unknown-features-warn unmerge-logs unmerge-orphans userfetch userpriv usersandbox usersync xattr" FFLAGS="-O2 -pipe -march=ivybridge" GENTOO_MIRRORS="https://ftp.rnl.tecnico.ulisboa.pt/pub/gentoo/gentoo-distfiles/ http://ftp.rnl.tecnico.ulisboa.pt/pub/gentoo/gentoo-distfiles/ http://ftp.dei.uc.pt/pub/linux/gentoo/" LANG="en_US.utf8" 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="X a52 aac acl acpi aes alsa amd64 apm avx bash-completion berkdb bluetooth branding bzip2 cairo cdda cdparanoia cdr cli consolekit crypt cups cxx dbus dri dri3 dts dvd dvdr emboss encode exif f16c fbcon ffmpeg flac fortran fuse gd gdbm gif gmp gpm gtk gtk3 iconv icu imagemagick inotify ipv6 jpeg lame lcms ldap libnotify libtirpc lm_sensors lzma lzo mad matroska mmx mmxext mng mp3 mp4 mpeg mplayer mtp multilib ncurses networkmanager nls nptl nsplugin offensive ogg opengl openmp pam pango pclmul pcre pdf php png policykit popcnt ppds pulseaudio python readline samba sdl seccomp smp sound spell split-usr sse sse2 sse3 sse4_1 sse4_2 ssl ssse3 startup-notification svg syslog tcpd threads tiff truetype udev udisks unicode upnp upnp-av upower usb vaapi vdpau vim-syntax vorbis wifi wxwidgets x264 xattr xcb xcomposite xine xinerama xml xscreensaver xv xvid 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="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="pc" INPUT_DEVICES="libinput synaptics" KERNEL="linux" L10N="en-US pt-PT" LCD_DEVICES="bayrad cfontz cfontz633 glk hd44780 lb216 lcdm001 mtxorb ncurses text" LIBREOFFICE_EXTENSIONS="presenter-console presenter-minimizer" NETBEANS_MODULES="apisupport cnd groovy gsf harness ide identity j2ee java mobility nb php profiler soa visualweb webcommon websvccommon xml" OFFICE_IMPLEMENTATION="libreoffice" PHP_TARGETS="php7-2" POSTGRES_TARGETS="postgres10 postgres11" PYTHON_SINGLE_TARGET="python3_6" PYTHON_TARGETS="python2_7 python3_6" RUBY_TARGETS="ruby24 ruby25" 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, EMERGE_DEFAULT_OPTS, INSTALL_MASK, LC_ALL, LINGUAS, PORTAGE_BINHOST, PORTAGE_BUNZIP2_COMMAND, PORTAGE_COMPRESS, PORTAGE_COMPRESS_FLAGS, PORTAGE_RSYNC_EXTRA_OPTS what could it be ? Thank you
feiticeir0, Please put /var/log/Xorg.0.log onto a pastebin site. That will tell us what Xorg did at startup. What does Code: glxinfo | head -n6 tell ?
Hello, I am having trouble running the Unreal Game Engine (4.22) on two different Gentoo boxes. I'll describe the issue on one box here and the other in a separate post. Basically that problems seems to be that the opengl version doesn't seem apporpriate for the graphics card? The box has an GTX 1080Ti in it. It's running on the "nvidia" opengl (as determined by eselect). The beginning of glxinfo seems to indicate it only has version 1.4 support though? Code: ~ $ glxinfo name of display: localhost:12.0 display: localhost:12 screen: 0 direct rendering: Yes server glx vendor string: SGI server glx version string: 1.4 server glx extensions: GLX_ARB_context_flush_control, GLX_ARB_create_context, GLX_ARB_create_context_no_error, GLX_ARB_create_context_profile, GLX_ARB_fbconfig_float, GLX_ARB_framebuffer_sRGB, GLX_ARB_multisample, GLX_EXT_create_context_es2_profile, GLX_EXT_create_context_es_profile, GLX_EXT_fbconfig_packed_float, GLX_EXT_framebuffer_sRGB, GLX_EXT_import_context, GLX_EXT_libglvnd, GLX_EXT_no_config_context, GLX_EXT_texture_from_pixmap, GLX_EXT_visual_info, GLX_EXT_visual_rating, GLX_MESA_copy_sub_buffer, GLX_OML_swap_method, GLX_SGIS_multisample, GLX_SGIX_fbconfig, GLX_SGIX_pbuffer, GLX_SGIX_visual_select_group, GLX_SGI_make_current_read client glx vendor string: Mesa Project and SGI client glx version string: 1.4 client glx extensions: I'm running a newer version of the nvidia-drivers: Hello, I am having trouble running the Unreal Game Engine (4.22) on two different Gentoo boxes. I'll describe the issue on one box here and the other in a separate post. Basically that problems seems to be that the opengl version doesn't seem apporpriate for the graphics card? The box has an GTX 1080Ti in it. It's running on the "nvidia" opengl (as determined by eselect). The beginning of glxinfo seems to indicate it only has version 1.4 support though? Code: ~ $ glxinfo name of display: localhost:12.0 display: localhost:12 screen: 0 direct rendering: Yes server glx vendor string: SGI server glx version string: 1.4 server glx extensions: GLX_ARB_context_flush_control, GLX_ARB_create_context, GLX_ARB_create_context_no_error, GLX_ARB_create_context_profile, GLX_ARB_fbconfig_float, GLX_ARB_framebuffer_sRGB, GLX_ARB_multisample, GLX_EXT_create_context_es2_profile, GLX_EXT_create_context_es_profile, GLX_EXT_fbconfig_packed_float, GLX_EXT_framebuffer_sRGB, GLX_EXT_import_context, GLX_EXT_libglvnd, GLX_EXT_no_config_context, GLX_EXT_texture_from_pixmap, GLX_EXT_visual_info, GLX_EXT_visual_rating, GLX_MESA_copy_sub_buffer, GLX_OML_swap_method, GLX_SGIS_multisample, GLX_SGIX_fbconfig, GLX_SGIX_pbuffer, GLX_SGIX_visual_select_group, GLX_SGI_make_current_read client glx vendor string: Mesa Project and SGI client glx version string: 1.4 client glx extensions: I'm running a newer version of the nvidia-drivers: 440.36-r1(0/440)^mtd(09:19:41 AM 12/06/2019) I can compile the Unreal Engine Editor but when I try to start it says I don't have GL version 4, and when I try to run with -opengl3 it says my card isn't Level5, that I have FeatureLevel=SM4 and ShaderPlatform=GLSL_150 I'm sure I'm missing something stupid here -- can anyone point me in the right direction?
Which program(s) are you running over ssh? Are you connecting them to the local X server or to the ssh X11 forwarding service?
Hello, I've been using TigerVNC server in my Gentoo(kde plasma) for a few months where i usually connect to it from my laptop Arch(gnome). I also use tigervnc as client to connect. Yesterday i did an update and upgrade on my Gentoo, basically: # emerge --sync # emerge --update --deep --with-bdeps y @world Today as usually, i connect to display 1 and i have a black screen. /etc/conf.d/tigervnc: Code: occlus@Gentoo-PC ~/.vnc $ cat /etc/conf.d/tigervnc # Config file for /etc/init.d/tigervnc # Specify the user(s) Xvnc(1) should be run for. The syntax is: "username:display". # example: "DISPLAYS="foo:1 bar:2" You can specify more users separated by space. # DISPLAYS="myuser:1" # Specify any of vncserver(1) and Xvnc(1) options. See the respective man pages for more information. # VNC_OPTS="" DISPLAYS="occlus:1" /.vnc/xstartup: Code: #!/bin/sh unset SESSION_MANAGER unset DBUS_SESSION_BUS_ADDRESS #exec /etc/X11/xinit/xinitrc startkde & /.vnc/display log: Code: Xvnc TigerVNC 1.9.0 - built Jan 13 2020 23:54:05 Copyright (C) 1999-2018 TigerVNC Team and many others (see README.rst) See http://www.tigervnc.org for information on TigerVNC. Underlying X server release 12000000, The X.Org Foundation Tue Jan 14 18:38:26 2020 vncext: VNC extension running! vncext: Listening for VNC connections on all interface(s), port 5901 vncext: created VNC server for screen 0 The XKEYBOARD keymap compiler (xkbcomp) reports: > Warning: Unsupported high keycode 372 for name <I372> ignored > X11 cannot support keycodes above 255. > This warning only shows for the first high keycode. Errors from xkbcomp are not fatal to the X server /home/occlus/.vnc/xstartup: line 7: startkde: command not found Tue Jan 14 18:38:35 2020 Connections: accepted: 192.168.1.30::38696 SConnection: Client needs protocol version 3.8 SConnection: Client requests security type VeNCrypt(19) Tue Jan 14 18:38:36 2020 SVeNCrypt: Client requests security type TLSVnc (258) Tue Jan 14 18:38:46 2020 VNCSConnST: Server default pixel format depth 24 (32bpp) little-endian rgb888 Tue Jan 14 18:38:58 2020 Connections: closed: 192.168.1.30::38696 (Clean disconnection) EncodeManager: Framebuffer updates: 3 EncodeManager: Tight: EncodeManager: Solid: 2 rects, 1.57286 Mpixels EncodeManager: 32 B (1:196609 ratio) EncodeManager: Total: 2 rects, 1.57286 Mpixels EncodeManager: 32 B (1:196609 ratio) TLS: TLS session wasn't terminated gracefully ComparingUpdateTracker: 0 pixels in / 0 pixels out ComparingUpdateTracker: (1:-nan ratio) If you need more logs, please let me know. Kind regards,
C666PO wrote: /.vnc/xstartup: Code: #!/bin/sh startkde & Shouldn't that be exec program instead of program & ? C666PO wrote: /.vnc/display log: Code: /home/occlus/.vnc/xstartup: line 7: startkde: command not found You should run a program that exists. I recall another thread here recently that concluded that the command startkde had been renamed to something else, along with the project's rebranding itself as "Plasma."
[Solved] Hello, I can not get my kde desktop to work after updating to kde-plasma/*-5.17.4. I have been having this issue before but I thought that is was because I was not getting all the packages for that version to all install properly. After rebooting my system I am getting this error after running startx: Code: The XKEYBOARD keymap compiler (xkbcomp) reports: > Warning: Unsupported high keycodes 372 for name <I372> ignored > X11 cannot support keycodes above 255. > This warning only shows for the first high keycode. Errors from xkbcomp are not fatal to the X server Couldn't exec startkde: No such file or directory xinit: connection to X sever lost I have this in my .xinitrc file: Code: exec ck-launch-session dbus-launch --sh-syntax --exit-with-session startkde Which had been working fine before I upgraded. I really would appreciate the help. Thank you
The keyboard stuff is harmless and can be ignored, it's just antiquated design at work. I don't use kde but the real error is that it's not finding st r artkde, but if that's really your current .xinitrc and it's being used I guess it's not a typo? (which one is wrong? did you type the error message by hand?) Do make sure the file exist though, if something changed someone who use KDE will probably know better :) Edit: I see you edited back the strartkde typo, well I hope that wasn't actually the problem
I'm trying to set up picom to provide for some desktop effects, however I can't seem to find any documentation and its manual page isn't of much help. Can anybody help out in this regard?
You tried with documentation in arch wiki ?
Today, as I do everyday, I ran my normal sync and update @world Code: eix-sync && emerge -uDN @world I didn't actually look carefully at the list of packages getting updated, but think most were from kde-plasma. I think the new version is 5.17.4. Later I reboot after dealing with the new genkernel version. Typically, after a reboot, I logon to my userid and run the command "startx". This uses my ~/.xinitrc which finally executes /usr/bin/startkde. Today, however, /usr/bin/startkde is gone!!! Unfortuanely, I don't know which package provides that file and equery b startkde doesn't find it. Can anyone run using startx for kde please run Code: equery b startkde and let me know what package provides that file/command?
startkde is renamed in startplasma-x11 and startplasma-wayland
Hello, I installed and configured TigerVNC server of my Gentoo Machine. It works fine but the issue i'm having is that i need to connect to the main display of the machine and until now i was only able to connect to virtual displays. Despite the lack of documentation available online, i was able to gather something about x0vncserver: https://tigervnc.org/doc/x0vncserver.html Apparently it comes with tigerVNC by default but i am unable to use this. What i did so far: Code: occlus@Gentoo-PC ~ $ x0vncserver -display :0 Mon Dec 9 18:23:49 2019 Geometry: Desktop geometry is set to 1024x768+0+0 XDesktop: Using evdev codemap XDesktop: XTest extension present - version 2.2 Main: failed to bind socket: Address already in use (98) Something is already in use i don't even know what exactly. In "/etc/conf.d/tigervnc" i have DISPLAY="my-username:1" This is the virtual display that i usually connect to and i changed the value of 1 to 0 with the hope to recognize that 0 was the main display but it makes the value 0 just another virtual display. It makes no difference at all. I'm stuck at this and i don't know how to proceed. Any advise would be deeply appreciated. Kind regards,
Are you sure this is the solution you want? Every time I've looked at this, I've hit a problem that is for me an unacceptable limitation: the VNC viewer sees a copy of whatever is on the X11 display's screen, so if I lock the console, the viewer sees only the lock dialog. If the viewer unlocks the system remotely, the console unlocks too, and anyone standing near the console's monitor can watch or interact with the system. As an alternative that avoids this, I use xpra. It runs a headless X server. You connect your X applications to it, rather than your real X server. You run an xpra viewer which renders the windows of the headless X server on your real X server. When you want to work remotely, then you lock the local X server, go to your remote system, and start an xpra viewer there. Your applications aren't even aware they are rendered elsewhere, because as far as they are concerned, they have been using the headless X server the whole time. Additionally, unlike VNC, every application window gets its own xpra-forwarded window, so you can intermix local X application windows with xpra-forwarded ones.
Error code Code: FontService unique font name matching request did not receive a response. [1050342:1:1027/192606.781618:ERROR:child_process_sandbox_support_impl_linux.cc(79)] FontService unique font name matching request did not receive a response. [1050342:7:1027/192613.394771:ERROR:broker_posix.cc(46)] Received unexpected number of handles [1050342:7:1027/192613.395138:FATAL:memory.cc(22)] Out of memory. size=262144 --2019-10-27 19:26:13-- https://clients2.google.com/cr/report Selvitetään osoitetta clients2.google.com... 2a00:1450:400f:808::200e, 216.58.211.142 Yhdistetään palvelimeen clients2.google.com|2a00:1450:400f:808::200e|:443... yhdistetty. HTTP-pyyntö lähetetty, odotetaan vastausta... [1045943:1045947:1027/192614.140768:ERROR:broker_posix.cc(46)] Received unexpected number of handles 200 OK Pituus: määrittelemätön [text/plain] Tallennetaan kohteeseen ”/dev/fd/4” Crash dump id: 17ccbf25a9ce2d2d --2019-10-27 19:26:14-- https://clients2.google.com/cr/report Selvitetään osoitetta clients2.google.com... 2a00:1450:400f:808::200e, 216.58.211.142 Yhdistetään palvelimeen clients2.google.com|2a00:1450:400f:808::200e|:443... yhdistetty. HTTP-pyyntö lähetetty, odotetaan vastausta... 200 OK Pituus: määrittelemätön [text/plain] Tallennetaan kohteeseen ”/dev/fd/4” Crash dump id: 0Kd2a123233b49dff1 1,02M This error is from google-chrome-unstable so it isnt compiled here.. Code: boxi /etc/openvpn # cat /proc/meminfo MemTotal: 82323480 kB MemFree: 45051752 kB MemAvailable: 63164648 kB Buffers: 1579812 kB Cached: 18177752 kB SwapCached: 251556 kB Active: 20261480 kB Inactive: 14061160 kB Active(anon): 14528868 kB Inactive(anon): 1869388 kB Active(file): 5732612 kB Inactive(file): 12191772 kB Unevictable: 8804 kB Mlocked: 8804 kB SwapTotal: 51878904 kB SwapFree: 50719480 kB Dirty: 2392 kB Writeback: 0 kB AnonPages: 13547664 kB Mapped: 2221100 kB Shmem: 1827228 kB KReclaimable: 1414308 kB Slab: 1808524 kB SReclaimable: 1414308 kB SUnreclaim: 394216 kB KernelStack: 60544 kB PageTables: 182404 kB NFS_Unstable: 0 kB Bounce: 0 kB WritebackTmp: 0 kB CommitLimit: 93040644 kB Committed_AS: 46406340 kB VmallocTotal: 34359738367 kB VmallocUsed: 222780 kB VmallocChunk: 0 kB Percpu: 242784 kB AnonHugePages: 2123776 kB ShmemHugePages: 0 kB ShmemPmdMapped: 0 kB CmaTotal: 0 kB CmaFree: 0 kB DirectMap4k: 1511212 kB DirectMap2M: 50800640 kB DirectMap1G: 33554432 kB I have 80gb memory in this machine so memory is not the issue? Instaled browsers that chrash - google-chrome-unstable, beta and original, falkon and firefox.. Everything builds just fine.. What might be wrong?
What is the output of cat /proc/ PID /limits where PID is a browser process that later crashes?
A big hello to the Gentoo community! I am new to Gentoo coming from Debian, but I am still somewhat of a Linux noob. The installation went smoothly, and I am looking at a somewhat fresh install. I am trying to set up a desktop environment (MATE), but I am having trouble getting Xorg to start. I have scoured the internet looking for potential causes to my issues, but frankly I am stumped. I am getting a no screens error caused by the error "Screen 0 deleted because of no matching config section." X fails to start. Here is the log file: Code: [ 92.181] X.Org X Server 1.20.5 X Protocol Version 11, Revision 0 [ 92.181] Build Operating System: Linux 4.19.86-gentoo x86_64 Gentoo [ 92.181] Current Operating System: Linux levitiku5-pc 4.19.86-gentoo #1 SMP Thu Dec 19 01:17:41 MST 2019 x86_64 [ 92.181] Kernel command line: BOOT_IMAGE=/kernel-genkernel-x86_64-4.19.86-gentoo root=/dev/nvme0n1p7 ro [ 92.181] Build Date: 28 December 2019 10:59:02PM [ 92.181] [ 92.181] Current version of pixman: 0.38.4 [ 92.181] Before reporting problems, check http://wiki.x.org to make sure that you have the latest version. [ 92.181] Markers: (--) probed, (**) from config file, (==) default setting, (++) from command line, (!!) notice, (II) informational, (WW) warning, (EE) error, (NI) not implemented, (??) unknown. [ 92.181] (==) Log file: "/var/log/Xorg.0.log", Time: Sat Dec 28 23:15:47 2019 [ 92.182] (==) Using config file: "/etc/X11/xorg.conf" [ 92.182] (==) Using config directory: "/etc/X11/xorg.conf.d" [ 92.182] (==) Using system config directory "/usr/share/X11/xorg.conf.d" [ 92.183] (==) ServerLayout "X.org Configured" [ 92.183] (**) |-->Screen "Screen0" (0) [ 92.183] (**) | |-->Monitor "Monitor0" [ 92.183] (**) | |-->Device "Card0" [ 92.183] (**) |-->Screen "Screen1" (1) [ 92.183] (**) | |-->Monitor "Monitor1" [ 92.183] (**) | |-->Device "Card1" [ 92.183] (**) |-->Input Device "Mouse0" [ 92.183] (**) |-->Input Device "Keyboard0" [ 92.183] (==) Automatically adding devices [ 92.183] (==) Automatically enabling devices [ 92.183] (==) Automatically adding GPU devices [ 92.184] (==) Max clients allowed: 256, resource mask: 0x1fffff [ 92.184] (WW) The directory "/usr/share/fonts/misc/" does not exist. [ 92.184] Entry deleted from font path. [ 92.184] (WW) The directory "/usr/share/fonts/TTF/" does not exist. [ 92.184] Entry deleted from font path. [ 92.184] (WW) The directory "/usr/share/fonts/OTF/" does not exist. [ 92.184] Entry deleted from font path. [ 92.184] (WW) The directory "/usr/share/fonts/Type1/" does not exist. [ 92.184] Entry deleted from font path. [ 92.184] (WW) The directory "/usr/share/fonts/100dpi/" does not exist. [ 92.184] Entry deleted from font path. [ 92.184] (WW) The directory "/usr/share/fonts/75dpi/" does not exist. [ 92.184] Entry deleted from font path. [ 92.184] (WW) The directory "/usr/share/fonts/misc/" does not exist. [ 92.184] Entry deleted from font path. [ 92.184] (WW) The directory "/usr/share/fonts/TTF/" does not exist. [ 92.184] Entry deleted from font path. [ 92.184] (WW) The directory "/usr/share/fonts/OTF/" does not exist. [ 92.184] Entry deleted from font path. [ 92.184] (WW) The directory "/usr/share/fonts/Type1/" does not exist. [ 92.184] Entry deleted from font path. [ 92.184] (WW) The directory "/usr/share/fonts/100dpi/" does not exist. [ 92.184] Entry deleted from font path. [ 92.184] (WW) The directory "/usr/share/fonts/75dpi/" does not exist. [ 92.184] Entry deleted from font path. [ 92.184] (**) FontPath set to: [ 92.184] (**) ModulePath set to "/usr/lib64/xorg/modules" [ 92.184] (WW) Hotplugging is on, devices using drivers 'kbd', 'mouse' or 'vmmouse' will be disabled. [ 92.184] (WW) Disabling Mouse0 [ 92.184] (WW) Disabling Keyboard0 [ 92.184] (II) Loader magic: 0x55f963e3cc60 [ 92.184] (II) Module ABI versions: [ 92.184] X.Org ANSI C Emulation: 0.4 [ 92.184] X.Org Video Driver: 24.0 [ 92.184] X.Org XInput driver : 24.1 [ 92.184] X.Org Server Extension : 10.0 [ 92.187] (--) PCI:*(7@0:0:0) 1002:15d8:1043:876b rev 200, Mem @ 0xe0000000/268435456, 0xf0000000/2097152, 0xfca00000/524288, I/O @ 0x0000e000/256, BIOS @ 0x????????/131072 [ 92.187] (II) "glx" will be loaded. This was enabled by default and also specified in the config file. [ 92.187] (II) LoadModule: "glx" [ 92.188] (II) Loading /usr/lib64/xorg/modules/extensions/libglx.so [ 92.197] (II) Module glx: vendor="X.Org Foundation" [ 92.197] compiled for 1.20.5, module version = 1.0.0 [ 92.197] ABI class: X.Org Server Extension, version 10.0 [ 92.197] (II) LoadModule: "amdgpu" [ 92.197] (II) Loading /usr/lib64/xorg/modules/drivers/amdgpu_drv.so [ 92.198] (II) Module amdgpu: vendor="X.Org Foundation" [ 92.198] compiled for 1.20.5, module version = 19.1.0 [ 92.198] Module class: X.Org Video Driver [ 92.198] ABI class: X.Org Video Driver, version 24.0 [ 92.198] (II) AMDGPU: Driver for AMD Radeon: All GPUs supported by the amdgpu kernel driver [ 92.198] (--) using VT number 7 [ 92.200] (II) AMDGPU(0): [KMS] drm report modesetting isn't supported. [ 92.200] (II) AMDGPU(1): [KMS] drm report modesetting isn't supported. [ 92.200] (EE) Screen 0 deleted because of no matching config section. [ 92.200] (II) UnloadModule: "amdgpu" [ 92.200] (EE) Screen 0 deleted because of no matching config section. [ 92.200] (II) UnloadModule: "amdgpu" [ 92.200] (EE) Device(s) detected, but none match those in the config file. [ 92.200] (EE) Fatal server error: [ 92.200] (EE) no screens found(EE) [ 92.200] (EE) Please consult the The X.Org Foundation support at http://wiki.x.org for help. [ 92.200] (EE) Please also check the log file at "/var/log/Xorg.0.log" for additional information. [ 92.200] (EE) [ 92.204] (EE) Server terminated with error (1). Closing log file. My graphics card is the integrated Vega graphics in the AMD Ryzen 5 3400G APU. My kernel version is linux-4.19.86-gentoo. I have configured and compiled genkernel with a few required changes. Xorg version: xorg-server-1.20.5 My setup should be similar to what is found in the Gentoo installation handbook (mostly followed the default path). Below I have detailed the steps I have already taken to remedy the issue: followed this guide to configure my kernel, ensuring to build amdgpu as a module: https://wiki.gentoo.org/wiki/AMDGPU Emerged /sys-kernel/linux-firmware Emerged the amdgpu drivers updated my make.conf file with required vars, then emerged @world. Here is my make.conf file: Code: # These settings were set by the catalyst build script that automatically # built this stage. # Please consult /usr/share/portage/config/make.conf.example for a more # detailed example. COMMON_FLAGS="-march=znver2 -O2 -pipe" CFLAGS="${COMMON_FLAGS}" CXXFLAGS="${COMMON_FLAGS}" FCFLAGS="${COMMON_FLAGS}" FFLAGS="${COMMON_FLAGS}" # 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 ACCEPT_LICENSE="* -@EULA" MAKEOPTS="-j5" GRUB_PLATFORMS="efi-64" INPUT_DEVICES="libinput" VIDEO_CARDS="amdgpu radeonsi" When I run the startx command without a conf file, this is the output: Code: [ 234.788] X.Org X Server 1.20.5 X Protocol Version 11, Revision 0 [ 234.790] Build Operating System: Linux 4.19.86-gentoo x86_64 Gentoo [ 234.791] Current Operating System: Linux levitiku5-pc 4.19.86-gentoo #1 SMP Thu Dec 19 01:17:41 MST 2019 x86_64 [ 234.791] Kernel command line: BOOT_IMAGE=/kernel-genkernel-x86_64-4.19.86-gentoo root=/dev/nvme0n1p7 ro [ 234.793] Build Date: 28 December 2019 10:59:02PM [ 234.793] [ 234.794] Current version of pixman: 0.38.4 [ 234.795] Before reporting problems, check http://wiki.x.org to make sure that you have the latest version. [ 234.795] Markers: (--) probed, (**) from config file, (==) default setting, (++) from command line, (!!) notice, (II) informational, (WW) warning, (EE) error, (NI) not implemented, (??) unknown. [ 234.798] (==) Log file: "/var/log/Xorg.0.log", Time: Sat Dec 28 23:18:09 2019 [ 234.799] (==) Using config directory: "/etc/X11/xorg.conf.d" [ 234.799] (==) Using system config directory "/usr/share/X11/xorg.conf.d" [ 234.800] (==) No Layout section. Using the first Screen section. [ 234.800] (==) No screen section available. Using defaults. [ 234.800] (**) |-->Screen "Default Screen Section" (0) [ 234.800] (**) | |-->Monitor "<default monitor>" [ 234.800] (==) No monitor specified for screen "Default Screen Section". Using a default monitor configuration. [ 234.800] (==) Automatically adding devices [ 234.800] (==) Automatically enabling devices [ 234.800] (==) Automatically adding GPU devices [ 234.800] (==) Max clients allowed: 256, resource mask: 0x1fffff [ 234.800] (WW) The directory "/usr/share/fonts/misc/" does not exist. [ 234.800] Entry deleted from font path. [ 234.800] (WW) The directory "/usr/share/fonts/TTF/" does not exist. [ 234.800] Entry deleted from font path. [ 234.800] (WW) The directory "/usr/share/fonts/OTF/" does not exist. [ 234.800] Entry deleted from font path. [ 234.800] (WW) The directory "/usr/share/fonts/Type1/" does not exist. [ 234.800] Entry deleted from font path. [ 234.800] (WW) The directory "/usr/share/fonts/100dpi/" does not exist. [ 234.800] Entry deleted from font path. [ 234.800] (WW) The directory "/usr/share/fonts/75dpi/" does not exist. [ 234.800] Entry deleted from font path. [ 234.800] (==) FontPath set to: [ 234.800] (==) ModulePath set to "/usr/lib64/xorg/modules" [ 234.800] (II) The server relies on udev to provide the list of input devices. If no devices become available, reconfigure udev or disable AutoAddDevices. [ 234.800] (II) Loader magic: 0x55c8cf3d0c60 [ 234.800] (II) Module ABI versions: [ 234.800] X.Org ANSI C Emulation: 0.4 [ 234.800] X.Org Video Driver: 24.0 [ 234.800] X.Org XInput driver : 24.1 [ 234.800] X.Org Server Extension : 10.0 [ 234.803] (--) PCI:*(7@0:0:0) 1002:15d8:1043:876b rev 200, Mem @ 0xe0000000/268435456, 0xf0000000/2097152, 0xfca00000/524288, I/O @ 0x0000e000/256, BIOS @ 0x????????/131072 [ 234.803] (II) LoadModule: "glx" [ 234.803] (II) Loading /usr/lib64/xorg/modules/extensions/libglx.so [ 234.803] (II) Module glx: vendor="X.Org Foundation" [ 234.803] compiled for 1.20.5, module version = 1.0.0 [ 234.803] ABI class: X.Org Server Extension, version 10.0 [ 234.803] (==) Matched ati as autoconfigured driver 0 [ 234.803] (==) Matched modesetting as autoconfigured driver 1 [ 234.803] (==) Matched fbdev as autoconfigured driver 2 [ 234.803] (==) Matched vesa as autoconfigured driver 3 [ 234.818] (==) Assigned the driver to the xf86ConfigLayout [ 234.818] (II) LoadModule: "ati" [ 234.818] (WW) Warning, couldn't open module ati [ 234.818] (EE) Failed to load module "ati" (module does not exist, 0) [ 234.818] (II) LoadModule: "modesetting" [ 234.818] (II) Loading /usr/lib64/xorg/modules/drivers/modesetting_drv.so [ 234.818] (II) Module modesetting: vendor="X.Org Foundation" [ 234.818] compiled for 1.20.5, module version = 1.20.5 [ 234.818] Module class: X.Org Video Driver [ 234.818] ABI class: X.Org Video Driver, version 24.0 [ 234.818] (II) LoadModule: "fbdev" [ 234.818] (WW) Warning, couldn't open module fbdev [ 234.818] (EE) Failed to load module "fbdev" (module does not exist, 0) [ 234.818] (II) LoadModule: "vesa" [ 234.818] (WW) Warning, couldn't open module vesa [ 234.818] (EE) Failed to load module "vesa" (module does not exist, 0) [ 234.818] (II) modesetting: Driver for Modesetting Kernel Drivers: kms [ 234.818] (--) using VT number 7 [ 234.820] (EE) open /dev/dri/card0: No such file or directory [ 234.820] (WW) Falling back to old probe method for modesetting [ 234.820] (EE) open /dev/dri/card0: No such file or directory [ 234.820] (EE) Screen 0 deleted because of no matching config section. [ 234.820] (II) UnloadModule: "modesetting" [ 234.820] (EE) Device(s) detected, but none match those in the config file. [ 234.820] (EE) Fatal server error: [ 234.820] (EE) no screens found(EE) [ 234.820] (EE) Please consult the The X.Org Foundation support at http://wiki.x.org for help. [ 234.820] (EE) Please also check the log file at "/var/log/Xorg.0.log" for additional information. [ 234.820] (EE) [ 234.824] (EE) Server terminated with error (1). Closing log file. It is only after manually creating a xorg.conf file that I get the first mentioned log file with less errors. Here is my current xorg.conf file: Code: Section "ServerLayout" Identifier "X.org Configured" Screen 0 "Screen0" 0 0 Screen 1 "Screen1" RightOf "Screen0" InputDevice "Mouse0" "CorePointer" InputDevice "Keyboard0" "CoreKeyboard" EndSection Section "Files" ModulePath "/usr/lib64/xorg/modules" FontPath "/usr/share/fonts/misc/" FontPath "/usr/share/fonts/TTF/" FontPath "/usr/share/fonts/OTF/" FontPath "/usr/share/fonts/Type1/" FontPath "/usr/share/fonts/100dpi/" FontPath "/usr/share/fonts/75dpi/" EndSection Section "Module" Load "glx" EndSection Section "InputDevice" Identifier "Keyboard0" Driver "kbd" EndSection Section "InputDevice" Identifier "Mouse0" Driver "mouse" Option "Protocol" "auto" Option "Device" "/dev/input/mice" Option "ZAxisMapping" "4 5 6 7" EndSection Section "Monitor" Identifier "Monitor0" VendorName "Monitor Vendor" ModelName "Monitor Model" EndSection Section "Monitor" Identifier "Monitor1" VendorName "Monitor Vendor" ModelName "Monitor Model" EndSection Section "Device" ### Available Driver options are:- ### Values: <i>: integer, <f>: float, <bool>: "True"/"False", ### <string>: "String", <freq>: "<f> Hz/kHz/MHz", ### <percent>: "<f>%" ### [arg]: arg optional #Option "Accel" # [<bool>] #Option "SWcursor" # [<bool>] #Option "EnablePageFlip" # [<bool>] #Option "SubPixelOrder" # [<str>] #Option "ZaphodHeads" # <str> #Option "AccelMethod" # <str> #Option "DRI3" # [<bool>] #Option "DRI" # <i> #Option "ShadowPrimary" # [<bool>] #Option "TearFree" # [<bool>] #Option "DeleteUnusedDP12Displays" # [<bool>] #Option "VariableRefresh" # [<bool>] Identifier "Card0" Driver "amdgpu" BusID "PCI:7:0:0" EndSection Section "Device" ### Available Driver options are:- ### Values: <i>: integer, <f>: float, <bool>: "True"/"False", ### <string>: "String", <freq>: "<f> Hz/kHz/MHz", ### <percent>: "<f>%" ### [arg]: arg optional #Option "Accel" # [<bool>] #Option "SWcursor" # [<bool>] #Option "EnablePageFlip" # [<bool>] #Option "SubPixelOrder" # [<str>] #Option "ZaphodHeads" # <str> #Option "AccelMethod" # <str> #Option "DRI3" # [<bool>] #Option "DRI" # <i> #Option "ShadowPrimary" # [<bool>] #Option "TearFree" # [<bool>] #Option "DeleteUnusedDP12Displays" # [<bool>] #Option "VariableRefresh" # [<bool>] Identifier "Card1" Driver "amdgpu" BusID "PCI:7:0:1" EndSection Section "Screen" Identifier "Screen0" Device "Card0" Monitor "Monitor0" SubSection "Display" Viewport 0 0 Depth 1 EndSubSection SubSection "Display" Viewport 0 0 Depth 4 EndSubSection SubSection "Display" Viewport 0 0 Depth 8 EndSubSection SubSection "Display" Viewport 0 0 Depth 15 EndSubSection SubSection "Display" Viewport 0 0 Depth 16 EndSubSection SubSection "Display" Viewport 0 0 Depth 24 EndSubSection EndSection Section "Screen" Identifier "Screen1" Device "Card1" Monitor "Monitor1" SubSection "Display" Viewport 0 0 Depth 1 EndSubSection SubSection "Display" Viewport 0 0 Depth 4 EndSubSection SubSection "Display" Viewport 0 0 Depth 8 EndSubSection SubSection "Display" Viewport 0 0 Depth 15 EndSubSection SubSection "Display" Viewport 0 0 Depth 16 EndSubSection SubSection "Display" Viewport 0 0 Depth 24 EndSubSection EndSection So that's the long and short of it. I have tried messing around with the xorg.conf file but with no success. However, I don't really understand the error that I'm getting so I'm stuck on how to troubleshoot this. This is the guide I followed to set up X: https://wiki.gentoo.org/wiki/Xorg/Guide Any help would be greatly appreciated, thank you very much for your time
Levitiku5, Welcome to Gentoo. Code: [ 234.820] (EE) open /dev/dri/card0: No such file or directory tells of kernel support for DRM missing. If you have made a kernel since Code: [ 234.791] Current Operating System: Linux levitiku5-pc 4.19.86-gentoo #1 SMP Thu Dec 19 01:17:41 MST 2019 x86_64 Thu Dec 19 01:17:41 MST 2019 you are not actually running it.
Hi, not sure how to ask properly. x86-64 system KDE Plasma (latest stable version 5.16.5) Nextcloud-client (stable version 2.5.2) while the latest is unstable 2.6.1 (~amd64) The problem is: each time the desktop is started, the client shows the always-visible notification "There is newer version (2.6.1) - please update" 1) there is no newer version for my system (if we count only stable ebuilds) 2) It is annoying, as I must go and explicitly close it each time - otherwise it will stay forever and take my attention. 3) looks like this sort of notifications can not be disabled: in client options we can switch off only the notifications from the server. While this is the notification from client itself, probably. I think emerging unstable latest version can not be a recommended solution. So, is there possibility to stop notifications from one specific application using System Settings? I see only checkbox to disable notifications completely at all. Or other solutions?
Looks like a bug: https://github.com/nextcloud/desktop/issues/1594
this is what i get when trying to emerge the package ninja: build stopped: subcommand failed. * ERROR: kde-frameworks/kdelibs4support-5.64.0::gentoo failed (compile phase): * ninja -v -j4 -l0 failed * * Call stack: * ebuild.sh, line 125: Called src_compile * environment, line 2604: Called cmake-utils_src_compile * environment, line 1035: Called cmake-utils_src_make * environment, line 1216: Called _cmake_ninja_src_make * environment, line 648: Called eninja * environment, line 1714: Called die * The specific snippet of code: * "$@" || die "${nonfatal_args[@]}" "${*} failed" https://pastebin.com/SkR9GGQf
You mixed kde-frameworks version (qlist -Iv kde-frameworks/*)?
Baloo file indexing daemon crash on every boot. How to fix? Code: tommy@gentoobox ~ $ balooctl enable Enabling and starting the File Indexer tommy@gentoobox ~ $ replace called with invalid arguments, docId: 78263753061173250 url: "/home/tommy/" mdb.c:2127: Assertion 'rc == 0' failed in mdb_page_dirty() KCrash: Attempting to start /usr/bin/baloo_file from kdeinit sock_file=/run/user/1000/kdeinit5__0 KCrash: Application 'baloo_file' crashing... KCrash: Attempting to start /usr/lib64/libexec/drkonqi from kdeinit sock_file=/run/user/1000/kdeinit5__0 tommy@gentoobox ~ $ QSocketNotifier: Invalid socket 9 and type 'Read', disabling... QSocketNotifier: Invalid socket 5 and type 'Read', disabling... QSocketNotifier: Invalid socket 12 and type 'Read', disabling... QSocketNotifier: Invalid socket 10 and type 'Exception', disabling... QSocketNotifier: Invalid socket 11 and type 'Read', disabling... QSocketNotifier: Invalid socket 14 and type 'Read', disabling... Unable to start Dr. Konqi Re-raising signal for core dump handling.
Try to remove baloo index Code: $ rm -rf ~/.local/share/baloo
Hi everyone i have tried to used my remote pc as a local nas. And one of my goals is to be able to execute evolution on my gentoo from my laptop but with the $HOME/.local/share/evolution and $HOME/.config/evolution moved on the remote pc. For this i create a cifs mount through fstab like this Code: //192.168.0.104/evolution /mnt/remotePC cifs x-systemd.automount,x-systemd.device-timeout=60,_netdev,file_mode=0777,dir_mode=0777,noperm,users,vers=2.1,uid=1000,gid=1000,iocharset=utf8,credentials=/home/ade05fr/.smbcred 0 0 but with this i have many weird things : - the launch of evolution is extremly slow, after a launch i debug mode i saw that many times i have those kinds of message Code: Error in SQL EXEC statement: DELETE FROM version [database is locked]. Code: Unable to retrieve the message Unable to retrieve the message 1500123509.1757_43243.wolftop from folder /mnt/ade05fr/.local/share/evolution/mail/local/.Archives.Archive1 : no such file or directory I know that my LAN is good because i have around 200mb debit rate, so i think there is some kind of problem related to sqlite and smb mount. Another thing if i copy those files on local evolution start immediately. Can someone explain me what to do to use those folders on remote ? thanks for your help
Finally i solved my problem. for those interested you have to put the nolock option in your /etc/fstab entry and Tada its ok !!
A few days my font became blurry. I haven't really done anything that I know of. I have tried removing (and changing) all my settings from `~/.config/fonts/` and `/etc/fonts`. I'm not sure what to include here, just ask me whatever you want me to show you. https://framapic.org/QxkCGpVwx4vZ/L6vlMzRrBkjE.png Left: My regular user (Blurry) Right: Root (Sharp) I also tried creating a new user and the font was blurry there as well, even when I run it via root? It only works for root if I run it as root via my regular user. It's super confusing.. Any help are highly appreciated!
Check /root/.config/fontconfig/fonts.conf also
Linux 5.3.0 mesa 19.2.1 llvm 9.0 linux-firmware-20191008 VIDEO_CARDS=amdgpu radeonsi amdgpu modprobed Am I missing anything? edit: Code: [ 1299.868] X.Org X Server 1.20.5 X Protocol Version 11, Revision 0 [ 1299.868] Build Operating System: Linux 4.19.37-gentoo x86_64 Gentoo [ 1299.868] Current Operating System: Linux gentoodesktop 4.19.37-gentoo #6 SMP PREEMPT Mon Aug 12 08:37:33 CDT 2019 x86_64 [ 1299.868] Kernel command line: BOOT_IMAGE=/boot/kernel-genkernel-x86_64-4.19.37-gentoo root=UUID=b0fcdcef-6abf-41d3-a526-f89dbee36862 ro fbcon=scrollback:1024k,map:2 [ 1299.869] Build Date: 11 October 2019 03:02:16AM [ 1299.869] [ 1299.869] Current version of pixman: 0.38.4 [ 1299.869] Before reporting problems, check http://wiki.x.org to make sure that you have the latest version. [ 1299.869] Markers: (--) probed, (**) from config file, (==) default setting, (++) from command line, (!!) notice, (II) informational, (WW) warning, (EE) error, (NI) not implemented, (??) unknown. [ 1299.870] (==) Log file: "/var/log/Xorg.0.log", Time: Tue Oct 22 03:28:32 2019 [ 1299.872] (==) Using config directory: "/etc/X11/xorg.conf.d" [ 1299.872] (==) Using system config directory "/usr/share/X11/xorg.conf.d" [ 1299.872] (==) No Layout section. Using the first Screen section. [ 1299.872] (==) No screen section available. Using defaults. [ 1299.872] (**) |-->Screen "Default Screen Section" (0) [ 1299.872] (**) | |-->Monitor "<default monitor>" [ 1299.872] (==) No monitor specified for screen "Default Screen Section". Using a default monitor configuration. [ 1299.872] (==) Automatically adding devices [ 1299.872] (==) Automatically enabling devices [ 1299.872] (==) Automatically adding GPU devices [ 1299.872] (==) Max clients allowed: 256, resource mask: 0x1fffff [ 1299.872] (WW) The directory "/usr/share/fonts/TTF/" does not exist. [ 1299.872] Entry deleted from font path. [ 1299.872] (WW) The directory "/usr/share/fonts/OTF/" does not exist. [ 1299.872] Entry deleted from font path. [ 1299.872] (WW) The directory "/usr/share/fonts/Type1/" does not exist. [ 1299.872] Entry deleted from font path. [ 1299.873] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/75dpi/". [ 1299.873] Entry deleted from font path. [ 1299.873] (Run 'mkfontdir' on "/usr/share/fonts/75dpi/"). [ 1299.873] (==) FontPath set to: /usr/share/fonts/misc/, /usr/share/fonts/100dpi/ [ 1299.873] (==) ModulePath set to "/usr/lib64/xorg/modules" [ 1299.873] (II) The server relies on udev to provide the list of input devices. If no devices become available, reconfigure udev or disable AutoAddDevices. [ 1299.873] (II) Loader magic: 0x55f8373e16e0 [ 1299.873] (II) Module ABI versions: [ 1299.873] X.Org ANSI C Emulation: 0.4 [ 1299.873] X.Org Video Driver: 24.0 [ 1299.873] X.Org XInput driver : 24.1 [ 1299.873] X.Org Server Extension : 10.0 [ 1299.874] (++) using VT number 3 [ 1299.878] (II) systemd-logind: took control of session /org/freedesktop/login1/session/_33 [ 1299.886] (--) PCI:*(14@0:0:0) 1002:731f:1002:0b36 rev 193, Mem @ 0xe0000000/268435456, 0xf0000000/2097152, 0xfcd00000/524288, I/O @ 0x0000e000/256, BIOS @ 0x????????/131072 [ 1299.886] (II) LoadModule: "glx" [ 1299.887] (II) Loading /usr/lib64/xorg/modules/extensions/libglx.so [ 1299.889] (II) Module glx: vendor="X.Org Foundation" [ 1299.889] compiled for 1.20.5, module version = 1.0.0 [ 1299.889] ABI class: X.Org Server Extension, version 10.0 [ 1299.889] (==) Matched ati as autoconfigured driver 0 [ 1299.889] (==) Matched modesetting as autoconfigured driver 1 [ 1299.889] (==) Matched fbdev as autoconfigured driver 2 [ 1299.889] (==) Matched vesa as autoconfigured driver 3 [ 1299.890] (==) Assigned the driver to the xf86ConfigLayout [ 1299.890] (II) LoadModule: "ati" [ 1299.890] (II) Loading /usr/lib64/xorg/modules/drivers/ati_drv.so [ 1299.890] (II) Module ati: vendor="X.Org Foundation" [ 1299.890] compiled for 1.20.5, module version = 19.0.1 [ 1299.890] Module class: X.Org Video Driver [ 1299.890] ABI class: X.Org Video Driver, version 24.0 [ 1299.952] (II) LoadModule: "radeon" [ 1299.952] (II) Loading /usr/lib64/xorg/modules/drivers/radeon_drv.so [ 1299.956] (II) Module radeon: vendor="X.Org Foundation" [ 1299.956] compiled for 1.20.5, module version = 19.0.1 [ 1299.956] Module class: X.Org Video Driver [ 1299.956] ABI class: X.Org Video Driver, version 24.0 [ 1299.956] (II) LoadModule: "modesetting" [ 1299.956] (II) Loading /usr/lib64/xorg/modules/drivers/modesetting_drv.so [ 1299.957] (II) Module modesetting: vendor="X.Org Foundation" [ 1299.957] compiled for 1.20.5, module version = 1.20.5 [ 1299.957] Module class: X.Org Video Driver [ 1299.957] ABI class: X.Org Video Driver, version 24.0 [ 1299.957] (II) LoadModule: "fbdev" [ 1299.957] (II) Loading /usr/lib64/xorg/modules/drivers/fbdev_drv.so [ 1299.957] (II) Module fbdev: vendor="X.Org Foundation" [ 1299.957] compiled for 1.20.5, module version = 0.5.0 [ 1299.957] Module class: X.Org Video Driver [ 1299.957] ABI class: X.Org Video Driver, version 24.0 [ 1299.957] (II) LoadModule: "vesa" [ 1299.957] (II) Loading /usr/lib64/xorg/modules/drivers/vesa_drv.so [ 1299.957] (II) Module vesa: vendor="X.Org Foundation" [ 1299.957] compiled for 1.20.5, module version = 2.4.0 [ 1299.957] Module class: X.Org Video Driver [ 1299.957] ABI class: X.Org Video Driver, version 24.0 [ 1299.957] (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 [ 1299.960] (II) modesetting: Driver for Modesetting Kernel Drivers: kms [ 1299.960] (II) FBDEV: driver for framebuffer: fbdev [ 1299.960] (II) VESA: driver for VESA chipsets: vesa [ 1299.960] (EE) open /dev/dri/card0: No such file or directory [ 1299.960] (WW) Falling back to old probe method for modesetting [ 1299.960] (EE) open /dev/dri/card0: No such file or directory [ 1299.960] (II) Loading sub module "fbdevhw" [ 1299.960] (II) LoadModule: "fbdevhw" [ 1299.960] (II) Loading /usr/lib64/xorg/modules/libfbdevhw.so [ 1299.961] (II) Module fbdevhw: vendor="X.Org Foundation" [ 1299.961] compiled for 1.20.5, module version = 0.0.2 [ 1299.961] ABI class: X.Org Video Driver, version 24.0 [ 1299.961] (EE) Unable to find a valid framebuffer device [ 1299.961] (WW) Falling back to old probe method for fbdev [ 1299.961] (II) Loading sub module "fbdevhw" [ 1299.961] (II) LoadModule: "fbdevhw" [ 1299.962] (II) Loading /usr/lib64/xorg/modules/libfbdevhw.so [ 1299.962] (II) Module fbdevhw: vendor="X.Org Foundation" [ 1299.962] compiled for 1.20.5, module version = 0.0.2 [ 1299.962] ABI class: X.Org Video Driver, version 24.0 [ 1299.962] (EE) open /dev/fb0: No such file or directory [ 1299.962] (EE) Screen 0 deleted because of no matching config section. [ 1299.962] (II) UnloadModule: "modesetting" [ 1299.962] (EE) Screen 0 deleted because of no matching config section. [ 1299.962] (II) UnloadModule: "fbdev" [ 1299.962] (II) UnloadSubModule: "fbdevhw" [ 1299.962] (II) Loading sub module "vbe" [ 1299.962] (II) LoadModule: "vbe" [ 1299.962] (II) Loading /usr/lib64/xorg/modules/libvbe.so [ 1299.963] (II) Module vbe: vendor="X.Org Foundation" [ 1299.963] compiled for 1.20.5, module version = 1.1.0 [ 1299.963] ABI class: X.Org Video Driver, version 24.0 [ 1299.963] (II) Loading sub module "int10" [ 1299.963] (II) LoadModule: "int10" [ 1299.963] (II) Loading /usr/lib64/xorg/modules/libint10.so [ 1299.964] (II) Module int10: vendor="X.Org Foundation" [ 1299.964] compiled for 1.20.5, module version = 1.0.0 [ 1299.964] ABI class: X.Org Video Driver, version 24.0 [ 1299.964] (II) VESA(0): initializing int10 [ 1299.967] (II) VESA(0): Primary V_BIOS segment is: 0xc000 [ 1299.968] (II) VESA(0): VESA BIOS detected [ 1299.968] (II) VESA(0): VESA VBE Version 3.0 [ 1299.968] (II) VESA(0): VESA VBE Total Mem: 49152 kB [ 1299.968] (II) VESA(0): VESA VBE OEM: AMD ATOMBIOS [ 1299.968] (II) VESA(0): VESA VBE OEM Software Rev: 17.1 [ 1299.968] (II) VESA(0): VESA VBE OEM Vendor: (C) 1988-2018, Advanced Micro Devices, Inc. [ 1299.968] (II) VESA(0): VESA VBE OEM Product: NAVI10 [ 1299.968] (II) VESA(0): VESA VBE OEM Product Rev: 01.00 [ 1300.001] (II) VESA(0): Creating default Display subsection in Screen section "Default Screen Section" for depth/fbbpp 24/32 [ 1300.001] (==) VESA(0): Depth 24, (--) framebuffer bpp 32 [ 1300.001] (==) VESA(0): RGB weight 888 [ 1300.001] (==) VESA(0): Default visual is TrueColor [ 1300.001] (==) VESA(0): Using gamma correction (1.0, 1.0, 1.0) [ 1300.001] (II) Loading sub module "ddc" [ 1300.001] (II) LoadModule: "ddc" [ 1300.002] (II) Module "ddc" already built-in [ 1300.002] (II) VESA(0): VESA VBE DDC supported [ 1300.002] (II) VESA(0): VESA VBE DDC Level 2 [ 1300.002] (II) VESA(0): VESA VBE DDC transfer in appr. 1 sec. [ 1300.079] (II) VESA(0): VESA VBE DDC read successfully [ 1300.079] (II) VESA(0): Manufacturer: GSM Model: 580d Serial#: 16843009 [ 1300.079] (II) VESA(0): Year: 2009 Week: 1 [ 1300.079] (II) VESA(0): EDID Version: 1.3 [ 1300.079] (II) VESA(0): Digital Display Input [ 1300.079] (II) VESA(0): Max Image Size [cm]: horiz.: 51 vert.: 29 [ 1300.079] (II) VESA(0): Gamma: 2.20 [ 1300.079] (II) VESA(0): DPMS capabilities: StandBy Suspend Off [ 1300.079] (II) VESA(0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4 [ 1300.079] (II) VESA(0): First detailed timing is preferred mode [ 1300.079] (II) VESA(0): redX: 0.628 redY: 0.348 greenX: 0.345 greenY: 0.615 [ 1300.079] (II) VESA(0): blueX: 0.153 blueY: 0.057 whiteX: 0.313 whiteY: 0.329 [ 1300.080] (II) VESA(0): Supported established timings: [ 1300.080] (II) VESA(0): 640x480@60Hz [ 1300.080] (II) VESA(0): 800x600@60Hz [ 1300.080] (II) VESA(0): 1024x768@60Hz [ 1300.080] (II) VESA(0): Manufacturer's mask: 0 [ 1300.080] (II) VESA(0): Supported standard timings: [ 1300.080] (II) VESA(0): #0: hsize: 1152 vsize 864 refresh: 60 vid: 16497 [ 1300.080] (II) VESA(0): #1: hsize: 1280 vsize 1024 refresh: 60 vid: 32897 [ 1300.080] (II) VESA(0): #2: hsize: 1280 vsize 960 refresh: 60 vid: 16513 [ 1300.080] (II) VESA(0): #3: hsize: 1680 vsize 1050 refresh: 60 vid: 179 [ 1300.080] (II) VESA(0): Supported detailed timing: [ 1300.080] (II) VESA(0): clock: 148.5 MHz Image Size: 510 x 290 mm [ 1300.080] (II) VESA(0): h_active: 1920 h_sync: 2008 h_sync_end 2052 h_blank_end 2200 h_border: 0 [ 1300.080] (II) VESA(0): v_active: 1080 v_sync: 1084 v_sync_end 1089 v_blanking: 1125 v_border: 0 [ 1300.080] (II) VESA(0): Ranges: V min: 56 V max: 61 Hz, H min: 30 H max: 83 kHz, PixClock max 155 MHz [ 1300.080] (II) VESA(0): Monitor name: IPS236 [ 1300.080] (II) VESA(0): Serial No: SerialNumber [ 1300.080] (II) VESA(0): Number of EDID sections to follow: 1 [ 1300.080] (II) VESA(0): EDID (in hex): [ 1300.080] (II) VESA(0): 00ffffffffffff001e6d0d5801010101 [ 1300.080] (II) VESA(0): 0113010380331d78eac665a059589d27 [ 1300.080] (II) VESA(0): 0e5054210800714081808140b3000101 [ 1300.080] (II) VESA(0): 010101010101023a801871382d40582c [ 1300.080] (II) VESA(0): 4500fe221100001e000000fd00383d1e [ 1300.080] (II) VESA(0): 530f000a202020202020000000fc0049 [ 1300.080] (II) VESA(0): 505332333620202020202020000000ff [ 1300.080] (II) VESA(0): 0053657269616c4e756d6265720a018b [ 1300.080] (II) VESA(0): EDID vendor "GSM", prod id 22541 [ 1300.080] (II) VESA(0): Using EDID range info for horizontal sync [ 1300.080] (II) VESA(0): Using EDID range info for vertical refresh [ 1300.080] (II) VESA(0): Printing DDC gathered Modelines: [ 1300.080] (II) VESA(0): Modeline "1920x1080"x0.0 148.50 1920 2008 2052 2200 1080 1084 1089 1125 +hsync +vsync (67.5 kHz eP) [ 1300.080] (II) VESA(0): Modeline "800x600"x0.0 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz e) [ 1300.080] (II) VESA(0): Modeline "640x480"x0.0 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz e) [ 1300.080] (II) VESA(0): Modeline "1024x768"x0.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz e) [ 1300.080] (II) VESA(0): Modeline "1152x864"x60.0 81.62 1152 1216 1336 1520 864 865 868 895 -hsync +vsync (53.7 kHz e) [ 1300.080] (II) VESA(0): Modeline "1280x1024"x0.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz e) [ 1300.080] (II) VESA(0): Modeline "1280x960"x0.0 108.00 1280 1376 1488 1800 960 961 964 1000 +hsync +vsync (60.0 kHz e) [ 1300.080] (II) VESA(0): Modeline "1680x1050"x0.0 119.00 1680 1728 1760 1840 1050 1053 1059 1080 +hsync -vsync (64.7 kHz e) [ 1300.080] (II) VESA(0): Searching for matching VESA mode(s): [ 1300.081] Mode: 110 (640x480) ... Quote: [ 1299.960] (EE) open /dev/dri/card0: No such file or directory /dev/dri/card0 exists. Quote: [ 1299.962] (EE) open /dev/fb0: No such file or directory /dev/fb0 exists.
Have a look on this topic here: https://forums.gentoo.org/viewtopic-t-1100010-start-0-postdays-0-postorder-asc-highlight-5700.html
Xorg.0.log: https://pastebin.com/daNe4MsZ thsi is on a virtualbox VM, the terminal color changes from black to some form of red after the segfault kernel config: https://pastebin.com/jgDTi5jj Calculating dependencies... done! Code: [ebuild R ] x11-base/xorg-server-1.20.5:0/1.20.5::gentoo USE="suid systemd* xorg -debug -dmx -doc -elogind -ipv6 -kdrive (-libglvnd) -libressl -minimal (-selinux) -static-libs -udev -unwind -wayland -xcsecurity -xephyr -xnest -xvfb (-glamor%*)" 0 KiB [ebuild U ] x11-base/xorg-drivers-1.20-r1::gentoo [1.20::gentoo] INPUT_DEVICES="-elographics -evdev -joystick -keyboard -libinput -mouse -synaptics -vmmouse -void -wacom" VIDEO_CARDS="vmware -amdgpu -ast -dummy -fbdev (-freedreno) (-geode) -glint -i915 -i965 -intel -mga -nouveau -nv -nvidia (-omap) -qxl -r128 -radeon -radeonsi -siliconmotion (-tegra) (-vc4) -vesa -via -virtualbox" 0 KiB Total: 2 packages (1 upgrade, 1 reinstall), Size of downloads: 0 KiB
also worth noting, if I use virtualbox as a card i get the following: Code: [ 4345.891] (EE) open /dev/dri/card0: No such file or directory [ 4345.891] (WW) Falling back to old probe method for modesetting [ 4345.891] (EE) open /dev/dri/card0: No such file or directory [ 4345.891] (EE) Screen 0 deleted because of no matching config section. [ 4345.891] (II) UnloadModule: "modesetting" [ 4345.891] (EE) Device(s) detected, but none match those in the config file. [ 4345.891] (EE) Fatal server error: [ 4345.891] (EE) no screens found(EE) [ 4345.891] (EE)
I have built a new desktop computer as my old desktop died... A problem I am having relates to the graphics board. After a start KDE (with startx), an icon shows in the KDE task manager and if I hover mouse over it I see a bubble with the text: "Software Renderer In Use"/"rendering may be degraded". If I click the icon I get a dialog box with dire warning: Code: These settings adjust the QtQuick settings used by Plasma. Only adjust if you know what you are doing. This seems sad... Shouldn't a hardware renderer be in use? Am I alone with this problem? Is this just the state of reality and I can stop pulling out my hair on this? The graphics board is: Nvidia GeForce GTX 1660 On first efforts I was using the nouveau driver (as I had been with my old computer with an ancient nvidia board). This didn't work at all. IIRC there were messages about "Screen 0" not found or some such. In any case some googling led me to believe that the nouveau driver does not yet support my graphics board. (Maybe added in kernel 5.3?) Faced with that I decided to use the x11-drivers/nvidia-drivers-440.31-r1. As I type this this is the most recent stable. I paid a great deal of attention to disabling support for nouvea and believe I have removed all of the nouveau stuff from the kernel (gentoo-sources-4.19.86). I have not tried gentoo-sources-5.x.y because I use zfs and am not prepared to upgrade to zfs--0.8.x. I will eventually, but not yet. I have read (and reread and reread ...) every gentoo wiki I can find relating to graphics/X/KDE plus a lot of other posts. I have configured my system according to the various wiki articles and, in fact, the system boots and KDE starts. I am just left with the feeling that something must be amiss because of the "Software Renderer ..." message and because at least some KDE functionality crashes. In particular, the KDE splash screen (which I now have disabled) and a few other apps (although I can't recall which). glxgears runs and reports 60 fps which I think about matches my monitor refresh rate. Code: NAShost ~ # glxinfo | grep -i direct direct rendering: Yes Code: lspci -v <snip> 08:00.0 VGA compatible controller: NVIDIA Corporation TU116 [GeForce GTX 1660] (rev a1) (prog-if 00 [VGA controller]) Subsystem: Gigabyte Technology Co., Ltd TU116 [GeForce GTX 1660] Flags: bus master, fast devsel, latency 0, IRQ 71 Memory at f6000000 (32-bit, non-prefetchable) [size=16M] Memory at e0000000 (64-bit, prefetchable) [size=256M] Memory at f0000000 (64-bit, prefetchable) [size=32M] I/O ports at e000 [size=128] [virtual] Expansion ROM at 000c0000 [disabled] [size=128K] Capabilities: [60] Power Management version 3 Capabilities: [68] MSI: Enable+ Count=1/1 Maskable- 64bit+ Capabilities: [78] Express Legacy Endpoint, MSI 00 Capabilities: [100] Virtual Channel Capabilities: [250] Latency Tolerance Reporting Capabilities: [258] L1 PM Substates Capabilities: [128] Power Budgeting <?> Capabilities: [420] Advanced Error Reporting Capabilities: [600] Vendor Specific Information: ID=0001 Rev=1 Len=024 <?> Capabilities: [900] #19 Capabilities: [bb0] #15 Kernel driver in use: nvidia Kernel modules: nvidia_drm, nvidia <snip> I see this in /var/log/messages Code: Dec 1 12:25:57 NAShost kernel: [ 41.319041] [drm] [nvidia-drm] [GPU ID 0x00000800] Loading driver Dec 1 12:25:57 NAShost kernel: [ 41.319042] [drm] Initialized nvidia-drm 0.0.0 20160202 for 0000:08:00.0 on minor 0 The modules seem right Code: NAShost ~ # lsmod | grep nvidia nvidia_drm 45056 4 nvidia_modeset 1077248 7 nvidia_drm nvidia 19480576 280 nvidia_modeset I, of course, will be happy to provide any additional info requested.
Well. I am a bit embarassed... I found this link: https://forum.kde.org/viewtopic.php?f=289&t=153559 and that provided the answer. I had seen this page during my debugging, but somehow overlooked the answer. I think I was focusing on some other possible solution and it went right past me. In my case, the first option was "Software" so, duh, software rendering was set. Once I set both options to "Automatic" (and I rebooted the box), the QtQuck icon disappeared. Unfortunately, now that the icon is gone I have no idea how to launch the QtQuick dialog so can't check that, in fact, both of the options are now "Automatic", although I assume they are. The link above shows an image of the dialog.
Hi. I'm trying to install quite a minimal set of KDE. So far I have emerged these: kde-plasma/plasma-desktop kde-plasma/powerdevil kde-plasma/systemsettings kde-plasma/xembed-sni-proxy kde-plasma/kwayland-integration kde-apps/kio-extras kde-misc/kio-gdrive kde-misc/kio-gopher kde-apps/khelpcenter kde-apps/kdialog kde-apps/thumbnailers kde-apps/ark kde-misc/krename kde-plasma/bluedevil systemsettings is missing display output configuration. It's missing in both X11 and wayland mode. I'm probably missing some library, but what?
You should install kde-plasma/kscreen
Hi all, I upgraded to XFCE4-1.14 today and discovered than the font rendering is really poor compared to 1.12. It affects to all apps, including java applications, QT, chromium, etc... The system and user configuration is the same than before. Here is some info: Code: $ 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-mono.conf [17] 20-unhint-small-dejavu-sans.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] 35-ttf-arphic-ukai-aliases.conf [26] 35-ttf-arphic-uming-aliases.conf [27] 40-nonlatin.conf [28] 41-ttf-arphic-ukai.conf [29] 41-ttf-arphic-uming.conf [30] 42-luxi-mono.conf * [31] 43-wqy-zenhei-sharp.conf [32] 44-wqy-zenhei.conf [33] 45-generic.conf * [34] 45-latin.conf [35] 49-sansserif.conf [36] 50-user.conf [37] 51-local.conf [38] 52-infinality.conf * [39] 57-dejavu-sans-mono.conf * [40] 57-dejavu-sans.conf * [41] 57-dejavu-serif.conf * [42] 59-google-droid-sans-mono.conf [43] 59-google-droid-sans.conf [44] 59-google-droid-serif.conf [45] 60-generic.conf * [46] 60-latin.conf [47] 60-liberation.conf * [48] 62-croscore-arimo.conf [49] 62-croscore-cousine.conf [50] 62-croscore-symbolneu.conf [51] 62-croscore-tinos.conf [52] 64-ttf-arphic-uming.conf [53] 65-fonts-persian.conf [54] 65-khmer.conf [55] 65-nonlatin.conf [56] 66-ja-ipafonts.conf [57] 66-noto-mono.conf [58] 66-noto-sans.conf [59] 66-noto-serif.conf [60] 66-takao-fonts.conf [61] 69-unifont.conf [62] 70-no-bitmaps.conf [63] 70-yes-bitmaps.conf [64] 75-ttf-arphic-ukai-select.conf [65] 80-delicious.conf * [66] 90-synthetic.conf * [67] 90-ttf-arphic-ukai-embolden.conf [68] 90-ttf-arphic-uming-embolden.conf Code: $ eselect infinality list Available styles: [1] debug [2] infinality * [3] linux [4] nyx [5] osx [6] osx2 [7] win7 [8] win98 [9] winxp Code: $ eselect lcdfilter list Available styles: [1] custom [2] default [3] infinality [4] infinality-classic [5] infinality-nudge [6] infinality-push [7] infinality-sharpened [8] infinality-shove * [9] linux [10] nyx [11] osx [12] ubuntu [13] vanilla [14] windows-7 [15] windows-7-light [16] windows-xp [17] windows-xp-light
I have: xfce-base/xfce4-meta-4.14-r1::gentoo USE="svg -minimal -upower" and fonts look nice as before. I do not use infinality nor lcdfilter. Code: eselect fontconfig list Available fontconfig .conf files (* is enabled): [1] 09-texlive.conf [2] 10-autohint.conf [3] 10-hinting-full.conf [4] 10-hinting-medium.conf [5] 10-hinting-none.conf [6] 10-hinting-slight.conf * [7] 10-no-sub-pixel.conf [8] 10-scale-bitmap-fonts.conf * [9] 10-sub-pixel-bgr.conf [10] 10-sub-pixel-rgb.conf [11] 10-sub-pixel-vbgr.conf [12] 10-sub-pixel-vrgb.conf [13] 10-unhinted.conf [14] 11-lcdfilter-default.conf [15] 11-lcdfilter-legacy.conf [16] 11-lcdfilter-light.conf [17] 20-unhint-small-dejavu-sans.conf [18] 20-unhint-small-dejavu-sans-mono.conf [19] 20-unhint-small-dejavu-serif.conf [20] 20-unhint-small-vera.conf * [21] 25-unhint-nonlatin.conf [22] 30-metric-aliases.conf * [23] 40-nonlatin.conf * [24] 45-generic.conf * [25] 45-latin.conf * [26] 49-sansserif.conf * [27] 50-user.conf * [28] 51-local.conf * [29] 57-dejavu-sans.conf [30] 57-dejavu-sans-mono.conf [31] 57-dejavu-serif.conf [32] 60-generic.conf * [33] 60-latin.conf * [34] 60-liberation.conf [35] 61-stix.conf [36] 65-fonts-persian.conf * [37] 65-khmer.conf [38] 65-nonlatin.conf * [39] 69-unifont.conf * [40] 70-no-bitmaps.conf [41] 70-yes-bitmaps.conf [42] 80-delicious.conf * [43] 90-synthetic.conf *
On a fresh system install, I have a radeon card: Code: 02:00.0 VGA compatible controller: Advanced Micro Devices, Inc. [AMD/ATI] Ellesmere [Radeon RX 470/480/570/570X/580/580X/590] (rev e7) (prog-if 00 [VGA controller]) I am using eudev (started on sysinit - both udev and udev-trigger) with a genkernel kernel. I have /etc/modprobe.d/video.conf : Code: # Load radeon module radeon but module is not loaded on boot as shown by an empty lsmod | grep radeon . My dmesg on boot looks like: https://pastebin.com/bm0Vj0Bm I have two xorg.conf.d files: 10-dri.conf Code: Section "Device" Identifier "Device0" Driver "radeon" EndSection Section "dri" Mode 0666 EndSection and 10-keyboard.conf : Code: Section "InputClass" Identifier "keyboard-all" Driver "evdev" Option "XkbModel" "pc105" Option "XkbLayout" "gb" Option "XkbVariant" "extd" Option "XkbOptions" "compose:rctrl" EndSection Yet, when I do startx, I get Code: (EE) no screens found . My Xorg.0.log after the failure: Code: X.Org X Server 1.20.5 X Protocol Version 11, Revision 0 [ 385.118] Build Operating System: Linux 4.19.86-gentoo x86_64 Gentoo [ 385.118] Current Operating System: Linux andromeda 4.19.86-gentoo #1 SMP Mon Dec 2 00:04:25 CET 2019 x86_64 [ 385.119] Kernel command line: BOOT_IMAGE=/kernel-genkernel-x86_64-4.19.86-gentoo root=UUID=d812d3e7-9a3c-4fd9-92bb-d5b5a43e692b ro [ 385.119] Build Date: 10 December 2019 11:10:13AM [ 385.119] [ 385.119] Current version of pixman: 0.38.4 [ 385.119] Before reporting problems, check http://wiki.x.org to make sure that you have the latest version. [ 385.119] Markers: (--) probed, (**) from config file, (==) default setting, (++) from command line, (!!) notice, (II) informational, (WW) warning, (EE) error, (NI) not implemented, (??) unknown. [ 385.119] (==) Log file: "/var/log/Xorg.0.log", Time: Wed Dec 11 08:13:23 2019 [ 385.187] (==) Using config directory: "/etc/X11/xorg.conf.d" [ 385.187] (==) Using system config directory "/usr/share/X11/xorg.conf.d" [ 385.212] (==) No Layout section. Using the first Screen section. [ 385.212] (==) No screen section available. Using defaults. [ 385.212] (**) |-->Screen "Default Screen Section" (0) [ 385.212] (**) | |-->Monitor "<default monitor>" [ 385.212] (==) No device specified for screen "Default Screen Section". Using the first device section listed. [ 385.212] (**) | |-->Device "Device0" [ 385.212] (==) No monitor specified for screen "Default Screen Section". Using a default monitor configuration. [ 385.212] (==) Automatically adding devices [ 385.212] (==) Automatically enabling devices [ 385.212] (==) Automatically adding GPU devices [ 385.212] (==) Max clients allowed: 256, resource mask: 0x1fffff [ 385.229] (WW) The directory "/usr/share/fonts/TTF/" does not exist. [ 385.229] Entry deleted from font path. [ 385.229] (WW) The directory "/usr/share/fonts/OTF/" does not exist. [ 385.229] Entry deleted from font path. [ 385.229] (WW) The directory "/usr/share/fonts/Type1/" does not exist. [ 385.229] Entry deleted from font path. [ 385.229] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/100dpi/". [ 385.230] Entry deleted from font path. [ 385.230] (Run 'mkfontdir' on "/usr/share/fonts/100dpi/"). [ 385.230] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/75dpi/". [ 385.230] Entry deleted from font path. [ 385.230] (Run 'mkfontdir' on "/usr/share/fonts/75dpi/"). [ 385.230] (==) FontPath set to: /usr/share/fonts/misc/ [ 385.230] (==) ModulePath set to "/usr/lib64/xorg/modules" [ 385.230] (II) The server relies on udev to provide the list of input devices. If no devices become available, reconfigure udev or disable AutoAddDevices. [ 385.230] (II) Loader magic: 0x5592ae58cc80 [ 385.230] (II) Module ABI versions: [ 385.230] X.Org ANSI C Emulation: 0.4 [ 385.230] X.Org Video Driver: 24.0 [ 385.230] X.Org XInput driver : 24.1 [ 385.230] X.Org Server Extension : 10.0 [ 385.245] (--) PCI:*(2@0:0:0) 1002:67df:1043:0525 rev 231, Mem @ 0xe0000000/268435456, 0xf0000000/2097152, 0xfbe00000/262144, I/O @ 0x0000e000/256, BIOS @ 0x????????/131072 [ 385.245] (II) LoadModule: "glx" [ 385.245] (II) Loading /usr/lib64/xorg/modules/extensions/libglx.so [ 385.418] (II) Module glx: vendor="X.Org Foundation" [ 385.418] compiled for 1.20.5, module version = 1.0.0 [ 385.418] ABI class: X.Org Server Extension, version 10.0 [ 385.418] (II) LoadModule: "radeon" [ 385.419] (II) Loading /usr/lib64/xorg/modules/drivers/radeon_drv.so [ 385.470] (II) Module radeon: vendor="X.Org Foundation" [ 385.470] compiled for 1.20.5, module version = 19.1.0 [ 385.470] Module class: X.Org Video Driver [ 385.470] ABI class: X.Org Video Driver, version 24.0 [ 385.470] (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 [ 385.474] (--) using VT number 7 [ 385.489] (EE) No devices detected. [ 385.489] (EE) Fatal server error: [ 385.490] (EE) no screens found(EE) [ 385.490] (EE) Please consult the The X.Org Foundation support at http://wiki.x.org for help. [ 385.490] (EE) Please also check the log file at "/var/log/Xorg.0.log" for additional information. [ 385.490] (EE) [ 385.521] (EE) Server terminated with error (1). Closing log file. I am not surprised that this fails - because I have no /dev/dri . The Radeon module is not loaded even after I added it to modprobe.d/video.conf . If I try to load it, I get: Code: libkmod: kmod_config_parse: /etc/modprobe.d/video.conf line 2: ignoring bad line starting with 'radeon' I was pretty sure that I could just list the module name to load a module without options. Since I don't know how to do it otherwise, I can attempt to load it with dpm=1. Then the module is loaded: Code: radeon 1622016 0 ttm 126976 1 radeon drm_kms_helper 192512 1 radeon drm 536576 3 drm_kms_helper,radeon,ttm i2c_algo_bit 16384 2 igb,radeon i2c_core 81920 6 videodev,drm_kms_helper,i2c_algo_bit,igb,radeon,drm However, /dev/dri does not exist and X still does not start. What could be the problem here?
Oh damn, I found the problem. I should be using amdgpu, not radeon driver.
Hi, I have this issue that if i try any drivers above 390 i get a black screen with a mouse on SDDM. This is from the journal: Code: sddm-greeter[3280]: Failed to create OpenGL context for format QSurfaceFormat(version 2.0, options QFlags(), depthBufferSize 24, redBufferSize -1, greenBufferSize -1, blueBufferSize -1, alphaBufferSize -1, stencilBufferSize 8, samples -1, swapBehavior 2, swapInterval 1, profile 0) What kind of info do i need to look at or provide to investigate this further?
sddm user is in video group? See https://bugs.gentoo.org/579746
Hi, I wanted to try out kde with wayland. I followed some instructions here on the forum setting useflags and recompiling stuff. After that I am able to start weston from a TTY. I cannot start plasma from TTY nor a plasma session on wayland from sddm. Either way the screen just freezes until I kill the kwin_wayland process. Anybody any idea how to get kde on wayland running ? Thanks
Thanks for the quick reply. Here's the requested information: 1) How do you start your Plasma session from the TTY console? First I tried with Code: export $(dbus-launch) && startplasmacompositor Before writing this answer I tried your commands -> same result 2) Which CPU do you have? AMD RYZEN 2700 3) Which graphics chip do you have? AMD RX480 4GB 4) Please post the output of Code: emerge --info Code: Portage 2.3.69 (python 3.6.9-final-0, default/linux/amd64/17.1/desktop/plasma, gcc-9.1.0, glibc-2.29-r3, 5.2.1-gentoo x86_64) ================================================================= System uname: Linux-5.2.1-gentoo-x86_64-AMD_Ryzen_7_2700_Eight-Core_Processor-with-gentoo-2.6 KiB Mem: 32952228 total, 28488664 free KiB Swap: 16777212 total, 16777212 free Timestamp of repository gentoo: Sun, 28 Jul 2019 12:15:01 +0000 Head commit of repository gentoo: a34631e939372cca387bc37edf74f81e54e46bf1 sh bash 5.0_p7 ld GNU ld (Gentoo 2.31.1 p5) 2.31.1 distcc 3.3.2 x86_64-pc-linux-gnu [disabled] app-shells/bash: 5.0_p7::gentoo dev-java/java-config: 2.2.0-r4::gentoo dev-lang/perl: 5.30.0::gentoo dev-lang/python: 2.7.16::gentoo, 3.6.9::gentoo dev-util/cmake: 3.15.1::gentoo dev-util/pkgconfig: 0.29.2::gentoo sys-apps/baselayout: 2.6-r1::gentoo sys-apps/openrc: 0.41.2::gentoo sys-apps/sandbox: 2.18::gentoo sys-devel/autoconf: 2.13-r1::gentoo, 2.69-r4::gentoo sys-devel/automake: 1.16.1-r1::gentoo sys-devel/binutils: 2.31.1-r4::gentoo, 2.32-r1::gentoo sys-devel/gcc: 8.2.0-r6::gentoo, 8.3.0-r1::gentoo, 9.1.0-r1::gentoo sys-devel/gcc-config: 2.0::gentoo sys-devel/libtool: 2.4.6-r5::gentoo sys-devel/make: 4.2.1-r4::gentoo sys-kernel/linux-headers: 5.1::gentoo (virtual/os-headers) sys-libs/glibc: 2.29-r3::gentoo Repositories: gentoo location: /usr/portage sync-type: rsync sync-uri: rsync://rsync15.de.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 last-hope location: /var/lib/layman/last-hope sync-type: laymansync sync-uri: https://github.com/ercpe/lh-overlay.git masters: gentoo priority: 50 ACCEPT_KEYWORDS="amd64 ~amd64" ACCEPT_LICENSE="* -@EULA PUEL dlj-1.1 Oracle-BCLA-JavaSE MakeMKV-EULA AdobeFlash-11_beta google-chrome AdobeFlash-10.3 AdobeFlash-11.x" CBUILD="x86_64-pc-linux-gnu" CFLAGS="-O2 -march=znver1" CHOST="x86_64-pc-linux-gnu" CONFIG_PROTECT="/etc /usr/lib64/libreoffice/program/sofficerc /usr/share/config /usr/share/gnupg/qualified.txt /usr/share/themes/oxygen-gtk/gtk-2.0" 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 -march=znver1" DISTDIR="/usr/portage/distfiles" EMERGE_DEFAULT_OPTS="--with-bdeps=y" ENV_UNSET="DBUS_SESSION_BUS_ADDRESS DISPLAY GOBIN 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 sandbox sfperms strict unknown-features-warn unmerge-logs unmerge-orphans userfetch userpriv usersandbox usersync xattr" FFLAGS="-O2 -pipe" GENTOO_MIRRORS="ftp://ftp.wh2.tu-dresden.de/pub/mirrors/gentoo rsync://mirror.netcologne.de/gentoo/ https://linux.rz.ruhr-uni-bochum.de/download/gentoo-mirror/ https://ftp.halifax.rwth-aachen.de/gentoo/ rsync://ftp.halifax.rwth-aachen.de/gentoo/ rsync://ftp.fau.de/gentoo https://ftp-stud.hs-esslingen.de/pub/Mirrors/gentoo/" LANG="de_DE.UTF-8" LDFLAGS="-Wl,-O1 -Wl,--as-needed -Wl,-O1 -Wl,--as-needed" LINGUAS="de" MAKEOPTS="-j15" 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="64bit X a52 aac aacplus aacs accessibility acl acpi activities additions aio alsa amd64 apache2 apm archive asf audiofile avcodec avx bash-completion bluetooth bluray branding btrfs bzip2 c++0x cairo cdda cddb cdparanoia cdr cgi cli clucene cmake consolekit crypt css ctype cups curl cvs cxx dar64 dbus declarative dga discid dri dri3 drm dts dvd dvdr egl embedded emboss encode exif extensions extra fam fbcon fbcondecor fbsplash festival ffmpeg filter firefox flac foomaticdb fortran fts3 g3dvl gallium gbm gd gdbm gif git glamor gles gles2 glib gpm graphite graphviz grub gs gtk gtk3 gzip hbci hidpi hwdb hwinfo iconv icq icu id3tag imagemagick imlib inotify ipc jabber java java6 javascript jpeg jpeg2k json kdcraw kde kdepim keymap kipi kontact kpathsea kwallet ladspa lame latex lcms legacy-systray libinput libkms libnotify libtirpc libxml2 lm_sensors logrotate mad matroska mbrola mime mjpeg mmap mng mp3 mp4 mpeg mplayer mtp multilib multimedia musicbrainz mysql mysqli ncurses nls nptl nsplugin odbc offensive ogg ogm opengl openmp opus orc osc oscar pam pango pch pcre pdf pdo phonon php plasma png policykit ppds pulseaudio python python3 qmake qml qt5 qthelp quicktime raster rdesktop readline redeyes samba sasl scanner sdl seccomp secure-delete semantic-desktop sensord server slp smbclient sndfile soap sox speex spell split-usr sql srt sse3 sse4_1 ssl startup-notification subversion svg sysvipc taglib tcpd theora threads tidy tiff tokenizer truetype udev udisks unicode upcall upnp usb vaapi valgrind vdpau virtuoso vnc vorbis wayland webdav webkit widgets wmf wxwidgets x264 x265 xattr xcb xcomposite xine xinerama xinetd xml xmlreader xmlrpc xmlwriter xpm xprint xscreensaver xv xvid xvmc xwayland yaz zip zlib" ABI_X86="32 64" ALSA_CARDS="hda-intel usb-audio" APACHE2_MODULES="actions alias auth_basic auth_digest authn_anon authn_dbd authn_dbm authn_default authn_file authz_dbm authz_default authz_groupfile authz_host authz_owner authz_user autoindex cache dav dav_fs dav_lock dbd deflate dir disk_cache env expires ext_filter file_cache filter headers ident imagemap include info log_config logio mem_cache mime mime_magic negotiation rewrite setenvif so speling status unique_id userdir usertrack vhost_alias worker access compat socache_shmcb authn_core authz_core unixd" APACHE2_MPMS="worker" CALLIGRA_FEATURES="stage words" CAMERAS="directory ptp2" COLLECTD_PLUGINS="df interface irq load memory rrdtool swap syslog" CPU_FLAGS_X86="aes avx avx2 f16c fma3 mmx mmxext popcnt sse sse2 sse3 sse4_1 sse4_2 sse4a ssse3" ELIBC="glibc" GPSD_PROTOCOLS="ashtech aivdm earthmate evermore fv18 garmin garmintxt gpsclock isync itrax mtk3301 nmea ntrip navcom oceanserver oldstyle oncore rtcm104v2 rtcm104v3 sirf skytraq superstar2 timing tsip tripmate tnt ublox ubx" GRUB_PLATFORMS="pc" INPUT_DEVICES="libinput evdev wacom" KERNEL="linux" L10N="de" LCD_DEVICES="bayrad cfontz cfontz633 glk hd44780 lb216 lcdm001 mtxorb ncurses text" LIBREOFFICE_EXTENSIONS="presenter-console presenter-minimizer" NETBEANS_MODULES="apisupport cnd groovy gsf harness ide identity j2ee java mobility nb php profiler soa visualweb webcommon websvccommon xml" OFFICE_IMPLEMENTATION="libreoffice" PHP_TARGETS="php5-6" POSTGRES_TARGETS="postgres10 postgres11" PYTHON_SINGLE_TARGET="python3_6" PYTHON_TARGETS="python2_7 python3_6" RUBY_TARGETS="ruby22 ruby24 ruby25" SANE_BACKENDS="mustek_usb" USERLAND="GNU" VIDEO_CARDS="amdgpu radeonsi radeon" 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 What happens is that after running the commands the screen doesn't react to any input. But the machine is not crashed. I can login via ssh and after I kill kwin_wayland I can use the machine normally again. Thanks for any help
Hello, I have a Radeon R7 240 card, Code: #lspci 06:00.0 VGA compatible controller: Advanced Micro Devices, Inc. [AMD/ATI] Oland PRO [Radeon R7 240/340] (rev 87) 06:00.1 Audio device: Advanced Micro Devices, Inc. [AMD/ATI] Cape Verde/Pitcairn HDMI Audio [Radeon HD 7700/7800 Series] I have followed AMDGPU guide and dmesg shows Code: [ 7.846994] amdgpu 0000:06:00.0: enabling device (0000 -> 0003) [ 7.847081] [drm] initializing kernel modesetting (OLAND 0x1002:0x6613 0x1462:0x8094 0x87). [ 7.847081] amdgpu 0000:06:00.0: VM size (-1) must be a power of 2 [ 7.847090] [drm] register mmio base: 0xDC100000 [ 7.847090] [drm] register mmio size: 262144 [ 8.360923] [drm] GPU posting now... [ 8.367352] [drm] Changing default dispclk from 600Mhz to 625Mhz [ 8.367439] [drm] vm size is 64 GB, block size is 13-bit [ 8.367445] amdgpu 0000:06:00.0: VRAM: 2048M 0x0000000000000000 - 0x000000007FFFFFFF (2048M used) [ 8.367445] amdgpu 0000:06:00.0: GTT: 3072M 0x0000000080000000 - 0x000000013FFFFFFF [ 8.367452] [drm] Detected VRAM RAM=2048M, BAR=256M [ 8.367453] [drm] RAM width 128bits UNKNOWN [ 8.367484] [drm] amdgpu: 2048M of VRAM memory ready [ 8.367484] [drm] amdgpu: 3072M of GTT memory ready. [ 8.367488] [drm] GART: num cpu pages 786432, num gpu pages 786432 [ 8.369125] amdgpu 0000:06:00.0: PCIE GART of 3072M enabled (table at 0x0000000000040000). [ 8.369138] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013). [ 8.369138] [drm] Driver supports precise vblank timestamp query. [ 8.369158] amdgpu 0000:06:00.0: amdgpu: using MSI. [ 8.369169] [drm] amdgpu: irq initialized. [ 8.369174] [drm] probing gen 2 caps for device 10b5:8747 = 10796903/10e [ 8.369185] [drm] Internal thermal controller with fan control [ 8.369191] [drm] amdgpu: dpm initialized [ 8.369248] [drm] AMDGPU Display Connectors [ 8.369248] [drm] Connector 0: [ 8.369249] [drm] HDMI-A-1 [ 8.369249] [drm] HPD1 [ 8.369249] [drm] DDC: 0x194c 0x194c 0x194d 0x194d 0x194e 0x194e 0x194f 0x194f [ 8.369250] [drm] Encoders: [ 8.369250] [drm] DFP1: INTERNAL_UNIPHY [ 8.369250] [drm] Connector 1: [ 8.369250] [drm] DVI-D-1 [ 8.369251] [drm] HPD2 [ 8.369251] [drm] DDC: 0x1950 0x1950 0x1951 0x1951 0x1952 0x1952 0x1953 0x1953 [ 8.369251] [drm] Encoders: [ 8.369252] [drm] DFP2: INTERNAL_UNIPHY [ 8.369252] [drm] Connector 2: [ 8.369252] [drm] VGA-1 [ 8.369253] [drm] DDC: 0x1970 0x1970 0x1971 0x1971 0x1972 0x1972 0x1973 0x1973 [ 8.369253] [drm] Encoders: [ 8.369253] [drm] CRT1: INTERNAL_KLDSCP_DAC1 [ 8.370819] amdgpu 0000:06:00.0: fence driver on ring 0 use gpu addr 0x0000000080000010, cpu addr 0xffff8d05b0784010 [ 8.370848] amdgpu 0000:06:00.0: fence driver on ring 1 use gpu addr 0x0000000080000020, cpu addr 0xffff8d05b0784020 [ 8.370885] amdgpu 0000:06:00.0: fence driver on ring 2 use gpu addr 0x0000000080000030, cpu addr 0xffff8d05b0784030 [ 8.370913] amdgpu 0000:06:00.0: fence driver on ring 3 use gpu addr 0x0000000080000040, cpu addr 0xffff8d05b0784040 [ 8.370947] amdgpu 0000:06:00.0: fence driver on ring 4 use gpu addr 0x0000000080000050, cpu addr 0xffff8d05b0784050 [ 8.371056] [drm] probing gen 2 caps for device 10b5:8747 = 10796903/10e [ 8.371058] [drm] PCIE gen 3 link speeds already enabled [ 8.552104] [drm] ring test on 0 succeeded in 10 usecs [ 8.554110] [drm] ring test on 1 succeeded in 1 usecs [ 8.554114] [drm] ring test on 2 succeeded in 1 usecs [ 8.554120] [drm] ring test on 3 succeeded in 3 usecs [ 8.554125] [drm] ring test on 4 succeeded in 3 usecs [ 8.554256] [drm] ib test on ring 0 succeeded [ 8.554268] [drm] ib test on ring 1 succeeded [ 8.554281] [drm] ib test on ring 2 succeeded [ 8.554291] [drm] ib test on ring 3 succeeded [ 8.554300] [drm] ib test on ring 4 succeeded [ 8.565991] [drm] Cannot find any crtc or sizes - going 1024x768 [ 8.566449] [drm] fb mappable at 0x90644000 [ 8.566450] [drm] vram apper at 0x90000000 [ 8.566452] [drm] size 3145728 [ 8.566452] [drm] fb depth is 24 [ 8.566453] [drm] pitch is 4096 However X fails to load Code: #cat /var/log/Xorg.0.log [ 1215.668] X.Org X Server 1.19.5 Release Date: 2017-10-12 [ 1215.668] X Protocol Version 11, Revision 0 [ 1215.668] Build Operating System: Linux 4.12.12-gentoo x86_64 Gentoo [ 1215.668] Current Operating System: Linux tvbox 4.12.12-gentoo #2 SMP Sat Dec 30 08:04:01 IST 2017 x86_64 [ 1215.668] Kernel command line: BOOT_IMAGE=Gentoo ro root=802 [ 1215.668] Build Date: 30 December 2017 08:14:28AM [ 1215.668] [ 1215.668] Current version of pixman: 0.34.0 [ 1215.668] Before reporting problems, check http://wiki.x.org to make sure that you have the latest version. [ 1215.668] Markers: (--) probed, (**) from config file, (==) default setting, (++) from command line, (!!) notice, (II) informational, (WW) warning, (EE) error, (NI) not implemented, (??) unknown. [ 1215.668] (==) Log file: "/var/log/Xorg.0.log", Time: Sat Dec 30 08:29:04 2017 [ 1215.668] (==) Using config directory: "/etc/X11/xorg.conf.d" [ 1215.668] (==) Using system config directory "/usr/share/X11/xorg.conf.d" [ 1215.668] (==) No Layout section. Using the first Screen section. [ 1215.668] (==) No screen section available. Using defaults. [ 1215.668] (**) |-->Screen "Default Screen Section" (0) [ 1215.668] (**) | |-->Monitor "<default monitor>" [ 1215.668] (==) No monitor specified for screen "Default Screen Section". Using a default monitor configuration. [ 1215.668] (==) Automatically adding devices [ 1215.668] (==) Automatically enabling devices [ 1215.668] (==) Automatically adding GPU devices [ 1215.668] (==) Max clients allowed: 256, resource mask: 0x1fffff [ 1215.668] (WW) The directory "/usr/share/fonts/TTF/" does not exist. [ 1215.668] Entry deleted from font path. [ 1215.668] (WW) The directory "/usr/share/fonts/OTF/" does not exist. [ 1215.668] Entry deleted from font path. [ 1215.668] (WW) The directory "/usr/share/fonts/Type1/" does not exist. [ 1215.668] Entry deleted from font path. [ 1215.668] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/100dpi/". [ 1215.668] Entry deleted from font path. [ 1215.668] (Run 'mkfontdir' on "/usr/share/fonts/100dpi/"). [ 1215.668] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/75dpi/". [ 1215.668] Entry deleted from font path. [ 1215.668] (Run 'mkfontdir' on "/usr/share/fonts/75dpi/"). [ 1215.668] (==) FontPath set to: /usr/share/fonts/misc/ [ 1215.668] (**) ModulePath set to "/usr/lib64/xorg/modules" [ 1215.668] (II) The server relies on udev to provide the list of input devices. If no devices become available, reconfigure udev or disable AutoAddDevices. [ 1215.668] (II) Loader magic: 0x562355589c60 [ 1215.668] (II) Module ABI versions: [ 1215.668] X.Org ANSI C Emulation: 0.4 [ 1215.668] X.Org Video Driver: 23.0 [ 1215.668] X.Org XInput driver : 24.1 [ 1215.668] X.Org Server Extension : 10.0 [ 1215.669] (II) xfree86: Adding drm device (/dev/dri/card0) [ 1215.671] (--) PCI: (0:6:0:0) 1002:6613:1462:8094 rev 135, Mem @ 0x90000000/268435456, 0xdc100000/262144, I/O @ 0x0000b000/256, BIOS @ 0x????????/131072 [ 1215.671] (--) PCI: (0:11:8:0) 4444:0016:0070:e807 rev 1, Mem @ 0xa4000000/67108864 [ 1215.671] (--) PCI: (0:11:9:0) 4444:0016:0070:e817 rev 1, Mem @ 0xa0000000/67108864 [ 1215.671] (--) PCI:*(0:13:0:0) 1a03:2000:15d9:0907 rev 48, Mem @ 0xdb000000/16777216, 0xdc000000/131072, I/O @ 0x0000d000/128, BIOS @ 0x????????/131072 [ 1215.671] (II) LoadModule: "glx" [ 1215.671] (II) Loading /usr/lib64/xorg/modules/extensions/libglx.so [ 1215.671] (II) Module glx: vendor="X.Org Foundation" [ 1215.671] compiled for 1.19.5, module version = 1.0.0 [ 1215.671] ABI class: X.Org Server Extension, version 10.0 [ 1215.671] (II) Applying OutputClass "AMDgpu" to /dev/dri/card0 [ 1215.671] loading driver: amdgpu [ 1215.671] (==) Matched amdgpu as autoconfigured driver 0 [ 1215.671] (==) Matched ati as autoconfigured driver 1 [ 1215.671] (==) Matched ast as autoconfigured driver 2 [ 1215.671] (==) Matched modesetting as autoconfigured driver 3 [ 1215.671] (==) Matched fbdev as autoconfigured driver 4 [ 1215.671] (==) Matched vesa as autoconfigured driver 5 [ 1215.671] (==) Assigned the driver to the xf86ConfigLayout [ 1215.671] (II) LoadModule: "amdgpu" [ 1215.671] (II) Loading /usr/lib64/xorg/modules/drivers/amdgpu_drv.so [ 1215.671] (II) Module amdgpu: vendor="X.Org Foundation" [ 1215.671] compiled for 1.19.5, module version = 1.3.0 [ 1215.671] Module class: X.Org Video Driver [ 1215.671] ABI class: X.Org Video Driver, version 23.0 [ 1215.671] (II) LoadModule: "ati" [ 1215.671] (WW) Warning, couldn't open module ati [ 1215.671] (II) UnloadModule: "ati" [ 1215.671] (II) Unloading ati [ 1215.671] (EE) Failed to load module "ati" (module does not exist, 0) [ 1215.671] (II) LoadModule: "ast" [ 1215.672] (WW) Warning, couldn't open module ast [ 1215.672] (II) UnloadModule: "ast" [ 1215.672] (II) Unloading ast [ 1215.672] (EE) Failed to load module "ast" (module does not exist, 0) [ 1215.672] (II) LoadModule: "modesetting" [ 1215.672] (II) Loading /usr/lib64/xorg/modules/drivers/modesetting_drv.so [ 1215.672] (II) Module modesetting: vendor="X.Org Foundation" [ 1215.672] compiled for 1.19.5, module version = 1.19.5 [ 1215.672] Module class: X.Org Video Driver [ 1215.672] ABI class: X.Org Video Driver, version 23.0 [ 1215.672] (II) LoadModule: "fbdev" [ 1215.672] (II) Loading /usr/lib64/xorg/modules/drivers/fbdev_drv.so [ 1215.672] (II) Module fbdev: vendor="X.Org Foundation" [ 1215.672] compiled for 1.19.5, module version = 0.4.4 [ 1215.672] Module class: X.Org Video Driver [ 1215.672] ABI class: X.Org Video Driver, version 23.0 [ 1215.672] (II) LoadModule: "vesa" [ 1215.672] (II) Loading /usr/lib64/xorg/modules/drivers/vesa_drv.so [ 1215.672] (II) Module vesa: vendor="X.Org Foundation" [ 1215.672] compiled for 1.19.5, module version = 2.3.4 [ 1215.672] Module class: X.Org Video Driver [ 1215.672] ABI class: X.Org Video Driver, version 23.0 [ 1215.672] (II) AMDGPU: Driver for AMD Radeon: All GPUs supported by the amdgpu kernel driver [ 1215.672] (II) modesetting: Driver for Modesetting Kernel Drivers: kms [ 1215.672] (II) FBDEV: driver for framebuffer: fbdev [ 1215.672] (II) VESA: driver for VESA chipsets: vesa [ 1215.672] (--) using VT number 7 [ 1215.673] (II) [KMS] Kernel modesetting enabled. [ 1215.673] (WW) Falling back to old probe method for modesetting [ 1215.673] (II) Loading sub module "fbdevhw" [ 1215.673] (II) LoadModule: "fbdevhw" [ 1215.673] (II) Loading /usr/lib64/xorg/modules/libfbdevhw.so [ 1215.673] (II) Module fbdevhw: vendor="X.Org Foundation" [ 1215.673] compiled for 1.19.5, module version = 0.0.2 [ 1215.673] ABI class: X.Org Video Driver, version 23.0 [ 1215.673] (**) FBDEV(1): claimed PCI slot 13@0:0:0 [ 1215.673] (II) FBDEV(1): using default device [ 1215.673] (WW) Falling back to old probe method for vesa [ 1215.673] (EE) Screen 0 deleted because of no matching config section. [ 1215.673] (II) UnloadModule: "modesetting" [ 1215.673] (II) FBDEV(0): Creating default Display subsection in Screen section "Default Screen Section" for depth/fbbpp 24/32 [ 1215.673] (==) FBDEV(0): Depth 24, (==) framebuffer bpp 32 [ 1215.673] (==) FBDEV(0): RGB weight 888 [ 1215.673] (==) FBDEV(0): Default visual is TrueColor [ 1215.673] (==) FBDEV(0): Using gamma correction (1.0, 1.0, 1.0) [ 1215.673] (II) FBDEV(0): hardware: amdgpudrmfb (video memory: 3072kB) [ 1215.673] (II) FBDEV(0): checking modes against framebuffer device... [ 1215.673] (II) FBDEV(0): checking modes against monitor... [ 1215.673] (--) FBDEV(0): Virtual size is 1024x768 (pitch 1024) [ 1215.673] (**) FBDEV(0): Built-in mode "current" [ 1215.673] (==) FBDEV(0): DPI set to (96, 96) [ 1215.673] (II) Loading sub module "fb" [ 1215.673] (II) LoadModule: "fb" [ 1215.673] (II) Loading /usr/lib64/xorg/modules/libfb.so [ 1215.674] (II) Module fb: vendor="X.Org Foundation" [ 1215.674] compiled for 1.19.5, module version = 1.0.0 [ 1215.674] ABI class: X.Org ANSI C Emulation, version 0.4 [ 1215.674] (**) FBDEV(0): using shadow framebuffer [ 1215.674] (II) Loading sub module "shadow" [ 1215.674] (II) LoadModule: "shadow" [ 1215.674] (II) Loading /usr/lib64/xorg/modules/libshadow.so [ 1215.674] (II) Module shadow: vendor="X.Org Foundation" [ 1215.674] compiled for 1.19.5, module version = 1.1.0 [ 1215.674] ABI class: X.Org ANSI C Emulation, version 0.4 [ 1215.674] (==) AMDGPU(G0): Depth 24, (--) framebuffer bpp 32 [ 1215.674] (II) AMDGPU(G0): Pixel depth = 24 bits stored in 4 bytes (32 bpp pixmaps) [ 1215.674] (==) AMDGPU(G0): Default visual is TrueColor [ 1215.674] (==) AMDGPU(G0): RGB weight 888 [ 1215.674] (II) AMDGPU(G0): Using 8 bits per RGB (8 bit DAC) [ 1215.674] (--) AMDGPU(G0): Chipset: "Unknown AMD Radeon GPU" (ChipID = 0x6613) [ 1215.674] (II) Loading sub module "fb" [ 1215.674] (II) LoadModule: "fb" [ 1215.674] (II) Loading /usr/lib64/xorg/modules/libfb.so [ 1215.674] (II) Module fb: vendor="X.Org Foundation" [ 1215.674] compiled for 1.19.5, module version = 1.0.0 [ 1215.674] ABI class: X.Org ANSI C Emulation, version 0.4 [ 1215.674] (II) Loading sub module "dri2" [ 1215.674] (II) LoadModule: "dri2" [ 1215.674] (II) Module "dri2" already built-in [ 1215.705] (II) Loading sub module "glamoregl" [ 1215.705] (II) LoadModule: "glamoregl" [ 1215.705] (II) Loading /usr/lib64/xorg/modules/libglamoregl.so [ 1215.708] (II) Module glamoregl: vendor="X.Org Foundation" [ 1215.708] compiled for 1.19.5, module version = 1.0.0 [ 1215.708] ABI class: X.Org ANSI C Emulation, version 0.4 [ 1215.708] (II) glamor: OpenGL accelerated X.org driver based. [ 1215.709] (II) glamor: EGL version 1.5 (DRI2): [ 1215.709] (II) AMDGPU(G0): glamor detected, initialising EGL layer. [ 1215.709] (==) AMDGPU(G0): TearFree property default: auto [ 1215.711] (II) AMDGPU(G0): Output HDMI-A-1-0 has no monitor section [ 1215.712] (II) AMDGPU(G0): Output DVI-D-1-0 has no monitor section [ 1215.720] (II) AMDGPU(G0): Output VGA-1-0 has no monitor section [ 1215.721] (II) AMDGPU(G0): EDID for output HDMI-A-1-0 [ 1215.722] (II) AMDGPU(G0): EDID for output DVI-D-1-0 [ 1215.730] (II) AMDGPU(G0): EDID for output VGA-1-0 [ 1215.730] (II) AMDGPU(G0): mem size init: gart size :bfee5000 vram size: s:7f6bd000 visible:f6bd000 [ 1215.730] (==) AMDGPU(G0): DPI set to (96, 96) [ 1215.730] (==) AMDGPU(G0): Using gamma correction (1.0, 1.0, 1.0) [ 1215.730] (II) Loading sub module "ramdac" [ 1215.730] (II) LoadModule: "ramdac" [ 1215.730] (II) Module "ramdac" already built-in [ 1215.730] (II) UnloadModule: "vesa" [ 1215.730] (II) Unloading vesa [ 1215.730] (==) Depth 24 pixmap format is 32 bpp [ 1215.730] (II) AMDGPU(G0): [DRI2] Setup complete [ 1215.730] (II) AMDGPU(G0): [DRI2] DRI driver: radeonsi [ 1215.730] (II) AMDGPU(G0): [DRI2] VDPAU driver: radeonsi [ 1215.730] (II) AMDGPU(G0): Front buffer pitch: 4096 bytes [ 1215.730] (==) AMDGPU(G0): Backing store enabled [ 1215.730] (II) AMDGPU(G0): Direct rendering enabled [ 1215.743] (II) AMDGPU(G0): Use GLAMOR acceleration. [ 1215.743] (II) AMDGPU(G0): Acceleration enabled [ 1215.743] (==) AMDGPU(G0): DPMS enabled [ 1215.743] (==) AMDGPU(G0): Silken mouse enabled [ 1215.743] (II) AMDGPU(G0): RandR 1.2 enabled, ignore the following RandR disabled message. [ 1215.743] (==) FBDEV(0): Backing store enabled [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (EE) FBDEV(0): FBIOPUTCMAP: Device or resource busy [ 1215.743] (==) FBDEV(0): DPMS enabled [ 1215.743] (--) RandR disabled [ 1215.744] (II) AIGLX: Screen 0 is not DRI2 capable [ 1215.744] (EE) AIGLX: reverting to software rendering [ 1215.744] (II) IGLX: enabled GLX_MESA_copy_sub_buffer [ 1215.744] (II) IGLX: Loaded and initialized swrast [ 1215.744] (II) GLX: Initialized DRISWRAST GL provider for screen 0 [ 1215.745] (EE) [ 1215.745] (EE) Backtrace: [ 1215.745] (EE) 0: /usr/bin/X (xorg_backtrace+0x4a) [0x562355303eca] [ 1215.745] (EE) 1: /usr/bin/X (0x562355156000+0x1b1bd9) [0x562355307bd9] [ 1215.745] (EE) 2: /lib64/libpthread.so.0 (0x7f7e88e0c000+0x13e00) [0x7f7e88e1fe00] [ 1215.745] (EE) 3: /usr/bin/X (RRSetChanged+0x92) [0x562355261b32] [ 1215.745] (EE) 4: /usr/bin/X (RRScreenSetSizeRange+0x54) [0x5623552666f4] [ 1215.745] (EE) 5: /usr/bin/X (xf86RandR12CreateScreenResources+0x310) [0x562355225950] [ 1215.745] (EE) 6: /usr/bin/X (0x562355156000+0xc2aa0) [0x562355218aa0] [ 1215.745] (EE) 7: /usr/bin/X (0x562355156000+0x54911) [0x5623551aa911] [ 1215.745] (EE) 8: /lib64/libc.so.6 (__libc_start_main+0xf1) [0x7f7e88a7d541] [ 1215.745] (EE) 9: /usr/bin/X (_start+0x2a) [0x5623551946ea] [ 1215.745] (EE) [ 1215.745] (EE) Segmentation fault at address 0xb8 [ 1215.745] (EE) Fatal server error: [ 1215.745] (EE) Caught signal 11 (Segmentation fault). Server aborting [ 1215.745] (EE) [ 1215.745] (EE) Please consult the The X.Org Foundation support at http://wiki.x.org for help. [ 1215.745] (EE) Please also check the log file at "/var/log/Xorg.0.log" for additional information. [ 1215.745] (EE) [ 1215.747] (EE) Server terminated with error (1). Closing log file. Any idea why this is failing?
I initially had Code: VIDEO_CARDS="dummy fbdev intel v4l vesa nvidia vmware nv amdgpu radeonsi" After reducing to Code: VIDEO_CARDS="amdgpu" I get, Code: Release Date: 2017-10-12 [ 304.016] X Protocol Version 11, Revision 0 [ 304.016] Build Operating System: Linux 4.12.12-gentoo x86_64 Gentoo [ 304.016] Current Operating System: Linux tvbox 4.12.12-gentoo #2 SMP Sat Dec 30 08:04:01 IST 2017 x86_64 [ 304.016] Kernel command line: auto BOOT_IMAGE=Gentoo ro root=802 [ 304.016] Build Date: 30 December 2017 09:35:01AM [ 304.016] [ 304.016] Current version of pixman: 0.34.0 [ 304.016] Before reporting problems, check http://wiki.x.org to make sure that you have the latest version. [ 304.016] Markers: (--) probed, (**) from config file, (==) default setting, (++) from command line, (!!) notice, (II) informational, (WW) warning, (EE) error, (NI) not implemented, (??) unknown. [ 304.016] (==) Log file: "/var/log/Xorg.0.log", Time: Sat Dec 30 09:45:06 2017 [ 304.016] (==) Using system config directory "/usr/share/X11/xorg.conf.d" [ 304.016] (==) No Layout section. Using the first Screen section. [ 304.016] (==) No screen section available. Using defaults. [ 304.016] (**) |-->Screen "Default Screen Section" (0) [ 304.016] (**) | |-->Monitor "<default monitor>" [ 304.016] (==) No monitor specified for screen "Default Screen Section". Using a default monitor configuration. [ 304.016] (==) Automatically adding devices [ 304.016] (==) Automatically enabling devices [ 304.016] (==) Automatically adding GPU devices [ 304.016] (==) Max clients allowed: 256, resource mask: 0x1fffff [ 304.016] (WW) The directory "/usr/share/fonts/TTF/" does not exist. [ 304.016] Entry deleted from font path. [ 304.016] (WW) The directory "/usr/share/fonts/OTF/" does not exist. [ 304.016] Entry deleted from font path. [ 304.016] (WW) The directory "/usr/share/fonts/Type1/" does not exist. [ 304.016] Entry deleted from font path. [ 304.016] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/100dpi/". [ 304.016] Entry deleted from font path. [ 304.016] (Run 'mkfontdir' on "/usr/share/fonts/100dpi/"). [ 304.016] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/75dpi/". [ 304.016] Entry deleted from font path. [ 304.016] (Run 'mkfontdir' on "/usr/share/fonts/75dpi/"). [ 304.016] (==) FontPath set to: /usr/share/fonts/misc/ [ 304.016] (==) ModulePath set to "/usr/lib64/xorg/modules" [ 304.016] (II) The server relies on udev to provide the list of input devices. If no devices become available, reconfigure udev or disable AutoAddDevices. [ 304.016] (II) Loader magic: 0x55688ae65c60 [ 304.016] (II) Module ABI versions: [ 304.016] X.Org ANSI C Emulation: 0.4 [ 304.016] X.Org Video Driver: 23.0 [ 304.016] X.Org XInput driver : 24.1 [ 304.016] X.Org Server Extension : 10.0 [ 304.016] (II) xfree86: Adding drm device (/dev/dri/card0) [ 304.019] (--) PCI: (0:6:0:0) 1002:6613:1462:8094 rev 135, Mem @ 0x90000000/268435456, 0xdc100000/262144, I/O @ 0x0000b000/256, BIOS @ 0x????????/131072 [ 304.019] (--) PCI: (0:11:8:0) 4444:0016:0070:17f7 rev 1, Mem @ 0xa4000000/67108864 [ 304.019] (--) PCI: (0:11:9:0) 4444:0016:0070:17e7 rev 1, Mem @ 0xa0000000/67108864 [ 304.019] (--) PCI:*(0:13:0:0) 1a03:2000:15d9:0907 rev 48, Mem @ 0xdb000000/16777216, 0xdc000000/131072, I/O @ 0x0000d000/128, BIOS @ 0x????????/131072 [ 304.019] (II) LoadModule: "glx" [ 304.019] (II) Loading /usr/lib64/xorg/modules/extensions/libglx.so [ 304.019] (II) Module glx: vendor="X.Org Foundation" [ 304.019] compiled for 1.19.5, module version = 1.0.0 [ 304.019] ABI class: X.Org Server Extension, version 10.0 [ 304.019] (II) Applying OutputClass "AMDgpu" to /dev/dri/card0 [ 304.019] loading driver: amdgpu [ 304.019] (==) Matched amdgpu as autoconfigured driver 0 [ 304.019] (==) Matched ati as autoconfigured driver 1 [ 304.019] (==) Matched ast as autoconfigured driver 2 [ 304.019] (==) Matched modesetting as autoconfigured driver 3 [ 304.019] (==) Matched fbdev as autoconfigured driver 4 [ 304.019] (==) Matched vesa as autoconfigured driver 5 [ 304.019] (==) Assigned the driver to the xf86ConfigLayout [ 304.019] (II) LoadModule: "amdgpu" [ 304.019] (II) Loading /usr/lib64/xorg/modules/drivers/amdgpu_drv.so [ 304.019] (II) Module amdgpu: vendor="X.Org Foundation" [ 304.019] compiled for 1.19.5, module version = 1.3.0 [ 304.019] Module class: X.Org Video Driver [ 304.019] ABI class: X.Org Video Driver, version 23.0 [ 304.019] (II) LoadModule: "ati" [ 304.019] (WW) Warning, couldn't open module ati [ 304.019] (II) UnloadModule: "ati" [ 304.019] (II) Unloading ati [ 304.019] (EE) Failed to load module "ati" (module does not exist, 0) [ 304.019] (II) LoadModule: "ast" [ 304.019] (WW) Warning, couldn't open module ast [ 304.019] (II) UnloadModule: "ast" [ 304.019] (II) Unloading ast [ 304.019] (EE) Failed to load module "ast" (module does not exist, 0) [ 304.019] (II) LoadModule: "modesetting" [ 304.019] (II) Loading /usr/lib64/xorg/modules/drivers/modesetting_drv.so [ 304.019] (II) Module modesetting: vendor="X.Org Foundation" [ 304.019] compiled for 1.19.5, module version = 1.19.5 [ 304.019] Module class: X.Org Video Driver [ 304.019] ABI class: X.Org Video Driver, version 23.0 [ 304.019] (II) LoadModule: "fbdev" [ 304.019] (WW) Warning, couldn't open module fbdev [ 304.019] (II) UnloadModule: "fbdev" [ 304.019] (II) Unloading fbdev [ 304.019] (EE) Failed to load module "fbdev" (module does not exist, 0) [ 304.019] (II) LoadModule: "vesa" [ 304.020] (WW) Warning, couldn't open module vesa [ 304.020] (II) UnloadModule: "vesa" [ 304.020] (II) Unloading vesa [ 304.020] (EE) Failed to load module "vesa" (module does not exist, 0) [ 304.020] (II) AMDGPU: Driver for AMD Radeon: All GPUs supported by the amdgpu kernel driver [ 304.020] (II) modesetting: Driver for Modesetting Kernel Drivers: kms [ 304.020] (--) using VT number 7 [ 304.021] (II) [KMS] Kernel modesetting enabled. [ 304.021] (WW) Falling back to old probe method for modesetting [ 304.021] (EE) Screen 0 deleted because of no matching config section. [ 304.021] (II) UnloadModule: "modesetting" [ 304.021] (EE) Device(s) detected, but none match those in the config file. [ 304.021] (EE) Fatal server error: [ 304.021] (EE) no screens found(EE) [ 304.021] (EE) Please consult the The X.Org Foundation support at http://wiki.x.org for help. [ 304.021] (EE) Please also check the log file at "/var/log/Xorg.0.log" for additional information. [ 304.021] (EE) [ 304.023] (EE) Server terminated with error (1). Closing log file.
I installed Gentoo and from under it installed KDE (with all its applications) according to this instruction . But when I rebooted my computer, I didn't see the classic KDE interface (window for entering the password), but instead again the command interpreter. How to get into a comfortable KDE environment?
Welcome to gentoo forums! You installed plasma-meta? In your system is installed sddm? If yes sddm is in video group? You can post /var/log/sddm.log with wgetpaste?
Hi, I want to return from QT 5.13 back to QT 5.12. I've uninstalled all QT packages and now I'm not able to compile qtquickcontrols and qtquickcontrols2 packages. In log is message: Some of the required modules (qtHaveModule(quick)) are not available. Skipped. And I can't find what is missing there. I have second computer with the same QT version and it compiles fine there. I'm not able to find out what is the difference And without qtquickcontrols2 I'm not able to merge kde-frameworks/kirigami Any hint what could be wrong? It makes me crazy. Code: # emerge -1av qtquickcontrols2 These are the packages that would be merged, in order: Calculating dependencies... done! [ebuild N ] dev-qt/qtquickcontrols2-5.12.5:5/5.12::gentoo USE="widgets -debug -test" 0 KiB Total: 1 package (1 new), Size of downloads: 0 KiB Would you like to merge these packages? [Yes/No] >>> Verifying ebuild manifests >>> Emerging (1 of 1) dev-qt/qtquickcontrols2-5.12.5::gentoo * qtquickcontrols2-everywhere-src-5.12.5.tar.xz BLAKE2B SHA512 size ;-) ... [ ok ] >>> Unpacking source... >>> Unpacking qtquickcontrols2-everywhere-src-5.12.5.tar.xz to /var/tmp/portage/dev-qt/qtquickcontrols2-5.12.5/work >>> Source unpacked in /var/tmp/portage/dev-qt/qtquickcontrols2-5.12.5/work >>> Preparing source in /var/tmp/portage/dev-qt/qtquickcontrols2-5.12.5/work/qtquickcontrols2-everywhere-src-5.12.5 ... >>> Source prepared. >>> Configuring source in /var/tmp/portage/dev-qt/qtquickcontrols2-5.12.5/work/qtquickcontrols2-everywhere-src-5.12.5 ... * Running qt5_qmake Info: creating stash file /var/tmp/portage/dev-qt/qtquickcontrols2-5.12.5/work/qtquickcontrols2-everywhere-src-5.12.5/.qmake.stash Info: creating cache file /var/tmp/portage/dev-qt/qtquickcontrols2-5.12.5/work/qtquickcontrols2-everywhere-src-5.12.5/.qmake.cache Running configuration tests... Done running configuration tests. Configure summary: Qt Quick Controls 2: Styles ................................. Default Fusion Imagine Material Universal Qt Quick Templates 2: Hover support .......................... yes Multi-touch support .................... yes Qt is now configured for building. Just run 'make'. Once everything is built, you must run 'make install'. Qt will be installed into '/usr'. Prior to reconfiguration, make sure you remove any leftovers from the previous build. >>> Source configured. >>> Compiling source in /var/tmp/portage/dev-qt/qtquickcontrols2-5.12.5/work/qtquickcontrols2-everywhere-src-5.12.5 ... * Running emake make -j9 Some of the required modules (qtHaveModule(quick)) are not available. Skipped. >>> Source compiled. * Skipping make test/check due to ebuild restriction. >>> Test phase [disabled because of RESTRICT=test]: dev-qt/qtquickcontrols2-5.12.5 >>> Install dev-qt/qtquickcontrols2-5.12.5 into /var/tmp/portage/dev-qt/qtquickcontrols2-5.12.5/image * Running emake INSTALL_ROOT=/var/tmp/portage/dev-qt/qtquickcontrols2-5.12.5/image install make -j9 INSTALL_ROOT=/var/tmp/portage/dev-qt/qtquickcontrols2-5.12.5/image install Some of the required modules (qtHaveModule(quick)) are not available. Skipped. >>> Completed installing dev-qt/qtquickcontrols2-5.12.5 into /var/tmp/portage/dev-qt/qtquickcontrols2-5.12.5/image * Final size of build directory: 30772 KiB (30.0 MiB) * Final size of installed tree: 0 KiB >>> Installing (1 of 1) dev-qt/qtquickcontrols2-5.12.5::gentoo * checking 0 files for package collisions >>> Merging dev-qt/qtquickcontrols2-5.12.5 to / * Regenerating gentoo-qconfig.h * Updating QT_CONFIG in qconfig.pri * Updating QT.global_private in qmodule.pri >>> dev-qt/qtquickcontrols2-5.12.5 merged. >>> Auto-cleaning packages... Code: # emerge --info Portage 2.3.76 (python 3.6.9-final-0, default/linux/amd64/17.1/desktop/plasma, gcc-8.3.0, glibc-2.29-r2, 5.3.9-gentoo x86_64) ================================================================= System uname: Linux-5.3.9-gentoo-x86_64-Intel-R-_Core-TM-_i7-4700MQ_CPU_@_2.40GHz-with-gentoo-2.6 KiB Mem: 16303488 total, 4867484 free KiB Swap: 8388604 total, 8387580 free Timestamp of repository gentoo: Thu, 14 Nov 2019 06:49:45 +0000 Head commit of repository gentoo: 421b91848ee08d386b1d9ca5fc751690a5c28dd7 sh bash 4.4_p23-r1 ld GNU ld (Gentoo 2.32 p2) 2.32.0 app-shells/bash: 4.4_p23-r1::gentoo dev-java/java-config: 2.2.0-r4::gentoo dev-lang/perl: 5.28.2-r1::gentoo dev-lang/python: 2.7.16::gentoo, 3.5.7::gentoo, 3.6.9::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.41.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.16.1-r1::gentoo sys-devel/binutils: 2.32-r1::gentoo sys-devel/gcc: 8.3.0-r1::gentoo, 9.2.0-r2::gentoo sys-devel/gcc-config: 2.1::gentoo sys-devel/libtool: 2.4.6-r3::gentoo sys-devel/make: 4.2.1-r4::gentoo sys-kernel/linux-headers: 5.3-r1::gentoo (virtual/os-headers) sys-libs/glibc: 2.29-r2::gentoo Repositories: gentoo location: /mnt/dba/portage/tree sync-type: git sync-uri: https://github.com/gentoo-mirror/gentoo priority: -1000 mkyral location: /usr/local/portage masters: gentoo priority: 0 crossdev location: /usr/local/portage-crossdev masters: gentoo priority: 10 alexxy location: /var/lib/layman/alexxy masters: gentoo priority: 50 booboo location: /var/lib/layman/booboo masters: gentoo priority: 50 fordfrog location: /var/lib/layman/fordfrog masters: gentoo priority: 50 haarp location: /var/lib/layman/haarp masters: gentoo priority: 50 kde location: /var/lib/layman/kde masters: gentoo priority: 50 rion location: /var/lib/layman/rion masters: gentoo priority: 50 seden location: /var/lib/layman/seden masters: gentoo priority: 50 ACCEPT_KEYWORDS="amd64" ACCEPT_LICENSE="@FREE" CBUILD="x86_64-pc-linux-gnu" CFLAGS="-march=native -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/php/apache2-php7.3/ext-active/ /etc/php/cgi-php7.3/ext-active/ /etc/php/cli-php7.3/ext-active/ /etc/revdep-rebuild /etc/sandbox.d /etc/terminfo" CXXFLAGS="-march=native -O2 -pipe" DISTDIR="/mnt/dba/portage/distfiles" EMERGE_DEFAULT_OPTS="--keep-going --with-bdeps=y --backtrack=30" ENV_UNSET="DBUS_SESSION_BUS_ADDRESS DISPLAY GOBIN 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 sandbox sfperms splitdebug strict unknown-features-warn unmerge-logs unmerge-orphans userfetch userpriv usersandbox usersync xattr" FFLAGS="-O2 -pipe" GENTOO_MIRRORS="http://gentoo.supp.name/ http://ftp.fi.muni.cz/pub/linux/gentoo/ https://mirror.dkm.cz/gentoo/ http://gentoo.mirror.web4u.cz/ ftp://gentoo.mirror.web4u.cz/ http://ftp-stud.hs-esslingen.de/pub/Mirrors/gentoo/" LANG="cs_CZ.utf8" LDFLAGS="-Wl,-O1 -Wl,--as-needed" LINGUAS="cs" MAKEOPTS="-j9" PKGDIR="/mnt/dba/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 activities alsa amd64 berkdb bindist bluetooth boost branding bzip2 cairo cdda cdr cli consolekit crypt cups curl cxx dbus declarative dri dts dvd dvdr emboss encode exif fam flac fortran gdbm gif git gnutls gpm gstreamer gtk3 iconv icu imagemagick iproute2 ipv6 jpeg kde kipi kwallet lcms libnotify libtirpc mad mng mp3 mp4 mpeg mplayer multilib ncurses nls nptl nsplugin ogg opengl openmp pam pango pcre pdf phonon plasma png policykit ppds python qml qt5 raw readline sdl seccomp semantic-desktop smp spell split-usr sqlite ssl startup-notification subversion svg tcpd thumbnail tiff truetype udev udisks unicode upower usb vorbis widgets wxwidgets x264 xattr xcb xcomposite xml xpm xv xvid zlib" ABI_X86="64" ADA_TARGET="gnat_2018" ALSA_CARDS="hda-intel" 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" GRUB_PLATFORMS="pc" INPUT_DEVICES="evdev keyboard mouse synaptics wacom" KERNEL="linux" L10N="cs" LCD_DEVICES="bayrad cfontz cfontz633 glk hd44780 lb216 lcdm001 mtxorb ncurses text" LIBREOFFICE_EXTENSIONS="presenter-console presenter-minimizer" NETBEANS_MODULES="apisupport cnd groovy gsf harness ide identity j2ee java mobility nb php profiler soa visualweb webcommon websvccommon xml" OFFICE_IMPLEMENTATION="libreoffice" PHP_TARGETS="php7-2" POSTGRES_TARGETS="postgres9_6%" PYTHON_SINGLE_TARGET="python3_6" PYTHON_TARGETS="python2_7 python3_5 python3_6" QEMU_SOFTMMU_TARGETS="x86_64 arm" QEMU_USER_TARGETS="x86_64 arm" RUBY_TARGETS="ruby24" USERLAND="GNU" VIDEO_CARDS="nvidia intel modesetting" 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
Ou, finally found it. It is part of qtdeclarative package which was installed, but without qtquick. After re-emerge qtdeclarative package, qtquickcontrol(2) packages finally compiles correctly. [/code]
Hello gang! I'm here trying out Gentoo for the first time, coming from an Arch Linux background. So far I am enjoying the experience, learning oh so many new things! A week ago I decided to migrate my laptop system to Gentoo. On this machine I am running a classic X + i3 setup on a Linux 5.3.12 kernel. However, I am facing a problem displaying the emojicon characters from the media-fonts/noto-emoji-20190328 package. So far I've noticed this problem manifesting itself through Firefox and my customized i3blocks-config where no emojicon characters are displayed whatsoever. I'm not quiet sure where to start debuging this problem. I have looked through the output logs of X and i3 in search of any hint but none of them indicate anything (at all really) regarding fonts. I've also tried to install the x11-libs/cairo-9999 package (as suggested here ) but reverted back to x11-libs/cairo-1.16.0-r3 when I still faced the same problem. It appears as fontconfig indeed detects the installed font. I am really struggling to find anything related on the internet regarding this issue. Have anyone else faced the same problem, that is emoji characters cannot be displayed what so ever? Down below I leave some snippets I belive to be usedful in finding a solution to this issue. I am wondering, where do I go from here? Font config detection. Indeed Noto Emoji is detected. From here it all appears to be good. Code: [~] $ fc-match "Noto Color Emoji" NotoColorEmoji.ttf: "Noto Color Emoji" "Regular" [~] $ fc-match -v "Noto Color Emoji" Pattern has 40 elts (size 48) family: "Noto Color Emoji"(s) familylang: "en"(s) style: "Regular"(s) stylelang: "en"(s) fullname: "Noto Color Emoji"(s) fullnamelang: "en"(s) slant: 0(i)(s) weight: 80(f)(s) width: 100(f)(s) size: 104.64(f)(w) pixelsize: 109(f)(s) spacing: 100(i)(w) foundry: "GOOG"(w) antialias: False(w) hintstyle: 1(i)(w) hinting: True(s) verticallayout: False(s) autohint: False(s) globaladvance: True(s) file: "/usr/share/fonts/noto-emoji/NotoColorEmoji.ttf"(w) index: 0(i)(w) outline: False(w) scalable: True(w) dpi: 75(f)(s) scale: 1(f)(s) matrix: [0.114679 0; 0 0.114679](w) charset: 0000: 00000000 03ff0409 00000000 00000000 00000000 00004200 00000000 00000000 0020: 00002000 10000000 00000200 00000000 00000000 00000000 00000000 00000008 0021: 00000000 02000004 00000000 00000000 03f00000 00000600 00000000 00000000 0023: 0c000000 00000100 00000000 00000000 00000000 00000000 00008000 070ffe00 0024: 00000000 00000000 00000000 00000000 00000000 00000000 00000004 00000000 0025: 00000000 00000000 00000000 00000000 00000000 00400c00 00000001 78000000 0026: 2132401f 0700c44d 800fff05 c8000169 1afc0000 60030c03 001ac130 27bf0600 0027: 2054bf24 00180102 00b85090 00000018 00e00000 80010002 00000000 00000000 0029: 00000000 00300000 00000000 00000000 00000000 00000000 00000000 00000000 002b: 180000e0 00000000 00210000 00000000 00000000 00000000 00000000 00000000 0030: 00000000 20010000 00000000 00000000 00000000 00000000 00000000 00000000 0032: 00000000 00000000 00000000 00000000 02800000 00000000 00000000 00000000 01f0: 00000010 00000000 00000000 00000000 00000000 00000000 00008000 00000000 01f1: 00000000 00000000 00000000 c0030000 07fe4000 00000000 00000000 ffffffc0 01f2: 04000006 07fc8000 00030000 00000000 00000000 00000000 00000000 00000000 01f3: ffffffff fffffff3 ffffffff ffffffff cecfffff ffffffff ffffffff ffb9ffff 01f4: ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff bfffffff 01f5: ffffffff 3fffffff ffff7e00 07f980ff 00613c80 10060130 700e001c fc08810a 01f6: ffffffff ffffffff 0000ffff 00000000 ffffffff ffffffff 0007f83f 03f91a3f 01f9: ffff0000 77ffffff ffffffbf f479ffff ffffffff 03ff0007 ffff0007 ffffffff 0e00: 00000000 03ff0000 00000000 87fffffe 00000000 00000000 00000000 00000000 0fe4: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00007fe0 0fe8: 00000000 00ffd000 00000000 00000000 00000000 00000000 00000000 00000000 (w) lang: und-zsye(s) fontversion: 132186(i)(s) capability: "otlayout:DFLT"(w) fontformat: "TrueType"(w) embeddedbitmap: True(s) decorative: False(s) namelang: "en"(s) prgname: "fc-match"(s) postscriptname: "NotoColorEmoji"(w) color: True(s) symbol: False(s) variable: False(s) pixelsizefixupfactor: 0.114679(f)(w) Snippet of .Xresources. Code: *.font: xft:Hack:style=Regular:size=12, \ xft:Noto Color Emoji:style=Regular:size=12 Fontconfig (eselect) selection (I believe [38] & [39] are of most interest): Code: [~] $ 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] 42-luxi-mono.conf * [24] 45-generic.conf * [25] 45-latin.conf * [26] 49-sansserif.conf * [27] 50-user.conf * [28] 51-local.conf * [29] 57-dejavu-sans.conf [30] 57-dejavu-sans-mono.conf [31] 57-dejavu-serif.conf [32] 60-generic.conf * [33] 60-latin.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] 75-yes-terminus.conf [41] 80-delicious.conf * [42] 90-synthetic.conf * A hint might present itself here under Font Path: where the Noto Emoji font file is not located in any of the directories shown. Code: ~ $ xset -q Keyboard Control: auto repeat: on key click percent: 0 LED mask: 00000000 XKB indicators: 00: Caps Lock: off 01: Num Lock: off 02: Scroll Lock: off 03: Compose: off 04: Kana: off 05: Sleep: off 06: Suspend: off 07: Mute: off 08: Misc: off 09: Mail: off 10: Charging: off 11: Shift Lock: off 12: Group 2: off 13: Mouse Keys: off auto repeat delay: 225 repeat rate: 25 auto repeating keys: 00ffffffdffffbbf fadfffefffedffff 9fffffffffffffff fff7ffffffffffff bell percent: 50 bell pitch: 400 bell duration: 100 Pointer Control: acceleration: 2/1 threshold: 4 Screen Saver: prefer blanking: yes allow exposures: yes timeout: 600 cycle: 600 Colors: default colormap: 0x22 BlackPixel: 0x0 WhitePixel: 0xffffff Font Path: /usr/share/fonts/misc/,/usr/share/fonts/TTF/,/usr/share/fonts/OTF/,/usr/share/fonts/Type1/,/usr/share/fonts/100dpi/,/usr/share/fonts/75dpi/,built-ins DPMS (Energy Star): Standby: 600 Suspend: 600 Off: 600 DPMS is Enabled Monitor is On
If media-libs/freetype with USE=png is required for media-fonts/noto-emoji to work at all, then yes, this should be enforced in the media-fonts/noto-emoji ebuild with a USE dependency, such as RDEPEND=" media-libs/freetype[png] " . If media-fonts/noto-emoji is partly usable without PNG support, but requires PNG support to be fully usable, then the decision is more complicated.
I recently bought and installed a new notebook, however I have a weird problem that is hard to debug. Sometimes, with increasing frequency, I find that I can't switch window, or I can't interact with the border of the window itself (while I can still interact with what's within). I don't know what's triggering this, however the problem disappears when i switch to the console (ctrl+alt+F1) and back to the desktop (ctrl+alt+F7). Also sometimes it seems that I get some random keypress on the right mouse button, since the menu is popping out. I think that this is related to some random "phantom" activation of the right mouse button somewhere. In the system logs I couldn't find any hint to this. Can anyone help me debugging this? Thanks I run a stable gentoo, with kernel 5.3 (the only thing which is ~amd64) with xfce desktop It's a Intel Core i7-9750H with an Nvidia card which is disabled through bbswitch (I only use the integrated Intel)
Solved! It was a defect of the touchpad cable that generated some electrical contact...
Hello, on my Laptop I run gentoo with KDE. Code: COMPUTER: lspci | grep -i VGA 00:02.0 VGA compatible controller: Intel Corporation HD Graphics 5500 (rev 09) This output shows that I have an intel graphic card and according to https://wiki.gentoo.org/wiki/Intel I have edited the following files: Code: /etc/portage/make.conf USE="alsa dbus glamor -gtk -gtk+ -gnome kde -pygtk qt4 -systemd X" VIDEO_CARDS="intel i965" Code: /etc/X11/xorg.conf.d/20-opengl.conf Section "Device" Identifier "Intel Graphics" Driver "modesetting" Option "AccelMethod" "glamor" Option "DRI" "3" EndSection In the system settings I can apply special effects like transparent and wobbling windows so the driver seems to work fine. My problem is, that the resolution can be set in the KDE system settings to a maximum of 1366x768. As I was using gentoo about 10 years ago I added the resolution in the Xorg.conf which seems to be obsolete. So: how can I find out about the maximum resolution the graphic card can handle and where do I have to change the settings?
mschraff, You can do all that in xorg.conf too, so it just works at 1920x1080. The bigger question is what does your display report to Xorg. Please put /var/log/Xorg.0.log onto a pastebin. At one time it was fairly common for displays to have broken EDID data. The preferred resolution is supposed to be reported first. Then there are those displays that advertise a higher resolution than native and downsample it to fit.
Using konqueror and qt-5.12.4 I started getting a segfault every time I opened a page: Code: Sep 14 22:53:47 localhost kernel QtWebEngineProc[20217]: segfault at 77 ip 00007f78ec0cad7c sp 00007ffe3547a100 error 4 in libQt5WebEngineCore.so.5.12.5[7f78eb14d000+5065000] Sep 14 22:53:47 localhost kernel Code: 02 00 00 00 75 20 48 63 4b 48 48 89 ca 48 89 44 cb 08 83 c2 01 83 e2 07 89 53 48 5b 41 5c 5d c3 66 0f 1f 44 00 00 48 8b 50 ff <66> 83 7a 0b 7f 77 d5 48 8b 50 ff 0f b7 52 0b 83 e2 07 66 83 fa 05 I saw a new version of Qt was available (5.12.5) and spent 13 hours compiling it, only to get the same error. I am using gcc-9.1.0 if that makes any difference. Thanks Robin
Please do the following: Code: # equery s dev-libs/openssl # emerge -1v openssl # equery s dev-libs/openssl In case of a size difference, you've hit bug 694512 .
Ive just run a massive update with over 500 packages. I update several times a week. Then I rebooted. Now when I login to KDE, only my previous windows show upo, no task bar and no background. Luckily I know a few keyboard shortcuts so I can move around. The keyboard is also the default US, so I cant find the apostrophe and a few others on my Norwegian kbd. I looked up the https://wiki.gentoo.org/wiki/KDE/Troubleshooting and tried the following> If the KMenu lacks any application or the whole application list, the KDE application database probably needs to be rebuilt. This is also a possible fix for any KMenu related issues, like missing icons. user $kbuildsycoca5 --noincremental The terminal answers> leif@balapapa ~ $ kbuildsycoca5 --noincremental kbuildsycoca5 running... kf5.kconfig.core: "KConfigIni: In file /usr/share/kservices5/searchproviders/google_advanced.desktop, line 123: " "Invalid escape sequence \"\\{\"." kf5.kservice.sycoca: Parse error in "/home/leif/.config/menus/applications-merged/xdg-desktop-menu-dummy.menu" , line 1 , col 1 : "unexpected end of file" kf5.kservice.services: The desktop entry file "/usr/share/applications/org.gnupg.pinentry-qt.desktop" has Type= "Application" but no Exec line kf5.kservice.sycoca: Invalid Service : "/usr/share/applications/org.gnupg.pinentry-qt.desktop" what to do *question mark*
I don't know what's wrong there, I have a generic advice for you. I'm guessing the app responsible for taskbar is crashing in background. Have you tried starting in a terminal, by hand? We haven't seen your emerge --info. Weird stuff starts happening if you have been using some old version of GCC. Make sure you have the latest GCC enabled and binutils. Do an emerge -e @world.
I've had sound in all previous versions of Chromium. Pulseaudio works with all other applications that use sound. When I visit a page that provides sound, Chromium does not show up in the Playback tab of pavucontrol. Pulseaudio is version 13.0. Any debugging hints will be gratefully received. [SOLVED] Many thanks to jerb for pointing out the relevant bug report. What works for me is launching chromium with chromium-browser --no-sandbox . In portage, version 78.0.3904.87 works correctly while both versions 78.0.3904.97 and 79.0.3945.29 have the bug described in the bug report. [/SOLVED] [UPDATE] Version 79.0.3945.36 (in portage) works correctly: no sound problems. [/UPDATE]
I'm having the same issue, also on pulseaudio 13. Here's what comes up whenever I attempt playing a sound in Chromium: Code: Failed to create secure directory (/var/run/user/1000/pulse): Operation not permitted ALSA lib /var/tmp/portage/media-libs/alsa-lib-1.1.9/work/alsa-lib-1.1.9/src/pcm/pcm_dmix.c:1108:(snd_pcm_dmix_open) unable to open slave [12326:12326:1108/170613.094478:ERROR:alsa_util.cc(204)] PcmOpen: default,No such file or directory ALSA lib /var/tmp/portage/media-libs/alsa-lib-1.1.9/work/alsa-lib-1.1.9/src/pcm/pcm_dmix.c:1108:(snd_pcm_dmix_open) unable to open slave [12326:12326:1108/170613.094969:ERROR:alsa_util.cc(204)] PcmOpen: plug:default,No such file or directory I'm currently emerging 78.0.3904.87 to see if it's an issue with Chromium 79 or if this is the result of the @world I ran overnight, but everything else still has sound properly.
Hi, Maybe someone have an idea why I am not able to log in KDE Plasma with Wayland? A while ago I was able to successfully login in Plasma (Wayland) without problems, so I assume I had everything setup properly. And I have not changed anything, just the regular updates. Unfortunately, it has been a few months since the last time I logged in with Wayland (I have been logging in with Xorg). So, I am not able to point out to the specific update that maybe caused the problem. Assuming it was an update, maybe it has nothing to do with the updates. Anyway, I am not able to see any error that could lead me to a possible solution. So, any help will be appreciated. In the login screen (SDDM), if I select "Plasma (Wayland)", then after introducing my credentials the screen goes blank for a second, it seems it is going to let me in and show the desktop environment but no. Instead, it throws me back to the SDDM login screen without any error message, exceptions, or any clue of just what happened. I can be doing that in a loop, but if I select "Plasma on Xorg", then I can log in without problems. Here it is the sddm log of a failed Wayland login: Code: [11:24:45.773] (II) DAEMON: Message received from greeter: Login [11:24:45.773] (II) DAEMON: Reading from "/usr/share/wayland-sessions/plasmawayland.desktop" [11:24:45.773] (II) DAEMON: Reading from "/usr/share/wayland-sessions/plasmawayland.desktop" [11:24:45.773] (II) DAEMON: Session "/usr/share/wayland-sessions/plasmawayland.desktop" selected, command: "dbus-run-session /usr/bin/startplasmacompositor" [11:24:45.786] (II) HELPER: [PAM] Starting... [11:24:45.786] (II) HELPER: [PAM] Authenticating... [11:24:45.815] (II) HELPER: [PAM] Preparing to converse... [11:24:45.815] (II) HELPER: [PAM] Conversation with 1 messages [11:24:45.902] (II) HELPER: [PAM] returning. [11:24:45.932] (II) DAEMON: Authenticated successfully [11:24:45.932] (II) DAEMON: Jumping to VT 8 [11:24:45.932] (II) DAEMON: VT mode didn't need to be fixed [11:24:46.009] (II) HELPER: Starting: "/usr/share/sddm/scripts/wayland-session dbus-run-session /usr/bin/startplasmacompositor" [11:24:46.011] (II) DAEMON: Session started [11:24:46.113] (II) HELPER: [PAM] Closing session [11:24:46.116] (II) HELPER: [PAM] Ended. [11:24:46.117] (II) DAEMON: Auth: sddm-helper exited successfully [11:24:46.117] (II) DAEMON: Greeter stopping... [11:24:46.117] (II) DAEMON: Socket server stopping... [11:24:46.117] (II) DAEMON: Socket server stopped. [11:24:46.117] (II) DAEMON: Display server stopping... [11:24:46.141] (II) HELPER: [PAM] Closing session [11:24:46.142] (II) HELPER: [PAM] Ended. [11:24:46.150] (II) DAEMON: Display server stopped. [11:24:46.150] (II) DAEMON: Running display stop script "/usr/share/sddm/scripts/Xstop" [11:24:46.152] (II) DAEMON: Removing display ":0" ... [11:24:46.153] (II) DAEMON: Adding new display on vt 7 ... [11:24:46.153] (II) DAEMON: Loading theme configuration from "" [11:24:46.153] (II) DAEMON: Display server starting... [11:24:46.153] (II) DAEMON: Running: /usr/bin/X -nolisten tcp -auth /var/run/sddm/{01570fb6-9313-4beb-af2f-609bca843672} -background none -noreset -displayfd 22 -seat seat0 vt7 [11:24:46.676] (II) DAEMON: Setting default cursor [11:24:46.684] (II) DAEMON: Running display setup script "/usr/share/sddm/scripts/Xsetup" [11:24:46.687] (II) DAEMON: Display server started. [11:24:46.687] (II) DAEMON: Socket server starting... [11:24:46.687] (II) DAEMON: Socket server started. [11:24:46.687] (II) DAEMON: Loading theme configuration from "/usr/share/sddm/themes/breeze-514-0.2.3/theme.conf" [11:24:46.688] (II) DAEMON: Greeter starting... [11:24:46.688] (II) DAEMON: Adding cookie to "/var/run/sddm/{01570fb6-9313-4beb-af2f-609bca843672}" [11:24:46.692] (II) DAEMON: Greeter stopping... [11:24:46.693] (WW) DAEMON: QProcess: Destroyed while process ("/usr/libexec/sddm-helper") is still running. [11:24:46.697] (II) HELPER: [PAM] Starting... [11:24:46.697] (II) HELPER: [PAM] Authenticating... [11:24:46.697] (II) HELPER: [PAM] returning. [11:24:46.706] (II) DAEMON: Greeter session started successfully [11:24:46.743] (II) DAEMON: Message received from greeter: Connect And this the sddm log of a successful Xorg login: Code: [11:25:43.106] (II) DAEMON: Message received from greeter: Login [11:25:43.106] (II) DAEMON: Reading from "/usr/share/xsessions/plasma.desktop" [11:25:43.107] (II) DAEMON: Reading from "/usr/share/xsessions/plasma.desktop" [11:25:43.107] (II) DAEMON: Session "/usr/share/xsessions/plasma.desktop" selected, command: "/usr/bin/startkde" [11:25:43.119] (II) HELPER: [PAM] Starting... [11:25:43.119] (II) HELPER: [PAM] Authenticating... [11:25:43.146] (II) HELPER: [PAM] Preparing to converse... [11:25:43.146] (II) HELPER: [PAM] Conversation with 1 messages [11:25:43.230] (II) HELPER: [PAM] returning. [11:25:43.263] (II) DAEMON: Authenticated successfully [11:25:43.275] (II) HELPER: Starting: "/usr/share/sddm/scripts/Xsession \"/usr/bin/startkde\"" [11:25:43.277] (II) HELPER: Adding cookie to "/home/draenin/.Xauthority" [11:25:43.283] (II) DAEMON: Session started [11:25:43.292] (II) HELPER: [PAM] Closing session [11:25:43.293] (II) HELPER: [PAM] Ended. [11:25:43.294] (II) DAEMON: Auth: sddm-helper exited successfully [11:25:43.295] (II) DAEMON: Greeter stopped. Some more info just in case, emerge --info: Code: Portage 2.3.76 (python 3.6.9-final-0, default/linux/amd64/17.0/desktop/plasma, gcc-8.3.0, glibc-2.29-r2, 4.19.57-gentoo-i7-860 x86_64) ================================================================= System uname: Linux-4.19.57-gentoo-i7-860-x86_64-Intel-R-_Core-TM-_i7_CPU_860_@_2.80GHz-with-gentoo-2.6 KiB Mem: 8220532 total, 1463804 free KiB Swap: 11686904 total, 11686904 free Timestamp of repository gentoo: Sat, 02 Nov 2019 22:30:01 +0000 Head commit of repository gentoo: eb7af0af37b26d9fd4859b055ca0a0aa2247792f sh bash 4.4_p23-r1 ld GNU ld (Gentoo 2.32 p2) 2.32.0 app-shells/bash: 4.4_p23-r1::gentoo dev-lang/perl: 5.28.2-r1::gentoo dev-lang/python: 2.7.16::gentoo, 3.6.9::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.41.2::gentoo sys-apps/sandbox: 2.13::gentoo sys-devel/autoconf: 2.13-r1::gentoo, 2.69-r4::gentoo sys-devel/automake: 1.16.1-r1::gentoo sys-devel/binutils: 2.32-r1::gentoo sys-devel/gcc: 8.3.0-r1::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.19::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-jobs: 1 sync-rsync-verify-max-age: 24 sync-rsync-extra-opts: sync-rsync-verify-metamanifest: yes draenin-repo location: /usr/local/portage masters: gentoo ACCEPT_KEYWORDS="amd64" ACCEPT_LICENSE="* -@EULA" CBUILD="x86_64-pc-linux-gnu" CFLAGS="-march=corei7 -O2 -pipe" CHOST="x86_64-pc-linux-gnu" CONFIG_PROTECT="/etc /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="DBUS_SESSION_BUS_ADDRESS DISPLAY GOBIN 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=corei7 -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 sandbox sfperms strict unknown-features-warn unmerge-logs unmerge-orphans userfetch userpriv usersandbox usersync xattr" FFLAGS="-march=corei7 -O2 -pipe" GENTOO_MIRRORS="http://distfiles.gentoo.org" LANG="en_US.UTF-8" LDFLAGS="-Wl,-O1 -Wl,--as-needed" MAKEOPTS="-j5" 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 activities alsa amd64 berkdb bluetooth branding bzip2 cairo cdda cdr cli crypt cups cxx dbus declarative dri dts dvd dvdr elogind emboss encode exif fam flac fortran gdbm gif glamor gles gpm iconv icu ipv6 jpeg kde kipi kwallet lcms ldap libnotify libtirpc lz4 lzo mad matroska mng mp3 mp4 mpeg ncurses nls nptl ogg opengl openmp pam pango pcre pcsc-lite pdf phonon plasma png policykit polkit ppds qml qt5 readline sdl seccomp semantic-desktop spell split-usr ssl startup-notification svg tcpd tiff truetype udev udisks unicode upower usb vorbis wayland widgets wxwidgets x264 xattr xcb xcomposite 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" INPUT_DEVICES="libinput keyboard mouse" KERNEL="linux" LCD_DEVICES="bayrad cfontz cfontz633 glk hd44780 lb216 lcdm001 mtxorb ncurses text" LIBREOFFICE_EXTENSIONS="presenter-console presenter-minimizer" NETBEANS_MODULES="apisupport cnd groovy gsf harness ide identity j2ee java mobility nb php profiler soa visualweb webcommon websvccommon xml" OFFICE_IMPLEMENTATION="libreoffice" PHP_TARGETS="php7-2" POSTGRES_TARGETS="postgres10 postgres11" PYTHON_SINGLE_TARGET="python3_6" PYTHON_TARGETS="python2_7 python3_6" RUBY_TARGETS="ruby24 ruby25" USERLAND="GNU" VIDEO_CARDS="radeon r600" 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
Impressive that you have been running Wayland sessions (with amd64 KEYWORDS only) for that long already; however still at this point I would recommend no less than latest available Qt (5.13.2) for that.
I am running sddm-0.18.1-r1 on my amd64 system. My problem is (at least) that sddm fails to start on my system. The system boots up into terminal mode. when I log in as root and try to start sddm. I get the error message "Aborted." If I do a startx, the X environment starts up and appears to function. I am suspicious that the cause may be related to errors that show up in dmesg regarding files that appear not to log correctly on startup but seem to be functioning when the system is running. I was chasing this problem when I went on vacation and the complaint expired. Anyway the "dmesg" tabulation follows: https://pastebin.com/Vfu1pnYh
You have a nvidia card then is possible related at this bug (I had the similar problem)?
Hello, when using nvidia-drivers, what USE flags would be good on Mesa? There is only a very old post about this in the forums. Any recommendations?
MESA is not used when you have proprietary drivers installed.
I've looked for two days about how to sleep a mate desktop from a menu option and can't find anything. I did find a systemd command, but I'm running openrc on gnetoo. I guess I could make a doodad to run # echo mem > /sys/power/state. Any other suggestions?
i believe you need consolekit with the pm-utils use flag turned on, and mate-power-manager installed for the menu option to show up. cheers
I had previously problems with the upgrade to 68.1.0 when it was unstable, I always reverted to 60.9.0. I moved now to stable 68.2.0. Everything seemed to work fine until I rebooted. Then firefox wouldn't start any more giving the following errors: Code: /usr/bin/firefox %U 1572186603049 addons.manager ERROR Exception calling provider GMPProvider.startup: [Exception... "Component returned failure code: 0x80520012 (NS_ERROR_FILE_NOT_FOUND) [nsIStringBundle.GetStringFromName]" nsresult: "0x80520012 (NS_ERROR_FILE_NOT_FOUND)" location: "JS frame :: resource://gre/modules/addons/GMPProvider.jsm :: buildPluginList :: line 844" data: no] Stack trace: buildPluginList()@resource://gre/modules/addons/GMPProvider.jsm:844 startup()@resource://gre/modules/addons/GMPProvider.jsm:721 callProvider()@resource://gre/modules/AddonManager.jsm:213 _startProvider()@resource://gre/modules/AddonManager.jsm:649 startup()@resource://gre/modules/AddonManager.jsm:873 startup()@resource://gre/modules/AddonManager.jsm:3469 observe()@resource://gre/modules/addonManager.js:70 1572186603300 Marionette FATAL <window id="main-window" ^ JavaScript error: resource://gre/modules/AutoCompletePopup.jsm, line 113: NS_ERROR_ILLEGAL_VALUE: Component returned failure code: 0x80070057 (NS_ERROR_ILLEGAL_VALUE) [nsIObserverService.removeObserver] I could only start in safe-mode, which right know gives the following errors: Code: firefox --safe-mode JavaScript error: resource:///modules/sessionstore/SessionStore.jsm, line 5490: uncaught exception: 2147746065 JavaScript error: resource://gre/modules/UrlClassifierListManager.jsm, line 69: NS_ERROR_XPC_GS_RETURNED_FAILURE: ServiceManager::GetService returned failure code: JavaScript error: resource://gre/modules/SafeBrowsing.jsm, line 272: NS_ERROR_XPC_GS_RETURNED_FAILURE: ServiceManager::GetService returned failure code: (/usr/lib64/firefox/firefox:8762): dconf-WARNING **: 18:09:31.082: Unable to open /usr/local/share/dconf/profile/user: Keine Berechtigung Log warning: The log 'Services.Common.RESTRequest' is configured to use the preference 'services.common.log.logger.rest.request' - you must adjust the level by setting this preference, not by using the level setter I tried different things firefox team propose, like switching off hardware acceleration, deactivating addons and such... For two different user of this computer, firefox after the upgrade started fine for the first time, the only in safe-.mode. If I reset these in safe-mode they seem to work fine. However these user do not need their profiles, do not use sync etc. However I rely on these things and would not like to lose these. Can anyone figure out what the problem could be? [Moderator edit: changed [q uote] tags to [c ode] tags to preserve output layout. -Hu]
https://bugs.gentoo.org/694456 Delete addonStartup.json.lz4 from profile. Firefox has some hiccup on profile upgrade.
Hi, I don't know if I'm missing some library, but after updating Libreoffice to version 6, it looks pretty ugly in Plasma 5. Libreoffice 5.x used to look fine. I noticed that "-kde" USE flag is now enforced (support for KDE4 dropped?), and I read somewhere that Libreoffice 6.1 is going to somehow support Qt5...so I guess we are stuck with ugly Libreoffice until 6.1. Is that so? Cheers.
Libreoffice 6.0.x kde support is for qt/plasma 5 libreoffice-6.0.3.2.ebuild: kde? ( dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtx11extras:5 dev-qt/qtwidgets:5 kde-frameworks/kconfig:5 kde-frameworks/kcoreaddons:5 kde-frameworks/ki18n:5 kde-frameworks/kio:5 kde-frameworks/kwindowsystem:5 )
Hello all, After last (monthly) emerge world update the following things happened. First is that KDE, which i am using, does not show any menu panel/bar at the bottom of the screen. I can not start any help by clicking at the black background with any mouse button. Another problem is that there is no background wallpaper on the screen. I am running gentoo for years. Last 10 years i am emerge world monthly. dmesg does not give any errors, no errors are in the /var/log/Xorg.0.log . However when the system sleeps after it is inactive for 15 minutes in my case, the computer gives me "The screen locker is broken and unlocking is not possible anymore. In order to unlock switch to a virtual terminal (e.g. Ctrl+Alt+F2), log in and execute the command:" After i do Ctrl+Alt+F2 i go to console with the programs i started running which i see by: pr -u username . Also i noticed that dmesg gives me: Code: [ 1724.324386] kscreenlocker_g[11985]: segfault at 10 ip 00007f7ea43ece88 sp 00007ffe14b37c60 error 4 in libQt5Core.so.5.12.3[7f7ea4333000+28c000] I was trying to reinstall kscreenlocker and dev-qt/qtcore but that did not help. I am still getting no menu panel/bar in KDE. Here is what i have: emerge --info Code: python-exec: Invalid impl in /etc/python-exec/python-exec.conf: python3.4 Portage 2.3.66 (python 3.6.5-final-0, default/linux/amd64/17.0/desktop/plasma, gcc-7.3.0, glibc-2.29-r2, 4.19.27-gentoo-r1 x86_64) ================================================================= System uname: Linux-4.19.27-gentoo-r1-x86_64-Intel-R-_Core-TM-_i7-4600M_CPU_@_2.90GHz-with-gentoo-2.6 KiB Mem: 16329012 total, 9844748 free KiB Swap: 16777212 total, 16777212 free Timestamp of repository gentoo: Wed, 05 Jun 2019 02:00:01 +0000 Head commit of repository gentoo: d8aeaed593df450e9284c3ff97c4d4d3f3f0fb56 sh bash 4.4_p23-r1 ld GNU ld (Gentoo 2.31.1 p7) 2.31.1 app-shells/bash: 4.4_p23-r1::gentoo dev-lang/perl: 5.28.2-r1::gentoo dev-lang/python: 2.7.15::gentoo, 3.5.5::gentoo, 3.6.5::gentoo dev-util/cmake: 3.14.3::gentoo dev-util/pkgconfig: 0.29.2::gentoo sys-apps/baselayout: 2.6-r1::gentoo sys-apps/openrc: 0.41.2::gentoo sys-apps/sandbox: 2.13::gentoo sys-devel/autoconf: 2.13-r1::gentoo, 2.69-r4::gentoo sys-devel/automake: 1.14.1-r2::gentoo, 1.16.1-r1::gentoo sys-devel/binutils: 2.31.1-r6::gentoo sys-devel/gcc: 4.7.4::gentoo, 7.3.0-r3::gentoo, 8.3.0-r1::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-verify-jobs: 1 sync-rsync-extra-opts: ACCEPT_KEYWORDS="amd64" ACCEPT_LICENSE="*" CBUILD="x86_64-pc-linux-gnu" CFLAGS="-march=native -O2 -pipe -fomit-frame-pointer" CHOST="x86_64-pc-linux-gnu" CONFIG_PROTECT="/etc /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 /etc/texmf/language.dat.d /etc/texmf/language.def.d /etc/texmf/updmap.d /etc/texmf/web2c" CXXFLAGS="-march=native -O2 -pipe -fomit-frame-pointer" DISTDIR="/usr/portage/distfiles" ENV_UNSET="DBUS_SESSION_BUS_ADDRESS DISPLAY GOBIN 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 protect-owned sandbox sfperms strict unknown-features-warn unmerge-logs unmerge-orphans userfetch userpriv usersandbox usersync xattr" FFLAGS="-O2 -pipe" GENTOO_MIRRORS="ftp://mirrors.rit.edu/gentoo/ ftp://gentoo.cites.uiuc.edu/pub/gentoo/ ftp://ftp.gtlib.gatech.edu/pub/gentoo" LANG="en_US" LDFLAGS="-Wl,-O1 -Wl,--as-needed" LINGUAS="en ru" MAKEOPTS="-j5" 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 activities alsa amd64 berkdb bluetooth branding bzip2 cairo cdda cdr cli consolekit crypt cups cxx dbus declarative dri dri2 dts dvd dvdr emacs emboss encode exif fam flac fortran gdbm gif glamor gpm iconv ipv6 jpeg kde kipi kwallet latex lcms ldap libnotify libtirpc lyx mad mmx mng mp3 mp4 mpeg multilib ncurses nls nptl nptlonly ogg opengl openmp pam pango pcre pdf phonon plasma png policykit ppds qml qt5 readline sdl seccomp semantic-desktop spell sse sse2 ssl startup-notification svg tcpd tiff truetype udev udisks unicode upower usb vorbis widgets wxwidgets x264 xattr xcb xcomposite xml xv xvid zlib" ABI_X86="64 32" 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 isync itrax mtk3301 nmea ntrip navcom oceanserver oldstyle oncore rtcm104v2 rtcm104v3 sirf skytraq superstar2 timing tsip tripmate tnt ublox ubx" INPUT_DEVICES="synaptics evdev" KERNEL="linux" LCD_DEVICES="bayrad cfontz cfontz633 glk hd44780 lb216 lcdm001 mtxorb ncurses text" LIBREOFFICE_EXTENSIONS="presenter-console presenter-minimizer" NETBEANS_MODULES="apisupport cnd groovy gsf harness ide identity j2ee java mobility nb php profiler soa visualweb webcommon websvccommon xml" OFFICE_IMPLEMENTATION="libreoffice" PHP_TARGETS="php5-6 php7-1" POSTGRES_TARGETS="postgres10 postgres11" PYTHON_SINGLE_TARGET="python3_6" PYTHON_TARGETS="python2_7 python3_6" RUBY_TARGETS="ruby24" USERLAND="GNU" VIDEO_CARDS="intel i915 i965 radeon radeonsi amdgpu" 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 My .xinitrc is: Code: if [ -d /etc/X11/xinit/xinitrc.d ] ; then for f in /etc/X11/xinit/xinitrc.d/* ; do [ -x "$f" ] && . "$f" done unset f fi Code: exec ck-launch-session dbus-launch --sh-syntax --exit-with-session startkde [Moderator edit: added [c ode] tags to preserve output layout. -Hu]
The command /usr/lib/libexec/kscreenlocker_greet --testing return some errors?
Hi, Starting any PyQt5 application with python3 results in (a) it not finding wayland QPA plugin: Code: "qt.qpa.plugin: Could not load the Qt platform plugin "wayland" in "" even though it was found." And (b) also any attempt to use QtNetwork component to perform SSL (e.g. HTTPS requests) will fail with: Code: qt.network.ssl: QSslSocket: cannot resolve CRYPTO_num_locks qt.network.ssl: QSslSocket: cannot resolve CRYPTO_set_id_callback qt.network.ssl: QSslSocket: cannot resolve CRYPTO_set_locking_callback qt.network.ssl: QSslSocket: cannot resolve ERR_free_strings qt.network.ssl: QSslSocket: cannot resolve EVP_CIPHER_CTX_cleanup qt.network.ssl: QSslSocket: cannot resolve EVP_CIPHER_CTX_init qt.network.ssl: QSslSocket: cannot resolve sk_new_null qt.network.ssl: QSslSocket: cannot resolve sk_push qt.network.ssl: QSslSocket: cannot resolve sk_free qt.network.ssl: QSslSocket: cannot resolve sk_num qt.network.ssl: QSslSocket: cannot resolve sk_pop_free qt.network.ssl: QSslSocket: cannot resolve sk_value qt.network.ssl: QSslSocket: cannot resolve SSL_library_init qt.network.ssl: QSslSocket: cannot resolve SSL_load_error_strings qt.network.ssl: QSslSocket: cannot resolve SSL_get_ex_new_index qt.network.ssl: QSslSocket: cannot resolve SSLv3_client_method qt.network.ssl: QSslSocket: cannot resolve SSLv23_client_method qt.network.ssl: QSslSocket: cannot resolve SSLv3_server_method Python2 does not trigger any of these, both work as expected. Compiling openssl-1.0 manually and running python3 PyQt5 app under LD_LIBRARY_PATH=/path/to/built/openssl-1.0 works around the SSL issue. There are no traces of openssl-1.0 in my system that I know of, so I'm not even sure where pyqt gets an idea of openssl-1.0 at all. I haven't found workaround for the wayland issue yet. Has anyone experienced anything similar, or has any ideas what could be wrong? Thanks! [Moderator edit: changed [q uote] tags to [c ode] tags to preserve output layout. -Hu]
Do you have qtwayland installed?
Solution: Remove shm from /etc/fstab Yesterday I ran "sudo emerge -avuDN @world" (I think it was about a month ago I ran it the last time). Today I found out that google-chrome-stable has been broken by this. I've tried fixing this for ~6h now and I think it's time to ask for some advice what package broke it. UPDATE: I've added summary from what I've learned into this post. It seems there's a bus error with shared memory? The symptoms Start chrome (from clean profile) It can now crash directly If it didn't crash and I go to google.com I sometimes (1 out of 10 times) actually get to google and I will be able to type in 'test' or something else, then in crashes directly If I go to the settings it will crash Sometimes if I just open the 'options' menu it will crash Debugging chromium with gdb and pausing it after a SIGBUS will stop gvim from running with 'Vim: Caught deadly signal BUS' Steps I've tried to resolve the problem with New profile (cleaning .config/google-chrome & .cache/google-chrome) Downloading the old version of chrome I had before the update Compiling Chromium (with and without tcmalloc flag) Downloading google-chrome-beta and google-chrome-unstable Googling a LOT Backtrace of Chromium Creating a new user and only running bare X (no kde) Ran 'emerge -e @world' (about 4 times after different settings, one after I changed to safe CFLAGS) Downgrading gdbus-coregen and glib to the version before 'emerge -avuDN @world' Downgrading gtk+, cairo, psmisc Noteworthy changes before update CPU_FLAGS_X86="mmx mmxext sse sse2 sse3 ssse3 sse4_1" make.conf Code: # These settings were set by the catalyst build script that automatically # built this stage. # Please consult /usr/share/portage/config/make.conf.example for a more # detailed example. CFLAGS="-march=native -O2 -pipe" CXXFLAGS="${CFLAGS}" CPU_FLAGS_X86="mmx mmxext sse sse2 sse3 ssse3 sse4_1" CHOST="x86_64-pc-linux-gnu" MAKEOPTS="-j5" # These are the USE flags that were used in addition to what is provided by the # profile used for building. USE="a52 aac acpi alsa apache2 apm -bluetooth bzip2 cairo cdb cdda cddb cdr cjk consolekit css ctype cups cxx dbus dri dv dvd dvdr extras ffmpeg flac fontconfig ftp gd gimp git -gnome grahviz gtk gzip handbook hddtemp icu ieee1394 imagemagick imap -ipv6 jabber java java6 javascript jpeg jpeg2k kde lame latex lm_sensors lua matroska mmx mng mono mp3 mp4 mpeg mplayer msn mtp multilib mysql ncurses nls nsplugin ogg opengl openmp oss pdf php png posix pulseaudio python qt4 quicktime raw rss sdl semantic-desktop sndfile sockets sound source sppex spell sql sse sse2 sse3 ssse3 sse41 sse4_1 ssl subversion svg syslog threads tiff tk truetype usb unicode v4l v4l2 vdpau vim-syntax vorbis wavpack -webkit X x264 xcomposite xine xinerama xml xulrunner xv xvid zlib zsh-completion" INPUT_DEVICES="keyboard mouse evdev wacom" VIDEO_CARDS="nvidia" CAMERAS="canon" LINGUAS="en_US" FEATURES="parallel-fetch parallel-install collision-protect" GENTOO_MIRRORS="http://ftp.df.lth.se/pub/gentoo/" USE_PYTHON="2.7 3.3" PORT_DIR="/usr/portage" PORTDIR_OVERLAY="/usr/local/portage" source /var/lib/layman/make.conf cat /proc/cpuinfo Code: processor : 0 vendor_id : GenuineIntel cpu family : 6 model : 23 model name : Intel(R) Core(TM)2 Extreme CPU X9650 @ 3.00GHz stepping : 6 microcode : 0x60b cpu MHz : 1998.000 cache size : 6144 KB physical id : 0 siblings : 4 core id : 0 cpu cores : 4 apicid : 0 initial apicid : 0 fpu : yes fpu_exception : yes cpuid level : 10 wp : yes flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx lm constant_tsc arch_perfmon pebs bts rep_good nopl aperfmperf pni dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm sse4_1 lahf_lm dtherm tpr_shadow vnmi flexpriority bogomips : 6010.55 clflush size : 64 cache_alignment : 64 address sizes : 36 bits physical, 48 bits virtual power management: Stack Trace Removed. See a reply further down for stack trace EDIT: I just remembered that emerge does actually logs everything in /var/log/emerge.log I parsed the file and created something a little more human-readable Code: <--- dev-java/oracle-jdk-bin-1.7.0.71 ---> dev-java/oracle-jdk-bin-1.7.0.76 <--- dev-util/gdbus-codegen-2.40.0 ---> dev-util/gdbus-codegen-2.40.2 <--- dev-libs/glib-2.40.0-r1 ---> dev-libs/glib-2.40.2 <--- dev-perl/File-MimeInfo-0.170.0-r1 ---> dev-perl/File-MimeInfo-0.210.0 <--- dev-libs/gobject-introspection-1.40.0-r1 ---> dev-libs/gobject-introspection-1.40.0-r2 <--- app-admin/eselect-ctags-1.16 ---> app-admin/eselect-ctags-1.18 <--- app-admin/eselect-emacs-1.16 ---> app-admin/eselect-emacs-1.18 <--- sys-apps/kmod-18-r1 ---> sys-apps/kmod-19 <--- net-misc/ntp-4.2.6_p5-r10 ---> net-misc/ntp-4.2.8-r1 <--- media-libs/jasper-1.900.1-r6 ---> media-libs/jasper-1.900.1-r9 <--- dev-python/apsw-3.7.13.1 ---> dev-python/apsw-3.8.7.1_p1 <--- sys-apps/man-pages-3.72 ---> sys-apps/man-pages-3.75 <--- sys-fs/udev-init-scripts-26-r2 ---> sys-fs/udev-init-scripts-27 <--- dev-python/pycurl-7.19.0-r4 ---> dev-python/pycurl-7.19.3.1-r2 <--- kde-base/oxygen-icons-4.12.5 ---> kde-base/oxygen-icons-4.14.3 <--- dev-libs/grantlee-0.3.0 ---> dev-libs/grantlee-0.4.0 <--- media-libs/lensfun-0.2.8-r1 ---> media-libs/lensfun-0.2.8-r1 <--- net-libs/libssh-0.6.3-r1 ---> net-libs/libssh-0.6.4 <--- dev-db/mysql-5.5.40 ---> dev-db/mysql-5.6.22 <--- virtual/mysql-5.5 ---> virtual/mysql-5.6-r2 <--- net-fs/nfs-utils-1.2.9-r3 ---> net-fs/nfs-utils-1.3.1-r1 <--- sys-apps/usbutils-007 ---> sys-apps/usbutils-008 <--- app-text/dvipdfmx-20110311 ---> app-text/dvipdfmx-20110311-r1 <--- dev-python/PyQt4-4.10.2 ---> dev-python/PyQt4-4.11.1 <--- sys-auth/polkit-qt-0.112.0 ---> sys-auth/polkit-qt-0.112.0-r1 <--- sys-auth/rtkit-0.10 ---> sys-auth/rtkit-0.11-r1 <--- sys-libs/db-4.8.30-r1 ---> sys-libs/db-4.8.30-r2 <--- dev-libs/protobuf-2.5.0-r1 ---> dev-libs/protobuf-2.5.0-r2 ---> sys-apps/iproute2-3.17.0 <--- dev-perl/BerkeleyDB-0.530.0-r1 ---> dev-perl/BerkeleyDB-0.540.0 <--- net-p2p/bitcoin-qt-0.8.5 ---> net-p2p/bitcoin-qt-0.8.6-r1 <--- sys-apps/busybox-1.21.0 ---> sys-apps/busybox-1.23.0-r1 ---> virtual/rubygems-9 <--- dev-ruby/rubygems-2.0.14 ---> dev-ruby/rubygems-2.2.2 <--- net-print/cups-1.7.5 ---> net-print/cups-2.0.1-r1 <--- dev-python/pycups-1.9.63 ---> dev-python/pycups-1.9.68 <--- net-fs/samba-3.6.23-r1 ---> net-fs/samba-3.6.24 <--- sys-devel/gettext-0.18.3.2 ---> sys-devel/gettext-0.19.3 <--- media-gfx/exiv2-0.23-r1 ---> media-gfx/exiv2-0.24-r1 <--- media-libs/mesa-10.0.4 ---> media-libs/mesa-10.2.8 <--- app-text/hunspell-1.3.2-r3 ---> app-text/hunspell-1.3.3 <--- media-libs/flac-1.3.0 ---> media-libs/flac-1.3.1-r1 <--- app-crypt/gnupg-2.0.26 ---> app-crypt/gnupg-2.0.26-r3 <--- app-text/iso-codes-3.55 ---> app-text/iso-codes-3.57 <--- sys-apps/grep-2.16 ---> sys-apps/grep-2.21-r1 <--- sys-process/psmisc-22.20 ---> sys-process/psmisc-22.21-r2 <--- media-libs/libgphoto2-2.5.4-r2 ---> media-libs/libgphoto2-2.5.5.1-r1 <--- dev-lang/php-5.5.18 ---> dev-lang/php-5.5.21 <--- x11-libs/cairo-1.12.16 ---> x11-libs/cairo-1.12.16-r4 <--- sys-apps/openrc-0.12.4 ---> sys-apps/openrc-0.13.8 <--- x11-base/xorg-server-1.15.0 ---> x11-base/xorg-server-1.15.2-r1 <--- app-office/libreoffice-l10n-4.2.6.3-r1 ---> app-office/libreoffice-l10n-4.2.8.2 ---> sys-apps/accountsservice-0.6.39 <--- gnome-base/gvfs-1.20.2 ---> gnome-base/gvfs-1.20.3 <--- x11-libs/gtksourceview-3.12.2 ---> x11-libs/gtksourceview-3.12.3 <--- media-gfx/gphoto2-2.5.4 ---> media-gfx/gphoto2-2.5.5 <--- app-portage/gentoolkit-0.3.0.8-r2 ---> app-portage/gentoolkit-0.3.0.9-r2 <--- media-libs/harfbuzz-0.9.28 ---> media-libs/harfbuzz-0.9.35 <--- dev-libs/libtasn1-3.6 ---> dev-libs/libtasn1-4.2 <--- sys-devel/automake-1.11.6 ---> sys-devel/automake-1.11.6-r1 ---> net-misc/freerdp-1.1.0_beta1_p20130710-r1 <--- sys-boot/grub-2.02_beta2-r2 ---> sys-boot/grub-2.02_beta2-r3 <--- media-libs/libao-1.1.0-r1 ---> media-libs/libao-1.2.0 <--- x11-libs/pango-1.36.5 ---> x11-libs/pango-1.36.8 <--- app-text/recode-3.6_p17-r2 ---> app-text/recode-3.6_p20-r1 <--- x11-libs/gtk+-2.24.24 ---> x11-libs/gtk+-2.24.25 <--- gnome-base/librsvg-2.40.2-r1 ---> gnome-base/librsvg-2.40.6 <--- media-libs/libcanberra-0.30-r1 ---> media-libs/libcanberra-0.30-r4 ---> media-libs/qt-gstreamer-1.2.0 <--- media-libs/gegl-0.2.0-r2 ---> media-libs/gegl-0.2.0-r2 <--- media-libs/clutter-1.18.2 ---> media-libs/clutter-1.18.4 <--- www-client/firefox-24.8.0 ---> www-client/firefox-31.3.0 <--- x11-misc/xscreensaver-5.30 ---> x11-misc/xscreensaver-5.32 <--- media-libs/clutter-gtk-1.5.2 ---> media-libs/clutter-gtk-1.6.0 <--- media-video/mplayer2-2.0_p20130428-r1 ---> media-video/mplayer2-2.0_p20131009 <--- app-misc/anki-2.0.31 ---> app-misc/anki-2.0.31-r1 <--- dev-python/matplotlib-1.3.0 ---> dev-python/matplotlib-1.3.0-r1 <--- net-print/hplip-3.14.1 ---> net-print/hplip-3.14.10 <--- media-gfx/imagemagick-6.8.9.9 ---> media-gfx/imagemagick-6.9.0.3 <--- media-gfx/uniconvertor-1.1.5 ---> media-gfx/uniconvertor-2.0_pre379-r1 <--- kde-base/kdelibs-4.12.5-r2 ---> kde-base/kdelibs-4.14.3-r1 <--- kde-base/kfmclient-4.12.5 ---> kde-base/kfmclient-4.14.3 <--- kde-base/katepart-4.12.5 ---> kde-base/katepart-4.14.3 <--- kde-base/kdesu-4.12.5 ---> kde-base/kdesu-4.14.3 <--- kde-base/khelpcenter-4.12.5 ---> kde-base/khelpcenter-4.14.3 <--- kde-base/kdepimlibs-4.12.5 ---> kde-base/kdepimlibs-4.14.3 ---> kde-base/kfilemetadata-4.14.3 <--- kde-base/libkdegames-4.12.5 ---> kde-base/libkdegames-4.14.3 <--- kde-base/libkworkspace-4.11.9 ---> kde-base/libkworkspace-4.11.14 <--- kde-base/libkonq-4.12.5 ---> kde-base/libkonq-4.14.3 <--- kde-base/kactivities-4.12.5 ---> kde-base/kactivities-4.13.3 <--- kde-base/libkdeedu-4.12.5 ---> kde-base/libkdeedu-4.14.3 <--- kde-base/kephal-4.11.9 ---> kde-base/kephal-4.11.14 <--- kde-base/knotify-4.12.5 ---> kde-base/knotify-4.14.3 <--- kde-base/libkexiv2-4.12.5 ---> kde-base/libkexiv2-4.14.3 <--- kde-base/pykde4-4.12.5 ---> kde-base/pykde4-4.14.3 <--- kde-base/ksysguard-4.11.9 ---> kde-base/ksysguard-4.11.14 <--- kde-base/plasma-runtime-4.12.5 ---> kde-base/plasma-runtime-4.14.3 <--- kde-base/kcheckpass-4.11.9 ---> kde-base/kcheckpass-4.11.14 <--- kde-base/libkcompactdisc-4.12.5 ---> kde-base/libkcompactdisc-4.14.3 <--- kde-base/libkcddb-4.12.5 ---> kde-base/libkcddb-4.14.3 <--- kde-base/libkmahjongg-4.12.5 ---> kde-base/libkmahjongg-4.14.3 <--- kde-base/liboxygenstyle-4.11.9 ---> kde-base/liboxygenstyle-4.11.14 <--- kde-base/kwin-4.11.9 ---> kde-base/kwin-4.11.14 <--- kde-base/khotkeys-4.11.9 ---> kde-base/khotkeys-4.11.14 <--- kde-base/kde-wallpapers-4.12.5 ---> kde-base/kde-wallpapers-4.14.3 <--- kde-base/phonon-kde-4.12.5 ---> kde-base/phonon-kde-4.14.3 <--- kde-base/libplasmagenericshell-4.11.9 ---> kde-base/libplasmagenericshell-4.11.14 <--- kde-base/libtaskmanager-4.11.9 ---> kde-base/libtaskmanager-4.11.14 <--- kde-base/kfind-4.12.5 ---> kde-base/kfind-4.14.3 <--- kde-base/kscreensaver-4.11.9 ---> kde-base/kscreensaver-4.11.14 <--- kde-base/kcminit-4.11.9 ---> kde-base/kcminit-4.11.14 <--- kde-base/kcmshell-4.12.5 ---> kde-base/kcmshell-4.14.3 ---> kde-base/kqtquickcharts-4.14.3 <--- kde-base/libkdcraw-4.12.5 ---> kde-base/libkdcraw-4.14.3 <--- kde-base/libkipi-4.12.5 ---> kde-base/libkipi-4.14.3 <--- kde-base/kwalletd-4.12.5 ---> kde-base/kwalletd-4.14.3-r1 <--- dev-vcs/subversion-1.8.10 ---> dev-vcs/subversion-1.8.11 <--- dev-vcs/git-2.0.4 ---> dev-vcs/git-2.0.5 <--- kde-base/kdepasswd-4.12.5 ---> kde-base/kdepasswd-4.14.3 <--- kde-base/plasma-apps-4.12.5 ---> kde-base/plasma-apps-4.14.3 <--- kde-base/kstartupconfig-4.11.9 ---> kde-base/kstartupconfig-4.11.14 <--- kde-base/ksplash-4.11.9 ---> kde-base/ksplash-4.11.14 <--- kde-base/keditbookmarks-4.12.5 ---> kde-base/keditbookmarks-4.14.3 <--- kde-base/libplasmaclock-4.11.9 ---> kde-base/libplasmaclock-4.11.14 <--- kde-base/plasma-workspace-4.11.9 ---> kde-base/plasma-workspace-4.11.14 <--- kde-base/kdialog-4.12.5 ---> kde-base/kdialog-4.14.3 <--- kde-base/kdebase-kioslaves-4.12.5 ---> kde-base/kdebase-kioslaves-4.14.3 <--- kde-base/svgpart-4.12.5 ---> kde-base/svgpart-4.14.3 <--- kde-base/kurifilter-plugins-4.12.5 ---> kde-base/kurifilter-plugins-4.14.3 <--- kde-base/konqueror-4.12.5 ---> kde-base/konqueror-4.14.3 <--- kde-base/solid-runtime-4.12.5 ---> kde-base/solid-runtime-4.14.3 <--- kde-base/kwalletmanager-4.12.5 ---> kde-base/kwalletmanager-4.14.3 <--- kde-base/zeroconf-ioslave-4.12.5 ---> kde-base/zeroconf-ioslave-4.14.3 <--- kde-base/kdm-4.11.9-r1 ---> kde-base/kdm-4.11.14 <--- kde-base/ksmserver-4.11.9 ---> kde-base/ksmserver-4.11.14 <--- kde-base/krunner-4.11.9 ---> kde-base/krunner-4.11.14 <--- kde-base/audiocd-kio-4.12.5 ---> kde-base/audiocd-kio-4.14.3 <--- kde-base/analitza-4.12.5 ---> kde-base/analitza-4.14.3 <--- kde-base/kdeartwork-wallpapers-4.12.5 ---> kde-base/kdeartwork-wallpapers-4.14.3 <--- kde-base/kopete-4.12.5 ---> kde-base/kopete-4.14.3 <--- kde-base/kgamma-4.12.5 ---> kde-base/kgamma-4.14.3 <--- kde-base/ktouch-4.12.5 ---> kde-base/ktouch-4.14.3 <--- kde-base/krosspython-4.12.5 ---> kde-base/krosspython-4.14.3 <--- kde-base/kate-4.12.5 ---> kde-base/kate-4.14.3 <--- kde-base/kdeplasma-addons-4.12.5 ---> kde-base/kdeplasma-addons-4.14.3 <--- kde-base/kde-l10n-4.12.5 ---> kde-base/kde-l10n-4.14.3 <--- kde-base/kstyles-4.11.9 ---> kde-base/kstyles-4.11.14 <--- kde-base/freespacenotifier-4.11.9 ---> kde-base/freespacenotifier-4.11.14 <--- kde-base/kwrite-4.12.5 ---> kde-base/kwrite-4.14.3 <--- kde-base/powerdevil-4.11.9 ---> kde-base/powerdevil-4.11.14 <--- kde-base/ksystraycmd-4.11.9 ---> kde-base/ksystraycmd-4.11.14 <--- kde-base/kinfocenter-4.11.9 ---> kde-base/kinfocenter-4.11.14 <--- kde-base/kde-base-artwork-4.12.5 ---> kde-base/kde-base-artwork-4.14.3 <--- kde-base/solid-actions-kcm-4.11.9 ---> kde-base/solid-actions-kcm-4.11.14 <--- kde-base/qguiplatformplugin_kde-4.11.9 ---> kde-base/qguiplatformplugin_kde-4.11.14 <--- kde-base/kdebase-cursors-4.11.9 ---> kde-base/kdebase-cursors-4.11.14 <--- kde-base/klipper-4.11.9 ---> kde-base/klipper-4.11.14 <--- kde-base/nsplugins-4.12.5 ---> kde-base/nsplugins-4.14.3 <--- kde-base/konsole-4.12.5 ---> kde-base/konsole-4.14.3 <--- kde-base/kwrited-4.11.9 ---> kde-base/kwrited-4.11.14 <--- kde-base/kmenuedit-4.11.9 ---> kde-base/kmenuedit-4.11.14 <--- kde-base/konq-plugins-4.12.5 ---> kde-base/konq-plugins-4.14.3 ---> x11-libs/libkscreen-1.0.5 ---> kde-misc/kscreen-1.0.2.1 <--- kde-base/systemsettings-4.11.9 ---> kde-base/systemsettings-4.11.14 <--- kde-base/kreadconfig-4.12.5 ---> kde-base/kreadconfig-4.14.3 <--- kde-base/kuiserver-4.12.5 ---> kde-base/kuiserver-4.14.3 <--- kde-base/kfile-4.12.5 ---> kde-base/kfile-4.14.3 <--- kde-base/kdebase-menu-4.12.5 ---> kde-base/kdebase-menu-4.14.3 <--- kde-base/kstart-4.12.5 ---> kde-base/kstart-4.14.3 <--- kde-base/kdebugdialog-4.12.5 ---> kde-base/kdebugdialog-4.14.3 <--- kde-base/kioclient-4.12.5 ---> kde-base/kioclient-4.14.3 <--- kde-base/renamedlg-plugins-4.12.5 ---> kde-base/renamedlg-plugins-4.14.3 <--- kde-base/drkonqi-4.12.5 ---> kde-base/drkonqi-4.14.3 <--- kde-base/kiconfinder-4.12.5 ---> kde-base/kiconfinder-4.14.3 <--- kde-base/keditfiletype-4.12.5 ---> kde-base/keditfiletype-4.14.3 <--- kde-base/kimgio-4.12.5 ---> kde-base/kimgio-4.14.3 <--- kde-base/attica-4.12.5 ---> kde-base/attica-4.14.3 <--- kde-base/knetattach-4.12.5 ---> kde-base/knetattach-4.14.3 <--- kde-base/kdontchangethehostname-4.12.5 ---> kde-base/kdontchangethehostname-4.14.3 <--- kde-base/kpasswdserver-4.12.5 ---> kde-base/kpasswdserver-4.14.3 <--- kde-base/ktimezoned-4.12.5 ---> kde-base/ktimezoned-4.14.3 <--- kde-base/kglobalaccel-4.12.5 ---> kde-base/kglobalaccel-4.14.3 <--- kde-base/kdebase-menu-icons-4.12.5 ---> kde-base/kdebase-menu-icons-4.14.3 <--- kde-base/kdebase-data-4.12.5 ---> kde-base/kdebase-data-4.14.3 <--- kde-base/kdebase-desktoptheme-4.12.5 ---> kde-base/kdebase-desktoptheme-4.14.3 <--- kde-base/kcontrol-4.12.5 ---> kde-base/kcontrol-4.14.3 <--- kde-base/kquitapp-4.12.5 ---> kde-base/kquitapp-4.14.3 <--- kde-base/kmimetypefinder-4.12.5 ---> kde-base/kmimetypefinder-4.14.3 <--- kde-base/knewstuff-4.12.5 ---> kde-base/knewstuff-4.14.3 <--- kde-base/ktraderclient-4.12.5 ---> kde-base/ktraderclient-4.14.3 <--- kde-base/kdebase-runtime-meta-4.12.5 ---> kde-base/kdebase-runtime-meta-4.14.3 <--- kde-base/kdebase-startkde-4.11.9 ---> kde-base/kdebase-startkde-4.11.14 <--- kde-base/dragon-4.12.5 ---> kde-base/dragon-4.14.3 <--- kde-base/kscd-4.12.5 ---> kde-base/kscd-4.14.3 <--- kde-base/mplayerthumbs-4.12.5 ---> kde-base/mplayerthumbs-4.14.3 <--- kde-base/ffmpegthumbs-4.12.5 ---> kde-base/ffmpegthumbs-4.14.3 <--- kde-base/juk-4.12.5 ---> kde-base/juk-4.14.3 <--- kde-base/kmix-4.12.5 ---> kde-base/kmix-4.14.3 <--- kde-base/kdemultimedia-meta-4.12.5 ---> kde-base/kdemultimedia-meta-4.14.3 <--- kde-base/kbruch-4.12.5 ---> kde-base/kbruch-4.14.3 <--- kde-base/kwordquiz-4.12.5 ---> kde-base/kwordquiz-4.14.3 ---> kde-base/artikulate-4.14.3 <--- kde-base/kalgebra-4.12.5 ---> kde-base/kalgebra-4.14.3 <--- kde-base/khangman-4.12.5 ---> kde-base/khangman-4.14.3 <--- kde-base/pairs-4.12.5 ---> kde-base/pairs-4.14.3 <--- kde-base/kstars-4.12.5 ---> kde-base/kstars-4.14.3 <--- kde-base/parley-4.12.5 ---> kde-base/parley-4.14.3 <--- kde-base/kmplot-4.12.5 ---> kde-base/kmplot-4.14.3 <--- kde-base/kgeography-4.12.5 ---> kde-base/kgeography-4.14.3 <--- kde-base/kig-4.12.5 ---> kde-base/kig-4.14.3 <--- kde-base/marble-4.12.5 ---> kde-base/marble-4.14.3 <--- kde-base/kalzium-4.12.5 ---> kde-base/kalzium-4.14.3 <--- kde-base/blinken-4.12.5 ---> kde-base/blinken-4.14.3 <--- kde-base/step-4.12.5 ---> kde-base/step-4.14.3 <--- kde-base/rocs-4.12.5 ---> kde-base/rocs-4.14.3 <--- kde-base/kiten-4.12.5 ---> kde-base/kiten-4.14.3 <--- kde-base/kanagram-4.12.5 ---> kde-base/kanagram-4.14.3 <--- kde-base/kturtle-4.12.5 ---> kde-base/kturtle-4.14.3 <--- kde-base/cantor-4.12.5 ---> kde-base/cantor-4.14.3 <--- kde-base/klettres-4.12.5 ---> kde-base/klettres-4.14.3 <--- kde-base/kdeedu-meta-4.12.5 ---> kde-base/kdeedu-meta-4.14.3 <--- kde-base/print-manager-4.12.5 ---> kde-base/print-manager-4.14.3 <--- kde-base/superkaramba-4.12.5 ---> kde-base/superkaramba-4.14.3 <--- kde-base/kdf-4.12.5 ---> kde-base/kdf-4.14.3 <--- kde-base/kcalc-4.12.5 ---> kde-base/kcalc-4.14.3 <--- kde-base/ktimer-4.12.5 ---> kde-base/ktimer-4.14.3 <--- kde-base/sweeper-4.12.5 ---> kde-base/sweeper-4.14.3 <--- kde-base/ark-4.12.5 ---> kde-base/ark-4.14.3 <--- kde-base/filelight-4.12.5 ---> kde-base/filelight-4.14.3 <--- kde-base/kcharselect-4.12.5 ---> kde-base/kcharselect-4.14.3 <--- kde-base/kgpg-4.12.5 ---> kde-base/kgpg-4.14.3 <--- kde-base/kdeutils-meta-4.12.5 ---> kde-base/kdeutils-meta-4.14.3 <--- kde-base/kdeartwork-colorschemes-4.12.5 ---> kde-base/kdeartwork-colorschemes-4.14.3 <--- kde-base/kdeartwork-weatherwallpapers-4.12.5 ---> kde-base/kdeartwork-weatherwallpapers-4.14.3 <--- kde-base/kdeartwork-emoticons-4.12.5 ---> kde-base/kdeartwork-emoticons-4.14.3 <--- kde-base/kdeartwork-styles-4.12.5 ---> kde-base/kdeartwork-styles-4.14.3 <--- kde-base/kdeartwork-desktopthemes-4.12.5 ---> kde-base/kdeartwork-desktopthemes-4.14.3 <--- kde-base/kdeartwork-kscreensaver-4.12.5 ---> kde-base/kdeartwork-kscreensaver-4.14.3 <--- kde-base/kdeartwork-iconthemes-4.12.5 ---> kde-base/kdeartwork-iconthemes-4.14.3 <--- kde-base/kdeartwork-meta-4.12.5 ---> kde-base/kdeartwork-meta-4.14.3 <--- kde-base/krfb-4.12.5-r1 ---> kde-base/krfb-4.14.3 <--- kde-base/krdc-4.12.5 ---> kde-base/krdc-4.14.3 <--- kde-base/kdenetwork-filesharing-4.12.5 ---> kde-base/kdenetwork-filesharing-4.14.3 <--- kde-base/kget-4.12.5 ---> kde-base/kget-4.14.3 <--- kde-base/kdenetwork-meta-4.12.5 ---> kde-base/kdenetwork-meta-4.14.3 <--- kde-base/kcron-4.12.5 ---> kde-base/kcron-4.14.3 <--- kde-base/kuser-4.12.5 ---> kde-base/kuser-4.14.3 <--- kde-base/ksystemlog-4.12.5 ---> kde-base/ksystemlog-4.14.3 <--- kde-base/kdeadmin-meta-4.12.5 ---> kde-base/kdeadmin-meta-4.14.3 <--- kde-base/kteatime-4.12.5 ---> kde-base/kteatime-4.14.3 <--- kde-base/ktux-4.12.5 ---> kde-base/ktux-4.14.3 <--- kde-base/amor-4.12.5 ---> kde-base/amor-4.14.3 <--- kde-base/kdetoys-meta-4.12.5 ---> kde-base/kdetoys-meta-4.14.3 <--- kde-base/kcolorchooser-4.12.5 ---> kde-base/kcolorchooser-4.14.3 <--- kde-base/kamera-4.12.5 ---> kde-base/kamera-4.14.3 <--- kde-base/kruler-4.12.5 ---> kde-base/kruler-4.14.3 <--- kde-base/thumbnailers-4.12.5 ---> kde-base/thumbnailers-4.14.3 <--- kde-base/kdegraphics-mobipocket-4.12.5 ---> kde-base/kdegraphics-mobipocket-4.14.3 <--- kde-base/ksnapshot-4.12.5 ---> kde-base/ksnapshot-4.14.3 <--- kde-base/okular-4.12.5-r1 ---> kde-base/okular-4.14.3 <--- kde-base/kolourpaint-4.12.5 ---> kde-base/kolourpaint-4.14.3 <--- kde-base/kmines-4.12.5 ---> kde-base/kmines-4.14.3 <--- kde-base/knetwalk-4.12.5 ---> kde-base/knetwalk-4.14.3 <--- kde-base/kigo-4.12.5 ---> kde-base/kigo-4.14.3 <--- kde-base/ksudoku-4.12.5 ---> kde-base/ksudoku-4.14.3 <--- kde-base/klines-4.12.5 ---> kde-base/klines-4.14.3 <--- kde-base/killbots-4.12.5 ---> kde-base/killbots-4.14.3 <--- kde-base/kreversi-4.12.5 ---> kde-base/kreversi-4.14.3 <--- kde-base/kajongg-4.12.5 ---> kde-base/kajongg-4.14.3 <--- kde-base/kollision-4.12.5 ---> kde-base/kollision-4.14.3 <--- kde-base/palapeli-4.12.5 ---> kde-base/palapeli-4.14.3 <--- kde-base/kpat-4.12.5 ---> kde-base/kpat-4.14.3 <--- kde-base/kdiamond-4.12.5 ---> kde-base/kdiamond-4.14.3 <--- kde-base/kmahjongg-4.12.5 ---> kde-base/kmahjongg-4.14.3 <--- kde-base/kblackbox-4.12.5 ---> kde-base/kblackbox-4.14.3 <--- kde-base/ktuberling-4.12.5 ---> kde-base/ktuberling-4.14.3 <--- kde-base/ksirk-4.12.5 ---> kde-base/ksirk-4.14.3 <--- kde-base/kshisen-4.12.5 ---> kde-base/kshisen-4.14.3 <--- kde-base/kbreakout-4.12.5 ---> kde-base/kbreakout-4.14.3 <--- kde-base/kjumpingcube-4.12.5 ---> kde-base/kjumpingcube-4.14.3 <--- kde-base/kbounce-4.12.5 ---> kde-base/kbounce-4.14.3 <--- kde-base/granatier-4.12.5 ---> kde-base/granatier-4.14.3 <--- kde-base/katomic-4.12.5 ---> kde-base/katomic-4.14.3 <--- kde-base/ksquares-4.12.5 ---> kde-base/ksquares-4.14.3 <--- kde-base/ksnakeduel-4.12.5 ---> kde-base/ksnakeduel-4.14.3 <--- kde-base/lskat-4.12.5 ---> kde-base/lskat-4.14.3 <--- kde-base/konquest-4.12.5 ---> kde-base/konquest-4.14.3 <--- kde-base/klickety-4.12.5 ---> kde-base/klickety-4.14.3 <--- kde-base/kiriki-4.12.5 ---> kde-base/kiriki-4.14.3 <--- kde-base/bovo-4.12.5 ---> kde-base/bovo-4.14.3 <--- kde-base/kspaceduel-4.12.5 ---> kde-base/kspaceduel-4.14.3 <--- kde-base/bomber-4.12.5 ---> kde-base/bomber-4.14.3 <--- kde-base/knavalbattle-4.12.5 ---> kde-base/knavalbattle-4.14.3 <--- kde-base/kolf-4.12.5 ---> kde-base/kolf-4.14.3 <--- kde-base/kfourinline-4.12.5 ---> kde-base/kfourinline-4.14.3 <--- kde-base/kgoldrunner-4.12.5 ---> kde-base/kgoldrunner-4.14.3 <--- kde-base/kblocks-4.12.5 ---> kde-base/kblocks-4.14.3 <--- kde-base/picmi-4.12.5 ---> kde-base/picmi-4.14.3 <--- kde-base/kubrick-4.12.5 ---> kde-base/kubrick-4.14.3 <--- kde-base/kapman-4.12.5 ---> kde-base/kapman-4.14.3 <--- kde-base/kdegames-meta-4.12.5 ---> kde-base/kdegames-meta-4.14.3 <--- kde-base/libkomparediff2-4.12.5 ---> kde-base/libkomparediff2-4.14.3 <--- kde-base/kompare-4.12.5 ---> kde-base/kompare-4.14.3 <--- kde-base/kdepim-icons-4.12.5 ---> kde-base/kdepim-icons-4.14.3 <--- kde-base/kdepim-runtime-4.12.5 ---> kde-base/kdepim-runtime-4.14.3 ---> kde-base/baloo-4.14.3 <--- kde-base/nepomuk-core-4.12.5 ---> kde-base/nepomuk-core-4.14.3 <--- kde-base/nepomuk-widgets-4.12.5 ---> kde-base/nepomuk-widgets-4.14.3 <--- kde-base/nepomuk-4.12.5 <--- x11-drivers/nvidia-drivers-340.58 ---> x11-drivers/nvidia-drivers-340.65 ---> kde-base/baloo-widgets-4.14.3 <--- kde-base/gwenview-4.12.5 ---> kde-base/gwenview-4.14.3 <--- media-video/simplescreenrecorder-0.3.1 ---> media-video/simplescreenrecorder-0.3.3 <--- media-gfx/nvidia-cg-toolkit-3.1.0013-r2 ---> media-gfx/nvidia-cg-toolkit-3.1.0013-r3 <--- kde-base/kdepim-strigi-analyzer-4.4.11.1 ---> kde-base/kdepim-strigi-analyzer-4.4.11.1-r1 <--- kde-base/umbrello-4.12.5 ---> kde-base/umbrello-4.14.3 <--- kde-base/dolphin-plugins-4.12.5 ---> kde-base/dolphin-plugins-4.14.3 <--- games-util/steam-launcher-1.0.0.47 ---> games-util/steam-launcher-1.0.0.49 <--- media-sound/amarok-2.8.0 ---> media-sound/amarok-2.8.0-r3 <--- app-office/libreoffice-bin-4.2.6.3-r2 ---> app-office/libreoffice-bin-4.2.8.2 <--- media-video/kdenlive-0.9.2 ---> media-video/kdenlive-0.9.8 <--- kde-base/kdegraphics-meta-4.12.5 ---> kde-base/kdegraphics-meta-4.14.3 <--- kde-base/dolphin-4.12.5 ---> kde-base/dolphin-4.14.3 <--- kde-base/kdebase-meta-4.12.5 ---> kde-base/kdebase-meta-4.14.4 <--- kde-base/kde-meta-4.12.5 ---> kde-base/kde-meta-4.14.3 <--- kde-base/kdepim-common-libs-4.12.5 ---> kde-base/kdepim-common-libs-4.14.3 <--- kde-base/kmail-4.12.5 <--- kde-base/kontact-4.12.5 ---> kde-base/kontact-4.14.3 <--- kde-base/akregator-4.12.5 ---> kde-base/akregator-4.14.3
The last time I saw chromium crash like this was cpu-cflags-related (upstream had hardcoded sse3 stuff in). Yours looks correct though. See https://code.google.com/p/chromium/wiki/LinuxDebugging if you haven't already. It looks like Gentoo's default no-debug-symbols policy might have screwed you over, since those backtraces are almost blank. You'll have to rebuild chromium and all its deps with splitdebug enabled to get anything useful out of them.
Hello I installed gnome-extra/gnome-shell-extensions-topicons-plus and from gnome-tweak i went to extensions and enabled it. But i can't see it anywhere. Where should it be? I have seen screenshots but no, i can't see anything. Thanks.
after writing this post, the icons appeared there. IMHO i didn't do anything for that. So it works, thanks
Hello, since a very long time I'm finally back to use linux (more specific: gentoo) again. After some days of work I managed to set up a basic KDE enviroment. One of the problems I'm fighting with is the keyboard layout which is set to US. sddm-0.18.1-r1 openrc-0.41.2 The sddm login screen only shows the US flag and so the keyboard is set to "qwerty". After logging in I'm able to switch to the german keyboard layout manually with writing Code: setxkbmap de to the konsole. Here are my config files: Code: /etc/sddm.conf [General] Numlock=on [X11] DisplayCommand=/etc/sddm/scripts/Xsetup The entry for numlook seems to work as it is activated after altering the config file. But the "DisplayCommand" seems to fail because the keyboard layout is not switched to german. Here is my script /etc/sddm/scripts/Xsetup Code: setxkbmap de
In my case the file /usr/share/sddm/scripts/Xsetup by default contains only the following [1]: Code: #!/bin/sh # Xsetup - run as root before the login dialog appears I edited the file to contain the list of keyboards I wanted SDDM to allow me to choose from on the log-in screen: Code: #!/bin/sh # Xsetup - run as root before the login dialog appears setxkbmap gb,us,br,es I also have the following in file /etc/X11/xorg.conf.d/00-keyboard.conf (the number in the file name may be different in your case): Code: Section "InputClass" Identifier "keyboard" MatchIsKeyboard "yes" Option "XkbLayout" "gb,us,br,es" Option "XkbVariant" "" Option "XkbOptions" "grp:alt_shift_toggle" EndSection So I expect you would need something like this: /usr/share/sddm/scripts/Xsetup Code: #!/bin/sh # Xsetup - run as root before the login dialog appears setxkbmap de,us /etc/X11/xorg.conf.d/00-keyboard.conf (the number in the file name may be different in your case) Code: Section "InputClass" Identifier "keyboard" MatchIsKeyboard "yes" Option "XkbLayout" "de,us" Option "XkbVariant" "" Option "XkbOptions" "grp:alt_shift_toggle" EndSection Ref 1. https://fitzcarraldoblog.wordpress.com/2015/12/03/sddm-keyboard-layout/
A few days ago I set up gentoo on my laptop and (somehow) managed to get KDE running. The system settings won´t allow me to change several settings, p.e.: - sddm - date & time - KDE passwords There may be some packages missing because there should be at last an option to execute this settings as sysadmin.
If the kauth mechanism isn't working then it is most likely for lack of a proper seat created at login (requires either elogind, consolekit or systemd).
When I run `notify-send "Example" "text"` I get this notfification: Quote: Example text When I run `notify-send "Example" "$(cat example.file)"` I get this: Quote: Example text Note the missing bold text. Is this a bug or am I doing something wrong? I'm using libnotify 0.7.7 and Dunst 1.3.2.
Since the in-tree version has a known issue, and you got the newer version to work, you should consider submitting a bump request and the associated ebuild, so that other users can more readily get the good version.
Hi ! I just upgraded my Gentoo setup, and amongst the upgraded packages, I had a lot of XFCE upgrades (4.12 -> 4.14 if I remember correctly). I rebooted my laptop, and now I can login but the XFCE panel won't start. Everything else seems to be fine (I can start my apps using ALT+F2, and I have my shortcuts on my desktop) xfwm4 and xfdesktop are running, but xfce4-panel is not. When I try to start it, I have to following output: Code: (xfce4-panel:9144): xfce4-panel-CRITICAL **: 20:14:49.394: Nom org.xfce.Panel perdu sur le message dbus, fermeture. Quote: name org.xfce.panel lost on the message dbus exiting I tried to find something on Google/Gentoo bugzilla/here but I don't find something recent or related to the last versions of XFCE. Here is my config: Code: xxx-thinkpad :: ~ 130 » emerge --info xfce4-panel Portage 2.3.76 (python 3.6.9-final-0, default/linux/amd64/17.1/desktop, gcc-8.3.0, glibc-2.29-r2, 4.19.72-gentoo x86_64) ================================================================= System Settings ================================================================= System uname: Linux-4.19.72-gentoo-x86_64-Intel-R-_Core-TM-_i7-6600U_CPU_@_2.60GHz-with-gentoo-2.6 KiB Mem: 7623756 total, 3658884 free KiB Swap: 0 total, 0 free Timestamp of repository gentoo: Fri, 11 Oct 2019 17:30:01 +0000 Head commit of repository gentoo: cf49b9029a0661dd61816ab0a5777600fd13fc0b Head commit of repository steam-overlay: 5b099b835b5b8dc7f37390e37e44cebba7cc315d sh bash 4.4_p23-r1 ld GNU ld (Gentoo 2.32 p2) 2.32.0 app-shells/bash: 4.4_p23-r1::gentoo dev-java/java-config: 2.2.0-r4::gentoo dev-lang/perl: 5.28.2-r1::gentoo dev-lang/python: 2.7.16::gentoo, 3.6.9::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.41.2::gentoo sys-apps/sandbox: 2.13::gentoo sys-devel/autoconf: 2.13-r1::gentoo, 2.69-r4::gentoo sys-devel/automake: 1.13.4-r2::gentoo, 1.16.1-r1::gentoo sys-devel/binutils: 2.32-r1::gentoo sys-devel/gcc: 8.3.0-r1::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.19::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-extra-opts: sync-rsync-verify-metamanifest: yes sync-rsync-verify-jobs: 1 sync-rsync-verify-max-age: 24 localrepo location: /usr/local/portage/localrepo masters: gentoo steam-overlay location: /usr/local/portage/steam-overlay sync-type: git sync-uri: https://github.com/anyc/steam-overlay.git masters: gentoo priority: 50 ACCEPT_KEYWORDS="amd64" ACCEPT_LICENSE="* -@EULA" CBUILD="x86_64-pc-linux-gnu" CFLAGS="-march=skylake -O2 -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=skylake -O2 -pipe" DISTDIR="/usr/portage/distfiles" ENV_UNSET="DBUS_SESSION_BUS_ADDRESS DISPLAY GOBIN 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 sandbox sfperms strict unknown-features-warn unmerge-logs unmerge-orphans userfetch userpriv usersandbox usersync xattr" FFLAGS="-O2 -pipe" GENTOO_MIRRORS="ftp://mirror.bytemark.co.uk/gentoo/ rsync://mirror.bytemark.co.uk/gentoo/" LANG="fr_FR.utf8" LDFLAGS="-Wl,-O1 -Wl,--as-needed" LINGUAS="fr fr_FR en" 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 a52 aac acl acpi alsa amd64 berkdb bluetooth branding bzip2 cairo cdda cdr cli consolekit crypt cups cxx dbus dri dts dvd dvdr emboss encode exif fam flac fortran gdbm gif glamor gnome-keyring gpm gtk iconv icu ipv6 jpeg lcms ldap less libnotify libtirpc linguas_fr lm-sensors lock lvm mad mmxext mng mp3 mp4 mpeg multilib ncurses networkmanager nls nptl ogg opengl openmp pam pango pcre pdf pm-utils png policykit ppds pulseaudio readline sdl seccomp session spell split-usr ssl ssse3 startup-notification svg tcpd thunar tiff truetype udev udisks unicode upower usb v4l v4l2 vaapi vim vorbis wxwidgets x264 xattr xcb xml xv xvid zlib" ABI_X86="64" ADA_TARGET="gnat_2018" ALSA_CARDS="hda-intel" 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" 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" KERNEL="linux" L10N="fr fr_FR en" LCD_DEVICES="bayrad cfontz cfontz633 glk hd44780 lb216 lcdm001 mtxorb ncurses text" LIBREOFFICE_EXTENSIONS="presenter-console presenter-minimizer" NETBEANS_MODULES="apisupport cnd groovy gsf harness ide identity j2ee java mobility nb php profiler soa visualweb webcommon websvccommon xml" OFFICE_IMPLEMENTATION="libreoffice" PHP_TARGETS="php7-2" POSTGRES_TARGETS="postgres10 postgres11" PYTHON_SINGLE_TARGET="python3_6" PYTHON_TARGETS="python2_7 python3_6" RUBY_TARGETS="ruby24 ruby25" USERLAND="GNU" VIDEO_CARDS="intel i965" XFCE_PLUGINS="brightness clock trash" 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 ================================================================= Package Settings ================================================================= xfce-base/xfce4-panel-4.14.1::gentoo was built with the following: USE="gtk2 -introspection -vala" ABI_X86="(64)" dbus and consolekit are both running, but maybe their configuration is not correct ? Thanks a lot for your help
Ok the issue was quite simple... After the upgrade and once rebooted, the primary screen had been set to a non connected output (HDMI1), so the Panel was starting but not showing... I found this while looking at all the parameters of XFCE (in configuration panel) and found that "output" was set to "HDMI1" for panel 1. I put it back to "Primary" and everything worked fine again.
xfce4-mailwatch-plugin-1.2.0-r3 prevents the complete upgrade to Xfce 4.14. Code: xfce-base/exo:0 (xfce-base/exo-0.12.8:0/0::gentoo, ebuild scheduled for merge) pulled in by >=xfce-base/exo-0.12.8 required by (xfce-base/xfce4-meta-4.14-r1:0/0::gentoo, ebuild scheduled for merge) ^^ ^^^^^^ (xfce-base/exo-0.12.4:0/0::gentoo, installed) pulled in by <xfce-base/exo-0.12.5-r100 required by (xfce-extra/xfce4-mailwatch-plugin-1.2.0-r3:0/0::gentoo, installed) ^ ^^^^^^^^^^^ Anyone knows a good alternative to this plugin for Xfce?
Maybe mail-client/mail-notification?
Hi, When you try to open a folder from the desktop, for some reason DjView starts and reports that It cannot open the folder. When unmerge DjView the problem disappears. What's wrong with DjView? I'm using KDE and last version DjView. Screenshot: https://www.dropbox.com/s/wj12xmec3vnr9md/1.png?dl=0
Solved: System settings > Default applications -> File manager -> select Dophin
I just installed LXQT. AFAIK, it installed correctly. When I try to launch it with startlxqt , I just get these errors instead: Code: 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. Aborted Can anyone tell what is going on here?
You'll want to have the command in your user's '.xinitrc', and then use 'startx' (if like me, you're not into display managers). Like so: Code: exec startlxqt I'm not using *kits nor systemd or elogind, so some things (such as shutting down via the menu) will not work with just this, so you may want to add at least 'ck-launch-session' to that line as well. See also: https://wiki.gentoo.org/wiki/LXQt#Launching_LXQt_with_startx
Hello, kmail is set up as my mail program and I made the unfortunate misstake of deleting my "trash" folder. So every attemt of restarting kmail/kontact ends with the error messege that the folder "trash" could not be created. I already deleted the kmail config file kmail2rc but that obviously wasn´t present. So I want to delete all korganizer config files and set up all the modules again. Where do I find these files? Best
I think they are in ~/.config and ~/.kde4/config
Hi, as I write on the topic I am unable to load nvidia module here lsmod where aren t present: Code: lsmod Module Size Used by snd_usb_audio 208896 0 snd_usbmidi_lib 28672 1 snd_usb_audio snd_rawmidi 28672 1 snd_usbmidi_lib iwlmvm 331776 0 x86_pkg_temp_thermal 16384 0 iwlwifi 299008 1 iwlmvm vboxpci 28672 0 vboxnetadp 28672 0 vboxnetflt 32768 0 vboxdrv 413696 3 vboxpci,vboxnetadp,vboxnetflt bbswitch 16384 0 vxlan 53248 0 ip6_udp_tunnel 16384 1 vxlan udp_tunnel 16384 1 vxlan overlay 114688 0 xfs 1159168 0 jfs 192512 0 reiserfs 323584 0 and maybe it happends for this reason: Code: nvidia: Unknown symbol ipmi_create_user (err -2) [ 4.147019] nvidia: Unknown symbol ipmi_destroy_user (err -2) [ 4.148237] nvidia: Unknown symbol ipmi_validate_addr (err -2) [ 4.149524] nvidia: Unknown symbol ipmi_free_recv_msg (err -2) [ 4.151045] nvidia: Unknown symbol ipmi_set_my_address (err -2) [ 4.152654] nvidia: Unknown symbol ipmi_request_settime (err -2) [ 4.153775] nvidia: Unknown symbol ipmi_set_gets_events (err -2) if I try to load it manually: Code: insmod /lib/modules/4.19.72-gentoo/video/nvidia.ko insmod: ERROR: could not insert module /lib/modules/4.19.72-gentoo/video/nvidia.ko: Unknown symbol in module my .config Code: grep -i ipmi /usr/src/linux/.config CONFIG_ACPI_IPMI=m CONFIG_IPMI_HANDLER=y CONFIG_IPMI_DMI_DECODE=y # CONFIG_IPMI_PANIC_EVENT is not set CONFIG_IPMI_DEVICE_INTERFACE=m CONFIG_IPMI_SI=m CONFIG_IPMI_SSIF=m CONFIG_IPMI_WATCHDOG=m CONFIG_IPMI_POWEROFF=m and video: Code: lspci | grep -i vga 00:02.0 VGA compatible controller: Intel Corporation Device 3e94 01:00.0 VGA compatible controller: NVIDIA Corporation GP107GLM [Quadro P2000 Mobile] (rev ff) kernel: Code: uname -a Linux gentoo 4.19.72-gentoo #9 SMP Thu Oct 10 11:27:32 CEST 2019 x86_64 Intel(R) Xeon(R) E-2176M CPU @ 2.70GHz GenuineIntel GNU/Linux emerge --info: Code: Portage 2.3.76 (python 3.6.9-final-0, default/linux/amd64/17.1/desktop/plasma/systemd, gcc-8.3.0, glibc-2.29-r2, 4.19.72-gentoo x86_64) ================================================================= System uname: Linux-4.19.72-gentoo-x86_64-Intel-R-_Xeon-R-_E-2176M_CPU_@_2.70GHz-with-gentoo-2.6 KiB Mem: 32598988 total, 29515048 free KiB Swap: 32767996 total, 32767996 free Timestamp of repository gentoo: Wed, 16 Oct 2019 00:45:02 +0000 Head commit of repository gentoo: bd4f1637960181a2b27465027991e0c82382675a sh bash 4.4_p23-r1 ld GNU ld (Gentoo 2.32 p2) 2.32.0 app-shells/bash: 4.4_p23-r1::gentoo dev-lang/perl: 5.28.2-r1::gentoo dev-lang/python: 2.7.16::gentoo, 3.6.9::gentoo dev-util/cmake: 3.14.6::gentoo sys-apps/baselayout: 2.6-r1::gentoo sys-apps/sandbox: 2.13::gentoo sys-devel/autoconf: 2.13-r1::gentoo, 2.69-r4::gentoo sys-devel/automake: 1.16.1-r1::gentoo sys-devel/binutils: 2.32-r1::gentoo sys-devel/gcc: 8.3.0-r1::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.19::gentoo (virtual/os-headers) sys-libs/glibc: 2.29-r2::gentoo Repositories: gentoo location: /var/db/repos/gentoo sync-type: rsync sync-uri: rsync://rsync.gentoo.org/gentoo-portage priority: -1000 sync-rsync-extra-opts: sync-rsync-verify-max-age: 24 sync-rsync-verify-jobs: 1 sync-rsync-verify-metamanifest: yes x-portage location: /usr/local/portage masters: gentoo priority: 0 ACCEPT_KEYWORDS="amd64" ACCEPT_LICENSE="*" CBUILD="x86_64-pc-linux-gnu" CFLAGS="-march=skylake -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=skylake -O2 -pipe" DISTDIR="/var/cache/distfiles" ENV_UNSET="DBUS_SESSION_BUS_ADDRESS DISPLAY GOBIN 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=skylake -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 sandbox sfperms strict unknown-features-warn unmerge-logs unmerge-orphans userfetch usersandbox usersync xattr" FFLAGS="-march=skylake -O2 -pipe" GENTOO_MIRRORS="http://ftp.free.fr/mirrors/ftp.gentoo.org/" LANG="it_IT.utf8" LDFLAGS="-Wl,-O1 -Wl,--as-needed" LINGUAS="it en" MAKEOPTS="-j13" 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 branding bzip2 cairo cdda cdr cli crypt cups cxx dbus declarative device-mapper dri dts dvd dvdr emboss encode exif fam flac fortran gdbm gif glamor gpm gtk gtk3 iconv icu ipv6 jpeg kde kipi kwallet lcms ldap 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 sdl seccomp semantic-desktop spell split-usr ssl startup-notification svg systemd tcpd thunderbolt tiff truetype udev udisks unicode upower usb vorbis widgets wxwidgets x264 xattr xcb xcomposite 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="aes 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" GRUB_PLATFORMS="efi-64" INPUT_DEVICES="evdev synaptics keyboard mouse libinput" KERNEL="linux" L10N="it" LCD_DEVICES="bayrad cfontz cfontz633 glk hd44780 lb216 lcdm001 mtxorb ncurses text" LIBREOFFICE_EXTENSIONS="presenter-console presenter-minimizer" NETBEANS_MODULES="apisupport cnd groovy gsf harness ide identity j2ee java mobility nb php profiler soa visualweb webcommon websvccommon xml" OFFICE_IMPLEMENTATION="libreoffice" PHP_TARGETS="php7-2" POSTGRES_TARGETS="postgres10 postgres11" PYTHON_SINGLE_TARGET="python3_6" PYTHON_TARGETS="python2_7 python3_6" RUBY_TARGETS="ruby24 ruby25" USERLAND="GNU" VIDEO_CARDS="nvidia 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, PORTAGE_BINHOST, PORTAGE_BUNZIP2_COMMAND, PORTAGE_COMPRESS, PORTAGE_COMPRESS_FLAGS, PORTAGE_RSYNC_EXTRA_OPTS any help or hint? I tryed with a wiki ... but nothing... my laptop is a lenovo P52 tnx for any hint
marziods, Lets see what it the kernel provides the symbol Code: ipmi_create_user Code: roy@NeddySeagoon_Static ~ $ cd /usr/src/linux roy@NeddySeagoon_Static /usr/src/linux $ grep -r ipmi_create_user ./ ./Documentation/IPMI.txt:ipmi_create_user. The interface number specifies which SMI you want ./Documentation/IPMI.txt:field of the "handler" that you passed in to ipmi_create_user(). ./drivers/acpi/acpi_ipmi.c: err = ipmi_create_user(iface, &driver_data.ipmi_hndlrs, ./drivers/hwmon/ibmaem.c: err = ipmi_create_user(data->interface, &driver_data.ipmi_hndlrs, ./drivers/hwmon/ibmpex.c: err = ipmi_create_user(data->interface, &driver_data.ipmi_hndlrs, ./drivers/char/ipmi/ipmi_watchdog.c: rv = ipmi_create_user(ipmi_intf, &ipmi_hndlrs, NULL, &watchdog_user); ./drivers/char/ipmi/ipmi_devintf.c: rv = ipmi_create_user(if_num, ./drivers/char/ipmi/ipmi_poweroff.c: rv = ipmi_create_user(if_num, &ipmi_poweroff_handler, NULL, ./drivers/char/ipmi/ipmi_msghandler.c:int ipmi_create_user(unsigned int if_num, ./drivers/char/ipmi/ipmi_msghandler.c:EXPORT_SYMBOL(ipmi_create_user); ./include/linux/ipmi.h:int ipmi_create_user(unsigned int if_num, roy@NeddySeagoon_Static /usr/src/linux $ The line Code: ./drivers/char/ipmi/ipmi_msghandler.c:EXPORT_SYMBOL(ipmi_create_user); is the important line It makes the symbol available for other things to use. That means you need the file ./drivers/char/ipmi/ipmi_msghandler.c compiled and if its a module, the module must be loaded. I don't see any signs that in your lsmod output. Check for Code: # CONFIG_UNUSED_SYMBOLS is not set That setting when it is not set as here, removes any symbols that are defined in the kernel but not used by the kernel, so that they are not exported. That can break external kernel modules.
Hello, i'm trying to sandbox firefox with firejail. However, when started using Code: firejail firefox , firefox does load, but it is unusable. Meaning i cannot enter any URL nor access any options from the menu. The output from the command above looks like this: Code: Reading profile /etc/firejail/firefox.profile Reading profile /etc/firejail/disable-common.inc Reading profile /etc/firejail/disable-devel.inc Reading profile /etc/firejail/disable-programs.inc Reading profile /etc/firejail/whitelist-common.inc Parent pid 4817, child pid 4818 Blacklist violations are logged to syslog Child process initialized in 52.36 ms [Parent 7, Gecko_IOThread] WARNING: pipe error (49): Connection reset by peer: file /var/tmp/notmpfs/portage/www-client/firefox-68.1.0/work/firefox-68.1.0/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 358 [Parent 7, Gecko_IOThread] WARNING: pipe error (57): Connection reset by peer: file /var/tmp/notmpfs/portage/www-client/firefox-68.1.0/work/firefox-68.1.0/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 358 [Parent 7, Gecko_IOThread] WARNING: pipe error (56): Connection reset by peer: file /var/tmp/notmpfs/portage/www-client/firefox-68.1.0/work/firefox-68.1.0/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 358 [Parent 7, Gecko_IOThread] WARNING: pipe error (50): Connection reset by peer: file /var/tmp/notmpfs/portage/www-client/firefox-68.1.0/work/firefox-68.1.0/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 358 [Parent 7, Gecko_IOThread] WARNING: pipe error (53): Connection reset by peer: file /var/tmp/notmpfs/portage/www-client/firefox-68.1.0/work/firefox-68.1.0/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 358 [Parent 7, Gecko_IOThread] WARNING: pipe error (55): Connection reset by peer: file /var/tmp/notmpfs/portage/www-client/firefox-68.1.0/work/firefox-68.1.0/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 358 ###!!! [Parent][MessageChannel] Error: (msgtype=0x1E008E,name=PBrowser::Msg_LoadRemoteScript) Channel error: cannot send/recv JavaScript error: chrome://global/content/elements/browser-custom-element.js, line 1201: NS_ERROR_FAILURE: ###!!! [Parent][MessageChannel] Error: (msgtype=0x1E0090,name=PBrowser::Msg_SetDocShellIsActive) Channel error: cannot send/recv ###!!! [Parent][MessageChannel] Error: (msgtype=0x1E006E,name=PBrowser::Msg_UpdateDimensions) Channel error: cannot send/recv ###!!! [Parent][MessageChannel] Error: (msgtype=0x1E008F,name=PBrowser::Msg_Destroy) Channel error: cannot send/recv JavaScript error: resource://gre/modules/RemoteWebNavigation.jsm, line 133: TypeError: this._browser.frameLoader.remoteTab is null JavaScript error: resource:///modules/sessionstore/SessionStore.jsm, line 1325: uncaught exception: 2147746065 [Parent 7, Gecko_IOThread] WARNING: pipe error (82): Connection reset by peer: file /var/tmp/notmpfs/portage/www-client/firefox-68.1.0/work/firefox-68.1.0/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 358 [Parent 7, Gecko_IOThread] WARNING: pipe error (90): Connection reset by peer: file /var/tmp/notmpfs/portage/www-client/firefox-68.1.0/work/firefox-68.1.0/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 358 [Parent 7, Gecko_IOThread] WARNING: pipe error (89): Connection reset by peer: file /var/tmp/notmpfs/portage/www-client/firefox-68.1.0/work/firefox-68.1.0/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 358 [Parent 7, Gecko_IOThread] WARNING: pipe error (83): Connection reset by peer: file /var/tmp/notmpfs/portage/www-client/firefox-68.1.0/work/firefox-68.1.0/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 358 [Parent 7, Gecko_IOThread] WARNING: pipe error (86): Connection reset by peer: file /var/tmp/notmpfs/portage/www-client/firefox-68.1.0/work/firefox-68.1.0/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 358 [Parent 7, Gecko_IOThread] WARNING: pipe error (88): Connection reset by peer: file /var/tmp/notmpfs/portage/www-client/firefox-68.1.0/work/firefox-68.1.0/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 358 ###!!! [Parent][MessageChannel] Error: (msgtype=0x1E008E,name=PBrowser::Msg_LoadRemoteScript) Channel error: cannot send/recv JavaScript error: chrome://global/content/elements/browser-custom-element.js, line 1201: NS_ERROR_FAILURE: ###!!! [Parent][MessageChannel] Error: (msgtype=0x35006F,name=PContent::Msg_RegisterBrowsingContextGroup) Channel error: cannot send/recv ###!!! [Parent][MessageChannel] Error: (msgtype=0x350002,name=PContent::Msg_ConstructBrowser) Channel error: cannot send/recv ###!!! [Parent][MessageChannel] Error: (msgtype=0x350002,name=PContent::Msg_ConstructBrowser) Channel error: cannot send/recv ###!!! [Parent][MessageChannel] Error: (msgtype=0x350002,name=PContent::Msg_ConstructBrowser) Channel error: cannot send/recv JavaScript error: chrome://global/content/elements/browser-custom-element.js, line 1167: NS_ERROR_UNEXPECTED: Component returned failure code: 0x8000ffff (NS_ERROR_UNEXPECTED) [nsIScriptSecurityManager.getLoadContextCodebasePrincipal] ###!!! [Parent][MessageChannel] Error: (msgtype=0x35006F,name=PContent::Msg_RegisterBrowsingContextGroup) Channel error: cannot send/recv ###!!! [Parent][MessageChannel] Error: (msgtype=0x350002,name=PContent::Msg_ConstructBrowser) Channel error: cannot send/recv ###!!! [Parent][MessageChannel] Error: (msgtype=0x350002,name=PContent::Msg_ConstructBrowser) Channel error: cannot send/recv ###!!! [Parent][MessageChannel] Error: (msgtype=0x350002,name=PContent::Msg_ConstructBrowser) Channel error: cannot send/recv JavaScript error: chrome://global/content/elements/browser-custom-element.js, line 1167: NS_ERROR_UNEXPECTED: Component returned failure code: 0x8000ffff (NS_ERROR_UNEXPECTED) [nsIScriptSecurityManager.getLoadContextCodebasePrincipal] ###!!! [Parent][MessageChannel] Error: (msgtype=0x35006F,name=PContent::Msg_RegisterBrowsingContextGroup) Channel error: cannot send/recv ###!!! [Parent][MessageChannel] Error: (msgtype=0x350002,name=PContent::Msg_ConstructBrowser) Channel error: cannot send/recv ###!!! [Parent][MessageChannel] Error: (msgtype=0x350002,name=PContent::Msg_ConstructBrowser) Channel error: cannot send/recv ###!!! [Parent][MessageChannel] Error: (msgtype=0x350002,name=PContent::Msg_ConstructBrowser) Channel error: cannot send/recv JavaScript error: chrome://global/content/elements/browser-custom-element.js, line 1167: NS_ERROR_UNEXPECTED: Component returned failure code: 0x8000ffff (NS_ERROR_UNEXPECTED) [nsIScriptSecurityManager.getLoadContextCodebasePrincipal] ###!!! [Parent][MessageChannel] Error: (msgtype=0x35006F,name=PContent::Msg_RegisterBrowsingContextGroup) Channel error: cannot send/recv ###!!! [Parent][MessageChannel] Error: (msgtype=0x350002,name=PContent::Msg_ConstructBrowser) Channel error: cannot send/recv ###!!! [Parent][MessageChannel] Error: (msgtype=0x350002,name=PContent::Msg_ConstructBrowser) Channel error: cannot send/recv ###!!! [Parent][MessageChannel] Error: (msgtype=0x350002,name=PContent::Msg_ConstructBrowser) Channel error: cannot send/recv JavaScript error: chrome://global/content/elements/browser-custom-element.js, line 1167: NS_ERROR_UNEXPECTED: Component returned failure code: 0x8000ffff (NS_ERROR_UNEXPECTED) [nsIScriptSecurityManager.getLoadContextCodebasePrincipal] ###!!! [Parent][MessageChannel] Error: (msgtype=0x35006F,name=PContent::Msg_RegisterBrowsingContextGroup) Channel error: cannot send/recv ###!!! [Parent][MessageChannel] Error: (msgtype=0x350002,name=PContent::Msg_ConstructBrowser) Channel error: cannot send/recv ###!!! [Parent][MessageChannel] Error: (msgtype=0x350002,name=PContent::Msg_ConstructBrowser) Channel error: cannot send/recv ###!!! [Parent][MessageChannel] Error: (msgtype=0x350002,name=PContent::Msg_ConstructBrowser) Channel error: cannot send/recv JavaScript error: chrome://global/content/elements/browser-custom-element.js, line 1167: NS_ERROR_UNEXPECTED: Component returned failure code: 0x8000ffff (NS_ERROR_UNEXPECTED) [nsIScriptSecurityManager.getLoadContextCodebasePrincipal] ###!!! [Parent][MessageChannel] Error: (msgtype=0x35006F,name=PContent::Msg_RegisterBrowsingContextGroup) Channel error: cannot send/recv ###!!! [Parent][MessageChannel] Error: (msgtype=0x350002,name=PContent::Msg_ConstructBrowser) Channel error: cannot send/recv ###!!! [Parent][MessageChannel] Error: (msgtype=0x350002,name=PContent::Msg_ConstructBrowser) Channel error: cannot send/recv ###!!! [Parent][MessageChannel] Error: (msgtype=0x350002,name=PContent::Msg_ConstructBrowser) Channel error: cannot send/recv JavaScript error: chrome://global/content/elements/browser-custom-element.js, line 1167: NS_ERROR_UNEXPECTED: Component returned failure code: 0x8000ffff (NS_ERROR_UNEXPECTED) [nsIScriptSecurityManager.getLoadContextCodebasePrincipal] ###!!! [Parent][MessageChannel] Error: (msgtype=0x1E008E,name=PBrowser::Msg_LoadRemoteScript) Channel error: cannot send/recv ###!!! [Parent][MessageChannel] Error: (msgtype=0x1E0001,name=PBrowser::Msg_AsyncMessage) Channel error: cannot send/recv JavaScript error: resource://gre/modules/RemoteWebNavigation.jsm, line 133: TypeError: this._browser.frameLoader.remoteTab is null JavaScript error: resource://gre/modules/RemoteWebNavigation.jsm, line 133: TypeError: this._browser.frameLoader.remoteTab is null JavaScript error: resource://gre/modules/RemoteWebNavigation.jsm, line 133: TypeError: this._browser.frameLoader.remoteTab is null JavaScript error: resource://gre/modules/RemoteWebNavigation.jsm, line 133: TypeError: this._browser.frameLoader.remoteTab is null JavaScript error: resource://gre/modules/RemoteWebNavigation.jsm, line 133: TypeError: this._browser.frameLoader.remoteTab is null JavaScript error: resource://gre/modules/RemoteWebNavigation.jsm, line 133: TypeError: this._browser.frameLoader.remoteTab is null ###!!! [Parent][MessageChannel] Error: (msgtype=0x1E006E,name=PBrowser::Msg_UpdateDimensions) Channel error: cannot send/recv ###!!! [Parent][MessageChannel] Error: (msgtype=0x1E008F,name=PBrowser::Msg_Destroy) Channel error: cannot send/recv JavaScript error: resource://gre/modules/ExtensionParent.jsm, line 1681: TypeError: messageManager is null JavaScript error: resource://gre/modules/ExtensionParent.jsm, line 1681: TypeError: messageManager is null JavaScript error: resource://gre/modules/ExtensionParent.jsm, line 1681: TypeError: messageManager is null JavaScript error: resource://gre/modules/ExtensionParent.jsm, line 1681: TypeError: messageManager is null JavaScript error: resource://gre/modules/ExtensionParent.jsm, line 1681: TypeError: messageManager is null JavaScript error: resource://gre/modules/ExtensionParent.jsm, line 1681: TypeError: messageManager is null [Parent 7, Gecko_IOThread] WARNING: pipe error (91): Connection reset by peer: file /var/tmp/notmpfs/portage/www-client/firefox-68.1.0/work/firefox-68.1.0/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 358 ###!!! [Parent][MessageChannel] Error: (msgtype=0x35002E,name=PContent::Msg_RegisterStringBundles) Channel error: cannot send/recv [Parent 7, Main Thread] WARNING: FileDescriptorSet destroyed with unconsumed descriptors: file /var/tmp/notmpfs/portage/www-client/firefox-68.1.0/work/firefox-68.1.0/ipc/chromium/src/chrome/common/file_descriptor_set_posix.cc, line 23 ###!!! [Parent][MessageChannel] Error: (msgtype=0x350038,name=PContent::Msg_AppInfo) Channel error: cannot send/recv ###!!! [Parent][MessageChannel] Error: (msgtype=0x350039,name=PContent::Msg_RemoteType) Channel error: cannot send/recv ###!!! [Parent][MessageChannel] Error: (msgtype=0x350017,name=PContent::Msg_PScriptCacheConstructor) Channel error: cannot send/recv [Parent 7, Main Thread] WARNING: FileDescriptorSet destroyed with unconsumed descriptors: file /var/tmp/notmpfs/portage/www-client/firefox-68.1.0/work/firefox-68.1.0/ipc/chromium/src/chrome/common/file_descriptor_set_posix.cc, line 23 ###!!! [Parent][MessageChannel] Error: (msgtype=0x350049,name=PContent::Msg_LoadProcessScript) Channel error: cannot send/recv ###!!! [Parent][MessageChannel] Error: (msgtype=0x350049,name=PContent::Msg_LoadProcessScript) Channel error: cannot send/recv ###!!! [Parent][MessageChannel] Error: (msgtype=0x350049,name=PContent::Msg_LoadProcessScript) Channel error: cannot send/recv ###!!! [Parent][MessageChannel] Error: (msgtype=0x350049,name=PContent::Msg_LoadProcessScript) Channel error: cannot send/recv ###!!! [Parent][MessageChannel] Error: (msgtype=0x350049,name=PContent::Msg_LoadProcessScript) Channel error: cannot send/recv ###!!! [Parent][MessageChannel] Error: (msgtype=0x350049,name=PContent::Msg_LoadProcessScript) Channel error: cannot send/recv ###!!! [Parent][MessageChannel] Error: (msgtype=0x35000A,name=PContent::Msg_InitRendering) Channel error: cannot send/recv [Parent 7, Main Thread] WARNING: FileDescriptorSet destroyed with unconsumed descriptors: file /var/tmp/notmpfs/portage/www-client/firefox-68.1.0/work/firefox-68.1.0/ipc/chromium/src/chrome/common/file_descriptor_set_posix.cc, line 23 ###!!! [Parent][MessageChannel] Error: (msgtype=0x35000F,name=PContent::Msg_SetProcessSandbox) Channel error: cannot send/recv [Parent 7, Main Thread] WARNING: FileDescriptorSet destroyed with unconsumed descriptors: file /var/tmp/notmpfs/portage/www-client/firefox-68.1.0/work/firefox-68.1.0/ipc/chromium/src/chrome/common/file_descriptor_set_posix.cc, line 23 ###!!! [Parent][MessageChannel] Error: (msgtype=0x35003A,name=PContent::Msg_InitServiceWorkers) Channel error: cannot send/recv ###!!! [Parent][MessageChannel] Error: (msgtype=0x35003B,name=PContent::Msg_InitBlobURLs) Channel error: cannot send/recv ###!!! [Parent][MessageChannel] Error: (msgtype=0x35003C,name=PContent::Msg_InitJSWindowActorInfos) Channel error: cannot send/recv ###!!! [Parent][MessageChannel] Error: (msgtype=0x35005F,name=PContent::Msg_SetPluginList) Channel error: cannot send/recv ###!!! [Parent][MessageChannel] Error: (msgtype=0x350065,name=PContent::Msg_SetInputEventQueueEnabled) Channel error: cannot send/recv ###!!! [Parent][MessageChannel] Error: (msgtype=0x350068,name=PContent::Msg_SuspendInputEventQueue) Channel error: cannot send/recv ###!!! [Parent][MessageChannel] Error: (msgtype=0x350066,name=PContent::Msg_FlushInputEventQueue) Channel error: cannot send/recv ###!!! [Parent][MessageChannel] Error: (msgtype=0x350067,name=PContent::Msg_ResumeInputEventQueue) Channel error: cannot send/recv [Parent 7, Gecko_IOThread] WARNING: pipe error (96): Connection reset by peer: file /var/tmp/notmpfs/portage/www-client/firefox-68.1.0/work/firefox-68.1.0/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 358 [Parent 7, Gecko_IOThread] WARNING: pipe error (94): Connection reset by peer: file /var/tmp/notmpfs/portage/www-client/firefox-68.1.0/work/firefox-68.1.0/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 358 ###!!! [Parent][MessageChannel] Error: (msgtype=0x350008,name=PContent::Msg_InitProcessHangMonitor) Channel error: cannot send/recv [Parent 7, Gecko_IOThread] WARNING: pipe error (91): Connection reset by peer: file /var/tmp/notmpfs/portage/www-client/firefox-68.1.0/work/firefox-68.1.0/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 358 [Parent 7, Main Thread] WARNING: FileDescriptorSet destroyed with unconsumed descriptors: file /var/tmp/notmpfs/portage/www-client/firefox-68.1.0/work/firefox-68.1.0/ipc/chromium/src/chrome/common/file_descriptor_set_posix.cc, line 23 ###!!! [Parent][MessageChannel] Error: (msgtype=0x350009,name=PContent::Msg_InitProfiler) Channel error: cannot send/recv [Parent 7, Main Thread] WARNING: FileDescriptorSet destroyed with unconsumed descriptors: file /var/tmp/notmpfs/portage/www-client/firefox-68.1.0/work/firefox-68.1.0/ipc/chromium/src/chrome/common/file_descriptor_set_posix.cc, line 23 [Parent 7, Gecko_IOThread] WARNING: pipe error (94): Connection reset by peer: file /var/tmp/notmpfs/portage/www-client/firefox-68.1.0/work/firefox-68.1.0/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 358 ###!!! [Parent][MessageChannel] Error: (msgtype=0x35005B,name=PContent::Msg_SetPermissionsWithKey) Channel error: cannot send/recv ###!!! [Parent][MessageChannel] Error: (msgtype=0x350055,name=PContent::Msg_GMPsChanged) Channel error: cannot send/recv ###!!! [Parent][MessageChannel] Error: (msgtype=0x35006F,name=PContent::Msg_RegisterBrowsingContextGroup) Channel error: cannot send/recv ###!!! [Parent][MessageChannel] Error: (msgtype=0x350002,name=PContent::Msg_ConstructBrowser) Channel error: cannot send/recv [Parent 7, Gecko_IOThread] WARNING: pipe error (106): Connection reset by peer: file /var/tmp/notmpfs/portage/www-client/firefox-68.1.0/work/firefox-68.1.0/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 358 ###!!! [Parent][MessageChannel] Error: (msgtype=0x35002E,name=PContent::Msg_RegisterStringBundles) Channel error: cannot send/recv [Parent 7, Main Thread] WARNING: FileDescriptorSet destroyed with unconsumed descriptors: file /var/tmp/notmpfs/portage/www-client/firefox-68.1.0/work/firefox-68.1.0/ipc/chromium/src/chrome/common/file_descriptor_set_posix.cc, line 23 ###!!! [Parent][MessageChannel] Error: (msgtype=0x350038,name=PContent::Msg_AppInfo) Channel error: cannot send/recv ###!!! [Parent][MessageChannel] Error: (msgtype=0x350039,name=PContent::Msg_RemoteType) Channel error: cannot send/recv ###!!! [Parent][MessageChannel] Error: (msgtype=0x350017,name=PContent::Msg_PScriptCacheConstructor) Channel error: cannot send/recv [Parent 7, Main Thread] WARNING: FileDescriptorSet destroyed with unconsumed descriptors: file /var/tmp/notmpfs/portage/www-client/firefox-68.1.0/work/firefox-68.1.0/ipc/chromium/src/chrome/common/file_descriptor_set_posix.cc, line 23 ###!!! [Parent][MessageChannel] Error: (msgtype=0x350049,name=PContent::Msg_LoadProcessScript) Channel error: cannot send/recv ###!!! [Parent][MessageChannel] Error: (msgtype=0x350049,name=PContent::Msg_LoadProcessScript) Channel error: cannot send/recv ###!!! [Parent][MessageChannel] Error: (msgtype=0x350049,name=PContent::Msg_LoadProcessScript) Channel error: cannot send/recv ###!!! [Parent][MessageChannel] Error: (msgtype=0x350049,name=PContent::Msg_LoadProcessScript) Channel error: cannot send/recv ###!!! [Parent][MessageChannel] Error: (msgtype=0x350049,name=PContent::Msg_LoadProcessScript) Channel error: cannot send/recv ###!!! [Parent][MessageChannel] Error: (msgtype=0x350049,name=PContent::Msg_LoadProcessScript) Channel error: cannot send/recv ###!!! [Parent][MessageChannel] Error: (msgtype=0x35000A,name=PContent::Msg_InitRendering) Channel error: cannot send/recv [Parent 7, Main Thread] WARNING: FileDescriptorSet destroyed with unconsumed descriptors: file /var/tmp/notmpfs/portage/www-client/firefox-68.1.0/work/firefox-68.1.0/ipc/chromium/src/chrome/common/file_descriptor_set_posix.cc, line 23 ###!!! [Parent][MessageChannel] Error: (msgtype=0x35000F,name=PContent::Msg_SetProcessSandbox) Channel error: cannot send/recv [Parent 7, Main Thread] WARNING: FileDescriptorSet destroyed with unconsumed descriptors: file /var/tmp/notmpfs/portage/www-client/firefox-68.1.0/work/firefox-68.1.0/ipc/chromium/src/chrome/common/file_descriptor_set_posix.cc, line 23 ###!!! [Parent][MessageChannel] Error: (msgtype=0x35003A,name=PContent::Msg_InitServiceWorkers) Channel error: cannot send/recv ###!!! [Parent][MessageChannel] Error: (msgtype=0x35003B,name=PContent::Msg_InitBlobURLs) Channel error: cannot send/recv ###!!! [Parent][MessageChannel] Error: (msgtype=0x35003C,name=PContent::Msg_InitJSWindowActorInfos) Channel error: cannot send/recv ###!!! [Parent][MessageChannel] Error: (msgtype=0x35005F,name=PContent::Msg_SetPluginList) Channel error: cannot send/recv ###!!! [Parent][MessageChannel] Error: (msgtype=0x350065,name=PContent::Msg_SetInputEventQueueEnabled) Channel error: cannot send/recv ###!!! [Parent][MessageChannel] Error: (msgtype=0x350068,name=PContent::Msg_SuspendInputEventQueue) Channel error: cannot send/recv ###!!! [Parent][MessageChannel] Error: (msgtype=0x350066,name=PContent::Msg_FlushInputEventQueue) Channel error: cannot send/recv ###!!! [Parent][MessageChannel] Error: (msgtype=0x350067,name=PContent::Msg_ResumeInputEventQueue) Channel error: cannot send/recv [Parent 7, Gecko_IOThread] WARNING: pipe error (111): Connection reset by peer: file /var/tmp/notmpfs/portage/www-client/firefox-68.1.0/work/firefox-68.1.0/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 358 [Parent 7, Gecko_IOThread] WARNING: pipe error (109): Connection reset by peer: file /var/tmp/notmpfs/portage/www-client/firefox-68.1.0/work/firefox-68.1.0/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 358 ###!!! [Parent][MessageChannel] Error: (msgtype=0x350008,name=PContent::Msg_InitProcessHangMonitor) Channel error: cannot send/recv [Parent 7, Gecko_IOThread] WARNING: pipe error (106): Connection reset by peer: file /var/tmp/notmpfs/portage/www-client/firefox-68.1.0/work/firefox-68.1.0/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 358 [Parent 7, Main Thread] WARNING: FileDescriptorSet destroyed with unconsumed descriptors: file /var/tmp/notmpfs/portage/www-client/firefox-68.1.0/work/firefox-68.1.0/ipc/chromium/src/chrome/common/file_descriptor_set_posix.cc, line 23 ###!!! [Parent][MessageChannel] Error: (msgtype=0x350009,name=PContent::Msg_InitProfiler) Channel error: cannot send/recv [Parent 7, Main Thread] WARNING: FileDescriptorSet destroyed with unconsumed descriptors: file /var/tmp/notmpfs/portage/www-client/firefox-68.1.0/work/firefox-68.1.0/ipc/chromium/src/chrome/common/file_descriptor_set_posix.cc, line 23 [Parent 7, Gecko_IOThread] WARNING: pipe error (109): Connection reset by peer: file /var/tmp/notmpfs/portage/www-client/firefox-68.1.0/work/firefox-68.1.0/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 358 ###!!! [Parent][MessageChannel] Error: (msgtype=0x35005B,name=PContent::Msg_SetPermissionsWithKey) Channel error: cannot send/recv ###!!! [Parent][MessageChannel] Error: (msgtype=0x350055,name=PContent::Msg_GMPsChanged) Channel error: cannot send/recv ###!!! [Parent][MessageChannel] Error: (msgtype=0x35006F,name=PContent::Msg_RegisterBrowsingContextGroup) Channel error: cannot send/recv ###!!! [Parent][MessageChannel] Error: (msgtype=0x350002,name=PContent::Msg_ConstructBrowser) Channel error: cannot send/recv JavaScript error: chrome://global/content/elements/browser-custom-element.js, line 1167: NS_ERROR_UNEXPECTED: Component returned failure code: 0x8000ffff (NS_ERROR_UNEXPECTED) [nsIScriptSecurityManager.getLoadContextCodebasePrincipal] JavaScript error: chrome://global/content/elements/browser-custom-element.js, line 776: TypeError: this.frameLoader.remoteTab is null [Parent 7, Gecko_IOThread] WARNING: pipe error (109): Connection reset by peer: file /var/tmp/notmpfs/portage/www-client/firefox-68.1.0/work/firefox-68.1.0/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 358 [Parent 7, Gecko_IOThread] WARNING: pipe error (117): Connection reset by peer: file /var/tmp/notmpfs/portage/www-client/firefox-68.1.0/work/firefox-68.1.0/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 358 [Parent 7, Gecko_IOThread] WARNING: pipe error (116): Connection reset by peer: file /var/tmp/notmpfs/portage/www-client/firefox-68.1.0/work/firefox-68.1.0/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 358 [Parent 7, Gecko_IOThread] WARNING: pipe error (110): Connection reset by peer: file /var/tmp/notmpfs/portage/www-client/firefox-68.1.0/work/firefox-68.1.0/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 358 [Parent 7, Gecko_IOThread] WARNING: pipe error (113): Connection reset by peer: file /var/tmp/notmpfs/portage/www-client/firefox-68.1.0/work/firefox-68.1.0/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 358 [Parent 7, Gecko_IOThread] WARNING: pipe error (115): Connection reset by peer: file /var/tmp/notmpfs/portage/www-client/firefox-68.1.0/work/firefox-68.1.0/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 358
I don't remember the exact nature of my problem with this combination, but unmasking and emerging firejail 0.9.60-r1 helped.
Hey, i did a lot of updates on my computer, but now I can not login with lightdm, I do not know what the problem is. It did not work with lightdm-1.26-0-r1, 1.28.0 and 1.30.0. One problem maybe, that I use a lot of testig packages, even my kernel is the newest one (5.3.1-gentoo). I recompiled the whole system after a gcc update (gcc-9.2.0) and then I tried to recompile the kernel, but that did not work. I have no idea how to solve the problem, or which log-files / information might be important. Frink
Hello. Quote: [+0.10s] DEBUG: Process 4801 exited with return value 1 [+0.10s] DEBUG: XServer 0: X server stopped You may find out some relevant information in X server log. ++ Gi)
Hi all, I'm new here Long time GNU/Linux user, trying to switch to Gentoo from Arch. I'm no stranger to source-based, I did LFS back in 2000 then SGL after that. I am however just starting to learn Gentoo... Whenever I try to install kde-plasma/plasma-meta it wants to pull in VLC and GTK3. Using the -gtk3 USE flag doesn't help. I don't want this, I want smplayer and nothing GTK based. How should I proceed? Thanks in advance
Pass --tree to emerge to ask it to explain why it pulls in a package. In your case, emerge --pretend --verbose --tree kde-plasma/plasma-meta should show you what you need. Use /etc/portage/package.mask to force Portage not to install a particular package. If you do this, Portage will fail to solve dependency chains that require the package. This can be useful if you know that any chain that requires the package is an error. For example, you could mask gtk+:3 to force an error when anything tries to use it. If the mask raises an error, then you get to decide whether to remove the mask, reconfigure the requiring package, or refrain from installing the requiring package.
I'm getting a strange build failure when trying to emerge nvidia-drivers-435.21, and I've no idea what's happening. Background: I successfully built a kernel (gentoo-sources-4.19.72) and nvidia-drivers just a couple of days ago; there have been no version upgrades since then. Now I wanted to add user namespaces to the kernel (CONFIG_USER_NS). So, I did: Code: make clean make menuconfig make make modules_install make install And then: Code: emerge @module_rebuild ...which led to failure: Code: [ebuild R ] x11-drivers/nvidia-drivers-435.21 USE="X acpi driver kms multilib tools -compat -gtk3 (-libglvnd) -static-libs -uvm -wayland" ABI_X86="(64) -32 (-x32)" Code: In file included from <command-line>: ././include/linux/kconfig.h:5:10: fatal error: ./include/generated/autoconf.h: Permission denied #include <generated/autoconf.h> ^~~~~~~~~~~~~~~~~~~~~~ compilation terminated. I tried downgrading to nvidia-drivers-430.50, but the result was the same. Where's this "Permission denied" coming from? Is there something wrong with how Portage is sandboxing stuff, or...? Any idea what's going on in here? emerge --info: https://controlc.com/45c8773f build.log: https://controlc.com/b6d70bd3
trae, nvidia-drivers builds against the kernel sources pointed to by /usr/src/linux is that pointing to the kernel you think it is? The FEATURES section in Code: man make.conf may be worth a read too.
Hi I'd like to enable integrated spellcheck in the Falkon web browser but I seem to be missing bits. The Falkon page here says that a tool called qwebengine_convert_dict should be part of qtwebengine, and that can be used to convert hunspell (installed) dictionaries to the correct format. This tool does not seem to exist on my system. There is a discussion from 2017 about this that makes reference to a qt-dev/qtwebengine-dicts ebuild, but emerge --search doesn't seem to know about this. I'm new to Gentoo, loving it so far, please forgive me if I've missed something elementary. How should I proceed?
Indeed, the PR you linked (for qt overlay, not Gentoo ebuild repository) seems to have stalled at some point and was never finished. So right now this package does not exist.
I'm trying to get the discrete Nvidia GPU working on a new Gentoo installation. Everything looks good until I do "optirun glxgears" and I get Code: [10672.609158] [ERROR]Cannot access secondary GPU - error: [XORG] (EE) /dev/dri/card0: failed to set DRM interface version 1.4: Permission denied The main suggestion I've found is adding "-compat" to the nvidia-drivers USE flags. That doesn't fix the problem for me. Some anomalies that I've noticed is that there is only "dev/dri/card0". Other examples I've seen online show that and "dev/dri/card1". xrandr --listproviders only lists one provider, "Intel". Examples indicate there should also be "NVIDIA-0". I've tried setting up X to run with only the Nvidia GPU according to the NVIDIA/nvidia-drivers page but with no success. The config from nvidia-xconfig causes a "No screens found" error. I've tried following the NVIDIA/Bumblebee page but it is rather confusing for it tells you to configure the system for the NVIDIA/nvidia-drivers page which tells you to turn off kernel DRM. Later it tells you also to configure the system according to the "Intel" page, which tells you to make sure kernel DRM is on. I've tried both and neither work so not sure which to stick with. I've tried the xrandr approach from the "NVIDIA/Optimus" page but that results in a black screen. There are no EEs in the log file and the WWs look pretty harmless to me. My guess is that the lack of dev/card1 and/or xrandr listing only one provider is significant but haven't found any solution (and don't know if it even needs one). I'm still a Gentoo newb and am probably missing something simple. Any help would be appreciated. I would be content if I could just get it working the the Nvidia GPU only, but switching would be nice.[/code]
First, I don't have any first hand Optimus experience. I'd like to point out there are several variations of hybrid graphics. One of them is Optimus. If you search these forums then you will find NeddySeagoon has explained in several threads how muxless hybrid graphics works. You may want to read it, it always helps if you know what you are dealing with and how it works underneath.
Hi guys, not all the time, but very often, Firefox 60.0 crashes when I close a tab with a youtube video: Code: firefox: /var/tmp/portage/www-client/firefox-60.0/work/firefox-60.0/media/libcubeb/src/cubeb_alsa.c:1045: alsa_stream_destroy: Assertion `stm && (stm->state == INACTIVE || stm->state == ERROR || stm->state == DRAINING)' failed. Aborted Anyone else experiences this issue?
soundrolf wrote: Then do as root: patchelf --set-rpath /usr/lib/apulse /opt/firefox/libxul.so Apulse will give Firefox the Illusion to have Pulseaudio. This feature should be incorporated into the firefox ebuild via USE-flag. I think "pulseaudio" USE-flag would fit there just fine. If it was unset then depend on apulse and then patch libxul.so. Anyone to raise a bug as a feature request for this?
Hello everyone, my cat disrupted power to my computer during an emerge update, and my startx no longer works. The output of my Xorg.0.log is as follows: Code: [185541.258] X.Org X Server 1.20.5 X Protocol Version 11, Revision 0 [185541.258] Build Operating System: Linux 4.19.57-gentoo x86_64 Gentoo [185541.258] Current Operating System: Linux watchtower 4.19.57-gentoo #1 SMP Tue Jul 16 15:48:44 CST 2019 x86_64 [185541.258] Kernel command line: BOOT_IMAGE=/vmlinuz-4.19.57-gentoo root=/dev/sda4 ro [185541.258] Build Date: 20 July 2019 11:04:57AM [185541.258] [185541.258] Current version of pixman: 0.38.4 [185541.258] Before reporting problems, check http://wiki.x.org to make sure that you have the latest version. [185541.258] Markers: (--) probed, (**) from config file, (==) default setting, (++) from command line, (!!) notice, (II) informational, (WW) warning, (EE) error, (NI) not implemented, (??) unknown. [185541.258] (==) Log file: "/var/log/Xorg.0.log", Time: Thu Sep 19 21:57:38 2019 [185541.259] (==) Using config file: "/etc/X11/xorg.conf" [185541.259] (==) Using config directory: "/etc/X11/xorg.conf.d" [185541.259] (==) Using system config directory "/usr/share/X11/xorg.conf.d" [185541.261] (==) ServerLayout "Layout0" [185541.261] (**) |-->Screen "Screen0" (0) [185541.261] (**) | |-->Monitor "Monitor0" [185541.261] (**) | |-->Device "Device0" [185541.261] (**) |-->Input Device "Keyboard0" [185541.261] (**) |-->Input Device "Mouse0" [185541.261] (==) Automatically adding devices [185541.261] (==) Automatically enabling devices [185541.261] (==) Automatically adding GPU devices [185541.261] (==) Max clients allowed: 256, resource mask: 0x1fffff [185541.262] (WW) The directory "/usr/share/fonts/TTF/" does not exist. [185541.262] Entry deleted from font path. [185541.262] (WW) The directory "/usr/share/fonts/OTF/" does not exist. [185541.262] Entry deleted from font path. [185541.262] (WW) The directory "/usr/share/fonts/Type1/" does not exist. [185541.262] Entry deleted from font path. [185541.262] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/100dpi/". [185541.262] Entry deleted from font path. [185541.262] (Run 'mkfontdir' on "/usr/share/fonts/100dpi/"). [185541.263] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/75dpi/". [185541.263] Entry deleted from font path. [185541.263] (Run 'mkfontdir' on "/usr/share/fonts/75dpi/"). [185541.263] (==) FontPath set to: /usr/share/fonts/misc/ [185541.263] (**) ModulePath set to "/usr/lib64/xorg/modules" [185541.263] (WW) Hotplugging is on, devices using drivers 'kbd', 'mouse' or 'vmmouse' will be disabled. [185541.263] (WW) Disabling Keyboard0 [185541.263] (WW) Disabling Mouse0 [185541.263] (II) Loader magic: 0x55d63a9bcc60 [185541.263] (II) Module ABI versions: [185541.263] X.Org ANSI C Emulation: 0.4 [185541.263] X.Org Video Driver: 24.0 [185541.263] X.Org XInput driver : 24.1 [185541.263] X.Org Server Extension : 10.0 [185541.263] (II) xfree86: Adding drm device (/dev/dri/card0) [185541.267] (--) PCI:*(2@0:0:0) 10de:1401:3842:2966 rev 161, Mem @ 0xde000000/16777216, 0xc0000000/268435456, 0xd0000000/33554432, I/O @ 0x0000e000/128, BIOS @ 0x????????/131072 [185541.267] (II) LoadModule: "glx" [185541.267] (II) Loading /usr/lib64/xorg/modules/extensions/libglx.so [185541.277] (II) Module glx: vendor="X.Org Foundation" [185541.277] compiled for 1.20.5, module version = 1.0.0 [185541.277] ABI class: X.Org Server Extension, version 10.0 [185541.277] (II) LoadModule: "nvidia" [185541.277] (II) Loading /usr/lib64/xorg/modules/drivers/nvidia_drv.so [185541.284] (II) Module nvidia: vendor="NVIDIA Corporation" [185541.284] compiled for 1.6.99.901, module version = 1.0.0 [185541.284] Module class: X.Org Video Driver [185541.286] (II) NVIDIA dlloader X Driver 435.21 Sun Aug 25 08:17:08 CDT 2019 [185541.286] (II) NVIDIA Unified Driver for all Supported NVIDIA GPUs [185541.286] (--) using VT number 7 [185541.289] (II) Loading sub module "fb" [185541.289] (II) LoadModule: "fb" [185541.289] (II) Loading /usr/lib64/xorg/modules/libfb.so [185541.290] (II) Module fb: vendor="X.Org Foundation" [185541.290] compiled for 1.20.5, module version = 1.0.0 [185541.290] ABI class: X.Org ANSI C Emulation, version 0.4 [185541.290] (II) Loading sub module "wfb" [185541.290] (II) LoadModule: "wfb" [185541.290] (II) Loading /usr/lib64/xorg/modules/libwfb.so [185541.292] (II) Module wfb: vendor="X.Org Foundation" [185541.292] compiled for 1.20.5, module version = 1.0.0 [185541.292] ABI class: X.Org ANSI C Emulation, version 0.4 [185541.292] (II) Loading sub module "ramdac" [185541.292] (II) LoadModule: "ramdac" [185541.292] (II) Module "ramdac" already built-in [185541.293] (EE) NVIDIA: Failed to initialize the NVIDIA kernel module. Please see the [185541.293] (EE) NVIDIA: system's kernel log for additional error messages and [185541.293] (EE) NVIDIA: consult the NVIDIA README for details. [185541.293] (EE) NVIDIA: Failed to initialize the NVIDIA kernel module. Please see the [185541.293] (EE) NVIDIA: system's kernel log for additional error messages and [185541.293] (EE) NVIDIA: consult the NVIDIA README for details. [185541.293] (EE) NVIDIA: Failed to initialize the NVIDIA kernel module. Please see the [185541.293] (EE) NVIDIA: system's kernel log for additional error messages and [185541.293] (EE) NVIDIA: consult the NVIDIA README for details. [185541.293] (EE) NVIDIA: Failed to initialize the NVIDIA kernel module. Please see the [185541.293] (EE) NVIDIA: system's kernel log for additional error messages and [185541.293] (EE) NVIDIA: consult the NVIDIA README for details. [185541.293] (EE) No devices detected. [185541.293] (EE) Fatal server error: [185541.293] (EE) no screens found(EE) [185541.293] (EE) Please consult the The X.Org Foundation support at http://wiki.x.org for help. [185541.293] (EE) Please also check the log file at "/var/log/Xorg.0.log" for additional information. [185541.293] (EE) [185541.298] (EE) Server terminated with error (1). Closing log file. The kernel log states my driver components are different versions: Code: [ 140.626223] NVRM: API mismatch: the client has the version 435.21, but NVRM: this kernel module has the version 430.40. Please NVRM: make sure that this kernel module and all NVIDIA driver NVRM: components have the same version. [ 140.626744] NVRM: API mismatch: the client has the version 435.21, but NVRM: this kernel module has the version 430.40. Please NVRM: make sure that this kernel module and all NVIDIA driver NVRM: components have the same version. The output of lsmod | ack nvidia is as follows: Code: nvidia_drm 45056 0 nvidia_modeset 1069056 1 nvidia_drm nvidia 18558976 1 nvidia_modeset I have resumed and completed the emerge update which was in progress, and here is the output of emerge --info nvidia-drivers: Code: Portage 2.3.69 (python 3.6.5-final-0, default/linux/amd64/17.0, gcc-8.3.0, glibc-2.29-r2, 4.19.57-gentoo x86_64) ================================================================= System Settings ================================================================= System uname: Linux-4.19.57-gentoo-x86_64-Intel-R-_Core-TM-_i7-4790K_CPU_@_4.00GHz-with-gentoo-2.6 KiB Mem: 16364300 total, 15559248 free KiB Swap: 16458748 total, 16458748 free Timestamp of repository gentoo: Thu, 19 Sep 2019 22:00:01 +0000 Head commit of repository gentoo: d24adca32514b0d5de6903138753438f388798b5 Head commit of repository steam-overlay: e21303b3d12a2925ea02ab40978fec14b896fb85 sh bash 4.4_p23-r1 ld GNU ld (Gentoo 2.32 p2) 2.32.0 distcc 3.3.3 x86_64-pc-linux-gnu [disabled] app-shells/bash: 4.4_p23-r1::gentoo dev-java/java-config: 2.2.0-r4::gentoo dev-lang/perl: 5.28.2-r1::gentoo dev-lang/python: 2.7.15::gentoo, 3.6.5::gentoo dev-util/cmake: 3.14.6::gentoo sys-apps/baselayout: 2.6-r1::gentoo sys-apps/openrc: 0.41.2::gentoo sys-apps/sandbox: 2.13::gentoo sys-devel/autoconf: 2.13-r1::gentoo, 2.69-r4::gentoo sys-devel/automake: 1.16.1-r1::gentoo sys-devel/binutils: 2.32-r1::gentoo sys-devel/gcc: 8.3.0-r1::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.19::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-jobs: 1 sync-rsync-verify-max-age: 24 sync-rsync-extra-opts: haskell location: /var/lib/layman/haskell masters: gentoo priority: 50 steam-overlay location: /usr/local/portage/steam-overlay sync-type: git sync-uri: https://github.com/anyc/steam-overlay.git masters: gentoo priority: 50 ACCEPT_KEYWORDS="amd64" ACCEPT_LICENSE="@FREE" CBUILD="x86_64-pc-linux-gnu" CFLAGS="-march=native -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=native -O2 -pipe" DISTDIR="/usr/portage/distfiles" ENV_UNSET="DBUS_SESSION_BUS_ADDRESS DISPLAY GOBIN 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=native -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 sandbox sfperms strict unknown-features-warn unmerge-logs unmerge-orphans userfetch userpriv usersandbox usersync xattr" FFLAGS="-march=native -O2 -pipe" GENTOO_MIRRORS="rsync://gentoo.gossamerhost.com/gentoo-distfiles/ rsync://mirrors.tera-byte.com/gentoo https://mirror.csclub.uwaterloo.ca/gentoo-distfiles/" LANG="en_CA.utf8" LDFLAGS="-Wl,-O1 -Wl,--as-needed" MAKEOPTS="-j9" 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="acl alsa amd64 berkdb bzip2 cli consolekit crypt cxx dri flac fortran gdbm iconv ipv6 jpeg libtirpc multilib ncurses nls nptl openmp pam pcre png qt5 readline seccomp split-usr ssl tcpd udisks unicode xattr 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 isync itrax mtk3301 nmea ntrip navcom oceanserver oldstyle oncore rtcm104v2 rtcm104v3 sirf skytraq superstar2 timing tsip tripmate tnt ublox ubx" INPUT_DEVICES="libinput keyboard mouse" KERNEL="linux" LCD_DEVICES="bayrad cfontz cfontz633 glk hd44780 lb216 lcdm001 mtxorb ncurses text" LIBREOFFICE_EXTENSIONS="presenter-console presenter-minimizer" NETBEANS_MODULES="apisupport cnd groovy gsf harness ide identity j2ee java mobility nb php profiler soa visualweb webcommon websvccommon xml" OFFICE_IMPLEMENTATION="libreoffice" PHP_TARGETS="php7-2" POSTGRES_TARGETS="postgres10 postgres11" PYTHON_SINGLE_TARGET="python3_6" PYTHON_TARGETS="python2_7 python3_6" RUBY_TARGETS="ruby24 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 ================================================================= Package Settings ================================================================= x11-drivers/nvidia-drivers-435.21::gentoo was built with the following: USE="X driver kms multilib tools -acpi -compat -gtk3 (-libglvnd) -static-libs -uvm -wayland" ABI_X86="32 (64) (-x32)" Any insight or suggestions would be appreciated. I have tried rebuilding my modules with emerge and the problem persists. Thanks!
dartleader wrote: Any insight or suggestions would be appreciated. I have tried rebuilding my modules with emerge and the problem persists. After that, you removed old kernel module or you have reboot computer? If yes, post your uname -a and ls -l /usr/src output