prompt stringlengths 1 63.6k | completion stringlengths 1 53.1k |
|---|---|
Hi! i am trying to setup a Qt5 development environment on my Asus TF700T (arm-based android tablet with keyboard dock which i have converted to a native Gentoo linux laptop), and i am having some troubles. First, with Qt4 it was working properly but i need to develop with Qt5, so i have changed my useflags: Code: USE=" -qt4 qt5" and re-emerged my system. Everything has rebuilt properly, including QtCreator which is now correctly built with Qt 5.4.1. But qmake fails: Code: willy@tf700t ~ $ qmake -v qmake: could not find a Qt installation of '' And because of this, of course, i cannot build anything or setup a kit in Creator... This is what i have: Code: tf700t ~ # emerge -vp qtcore qt-creator * Last emerge --sync was sab 07 mar 2015 18:05:01 CET. These are the packages that would be merged, in order: Calculating dependencies... done! [ebuild R ~] dev-qt/qtcore-5.4.1:5 USE="-debug -icu -systemd {-test}" 0 KiB [ebuild R ~] dev-qt/qt-creator-3.3.1 USE="-android -autotools -baremetal -bazaar -clang -clearcase -cmake -cvs -debug -doc -git (-ios) -mercurial -perforce -python -qbs -qnx -subversion {-test} -valgrind -winrt" LINGUAS="-cs -de -fr -ja -pl -ru -sl -uk -zh_CN -zh_TW" 0 KiB Anybody has suggestions? (edit: my /usr/bin/qmake is a symlink to /usr/bin/qtchooser, if anyboy cares) | One of the below: 1) add -qt=5 as an argument to qmake, or 2) set QT_SELECT=qt5 in your environment, or 3) change the symlink /etc/xdg/qtchooser/default.conf to point to qt5.conf See also man qtchooser . |
I am very puzzled by this, how do I get to have qpdfview as the default application for application/pdf? Code: $ xdg-mime query default application/pdf /usr/share/applications/qpdfview.desktop $ xdg-open paper.pdf Opening "paper.pdf" with Okular (application/pdf) | charles17 wrote: Be sure the filetype / mimetype is the same: xdg-mime query filetype paper.pdf Yes as indicated in my post |
Here is what my terminal looks like: https://ibin.co/3YpGTC9qbgx5.png Code: $ cat ~/.Xresources urxvt.font: xft:xos4 Terminus:pixelsize=16 urxvt.boldFont: xft:xos4 Terminus:pixelsize=16 $ grep \*font ~/.fluxbox/styles/mystyle *font: verdana-10 window.label.*font: dotum-10 The window label's font is "dotum" from a different machine, and the terminal's font is "media-fonts/terminus-font". They all look quite sharp with no jaggedness, just the way I like it. But "verdana" from "media-fonts/corefonts" in other parts of Fluxbox looks like this: https://ibin.co/3YpGjk6ecmCt.png It looks as if the font is drawn with anti-aliasing turned on, but somehow I'm missing the part that makes it smooth. If I use "terminus" for the menu, I do get the sharpness back, but it's mono-space, which I don't want it in the menu. https://ibin.co/3YvSBtjT4hYU.png So, how do I make "verdana" (or anything from "corefonts" for that matter) look sharp like "dotum" or "terminus"? This wasn't a problem when I set up the machine a while ago, but I just noticed it after not using the graphical environment for quite a while (and several "emerge -vDuN @world" later). Here are some of the settings that might be relevant. Code: $ fc-list | grep -i verdana /usr/share/fonts/corefonts/verdanab.ttf: Verdana:style=Bold,Negreta,tučné,fed,Fett,Έντονα,Negrita,Lihavoitu,Gras,Félkövér,Grassetto,Vet,Halvfet,Pogrubiony,Negrito,Полужирный,Fet,Kalın,Krepko,Lodia /usr/share/fonts/corefonts/verdana.ttf: Verdana:style=Regular,Normal,obyčejné,Standard,Κανονικά,Normaali,Normál,Normale,Standaard,Normalny,Обычный,Normálne,Navadno,Arrunta /usr/share/fonts/corefonts/verdanaz.ttf: Verdana:style=Bold Italic,Negreta cursiva,tučné kurzíva,fed kursiv,Fett Kursiv,Έντονα Πλάγια,Negrita Cursiva,Lihavoitu Kursivoi,Gras Italique,Félkövér dőlt,Grassetto Corsivo,Vet Cursief,Halvfet Kursiv,Pogrubiona kursywa,Negrito Itálico,Полужирный Курсив,Tučná kurzíva,Fet Kursiv,Kalın İtalik,Krepko poševno,Lodi etzana /usr/share/fonts/corefonts/verdanai.ttf: Verdana:style=Italic,Cursiva,kurzíva,kursiv,Πλάγια,Kursivoitu,Italique,Dőlt,Corsivo,Cursief,Kursywa,Itálico,Курсив,İtalik,Poševno,Etzana $ eselect fontconfig list Available fontconfig .conf files (* is enabled): [1] 10-autohint.conf [2] 10-no-sub-pixel.conf [3] 10-scale-bitmap-fonts.conf * [4] 10-sub-pixel-bgr.conf [5] 10-sub-pixel-rgb.conf [6] 10-sub-pixel-vbgr.conf [7] 10-sub-pixel-vrgb.conf [8] 10-unhinted.conf [9] 11-lcdfilter-default.conf [10] 11-lcdfilter-legacy.conf [11] 11-lcdfilter-light.conf [12] 20-unhint-small-vera.conf * [13] 25-unhint-nonlatin.conf [14] 30-metric-aliases.conf * [15] 30-urw-aliases.conf * [16] 39-clearfonts.conf * [17] 40-nonlatin.conf * [18] 45-latin.conf * [19] 49-sansserif.conf * [20] 50-user.conf * [21] 51-local.conf * [22] 60-latin.conf * [23] 65-fonts-persian.conf * [24] 65-khmer.conf [25] 65-nonlatin.conf * [26] 69-unifont.conf * [27] 70-no-bitmaps.conf [28] 70-yes-bitmaps.conf [29] 75-yes-terminus.conf [30] 80-delicious.conf * [31] 90-synthetic.conf * [32] 99pdftoopvp.conf $ emerge -pv fluxbox [ebuild R ] x11-wm/fluxbox-1.3.7-r3::gentoo USE="imlib nls slit systray toolbar truetype -bidi -vim-syntax -xinerama" 769 KiB I'd appreciate any suggestions. __ sol | Try this: Code: ... <match target="font"> <test name="family"> <string>Verdana</string> </test> <edit name="antialias" mode="assign"><bool>false</bool></edit> <edit name="hinting" mode="assign"><bool>true</bool></edit> <edit name="autohint" mode="assign"><bool>true</bool></edit> <edit name="hintstyle" mode="assign"><const>hintfull</const></edit> </match> </fontconfig> |
I've recently discovered that my system is missing some of the fonts I used previously. In particular, I'm interested in bringing back Century Schoolbook L from urw-fonts. I'm really lost due to the following observations. fc-cache goes through the fonts and is able read the files. I verified with the following command Code: puma ~ # FC_DEBUG=48 fc-cache -f fc-list contains nothing from the /usr/share/fonts/urw-fonts/. Another try: Code: puma ~ # fc-cache -fv /usr/share/fonts/urw-fonts/ /usr/share/fonts/urw-fonts: caching, new cache contents: 35 fonts, 0 dirs /var/cache/fontconfig: cleaning cache directory /root/.cache/fontconfig: not cleaning non-existent cache directory /root/.fontconfig: not cleaning non-existent cache directory fc-cache: succeeded puma ~ # fc-list -v | grep urw What do I miss here? | What does "ls /etc/fonts/conf.d" and "emerge --info fontconfig" look like? |
After having had issues with akonadi/mariadb blocker, I set mariadb to stable using keywords. Not sure the downgrade is the issue, but anyway, now akonadi does not start; Code: micke@h2 ~/Downloads/DashBox_BackupV1_1 $ akonadi.collectionattributetable OK akonadi.collectionmimetyperelation OK akonadi.collectionpimitemrelation OK akonadi.collectiontable OK akonadi.flagtable OK akonadi.mimetypetable OK akonadi.parttable OK akonadi.parttypetable OK akonadi.pimitemflagrelation OK akonadi.pimitemtable OK akonadi.pimitemtagrelation OK akonadi.relationtable OK akonadi.relationtypetable OK akonadi.resourcetable OK akonadi.schemaversiontable OK akonadi.tagattributetable OK akonadi.tagremoteidresourcerelationtable Error : Table 'akonadi.tagremoteidresourcerelationtable' doesn't exist in engine status : Operation failed akonadi.tagtable OK akonadi.tagtypetable OK Repairing tables akonadi.tagremoteidresourcerelationtable Error : Table 'akonadi.tagremoteidresourcerelationtable' doesn't exist in engine status : Operation failed org.kde.pim.akonadiserver: " Sql error: Table 'akonadi.tagremoteidresourcerelationtable' doesn't exist in engine QMYSQL: Unable to execute query Query: ALTER TABLE TagRemoteIdResourceRelationTable ADD COLUMN tagId BIGINT NOT NULL" org.kde.pim.akonadiserver: Unable to initialize database. org.kde.pim.akonadicontrol: Application 'akonadiserver' exited normally... and Code: 2017-09-03 17:12:11 140156167739200 [Note] InnoDB: Using mutexes to ref count buffer pool pages 2017-09-03 17:12:11 140156167739200 [Note] InnoDB: The InnoDB memory heap is disabled 2017-09-03 17:12:11 140156167739200 [Note] InnoDB: Mutexes and rw_locks use GCC atomic builtins 2017-09-03 17:12:11 140156167739200 [Note] InnoDB: GCC builtin __atomic_thread_fence() is used for memory barrier 2017-09-03 17:12:11 140156167739200 [Note] InnoDB: Compressed tables use zlib 1.2.11 2017-09-03 17:12:11 140156167739200 [Note] InnoDB: Using Linux native AIO 2017-09-03 17:12:11 140156167739200 [Note] InnoDB: Using SSE crc32 instructions 2017-09-03 17:12:11 140156167739200 [Note] InnoDB: Initializing buffer pool, size = 128.0M 2017-09-03 17:12:11 140156167739200 [Note] InnoDB: Completed initialization of buffer pool 2017-09-03 17:12:11 140156167739200 [Note] InnoDB: Highest supported file format is Barracuda. 2017-09-03 17:12:11 140156167739200 [Note] InnoDB: 128 rollback segment(s) are active. 2017-09-03 17:12:11 140156167739200 [Note] InnoDB: Waiting for purge to start 2017-09-03 17:12:11 140156167739200 [Note] InnoDB: Percona XtraDB (http://www.percona.com) 5.6.36-82.1 started; log sequence number 3388285017 2017-09-03 17:12:11 140155318957824 [Note] InnoDB: Dumping buffer pool(s) not yet started 2017-09-03 17:12:11 140156167739200 [Note] Plugin 'FEEDBACK' is disabled. 2017-09-03 17:12:11 140156167739200 [Note] Reading of all Master_info entries succeded 2017-09-03 17:12:11 140156167739200 [Note] Added new Master_info '' to hash table 2017-09-03 17:12:11 140156167739200 [Note] /usr/sbin/mysqld: ready for connections. Version: '10.1.26-MariaDB' socket: '/tmp/akonadi-micke.7o2bAz/mysql.socket' port: 0 Source distribution InnoDB: wrong number of columns in SYS_INDEXES record InnoDB: wrong number of columns in SYS_INDEXES record 2017-09-03 17:12:11 140156063918848 [Warning] InnoDB: Cannot open table akonadi/tagremoteidresourcerelationtable from the internal data dictionary of InnoDB though the .frm file for the table exists. See http://dev.mysql.com/doc/refman/5.6/en/innodb-troubleshooting.html for how you can resolve the problem. InnoDB: wrong number of columns in SYS_INDEXES record InnoDB: wrong number of columns in SYS_INDEXES record 2017-09-03 17:12:11 140156063918848 [Warning] InnoDB: Cannot open table akonadi/tagremoteidresourcerelationtable from the internal data dictionary of InnoDB though the .frm file for the table exists. See http://dev.mysql.com/doc/refman/5.6/en/innodb-troubleshooting.html for how you can resolve the problem. InnoDB: wrong number of columns in SYS_INDEXES record 2017-09-03 17:12:11 140156063918848 [Warning] InnoDB: Cannot open table akonadi/tagremoteidresourcerelationtable from the internal data dictionary of InnoDB though the .frm file for the table exists. See http://dev.mysql.com/doc/refman/5.6/en/innodb-troubleshooting.html for how you can resolve the problem. InnoDB: wrong number of columns in SYS_INDEXES record 2017-09-03 17:12:11 140156063918848 [Warning] InnoDB: Cannot open table akonadi/tagremoteidresourcerelationtable from the internal data dictionary of InnoDB though the .frm file for the table exists. See http://dev.mysql.com/doc/refman/5.6/en/innodb-troubleshooting.html for how you can resolve the problem. 2017-09-03 17:12:11 140156063615744 [Note] /usr/sbin/mysqld: Normal shutdown 2017-09-03 17:12:11 140155547432704 [Note] InnoDB: FTS optimize thread exiting. 2017-09-03 17:12:11 140156063615744 [Note] InnoDB: Starting shutdown... 2017-09-03 17:12:12 140156063615744 [Note] InnoDB: Waiting for page_cleaner to finish flushing of buffer pool 2017-09-03 17:12:13 140156063615744 [Note] InnoDB: Shutdown completed; log sequence number 3388285027 2017-09-03 17:12:13 140156063615744 [Note] /usr/sbin/mysqld: Shutdown complete What is the best way out of this, for a db rookie? | Thanks! Sometimes the simple solutions works just fine, such as in this case. |
I can't get LXDE to start via startlxde , and the error message is Quote: cp: cannot stat '/usr/share/lxde/pcmanfm/pcmanfm.conf': No such file or directory despite that pcmanfm is installed. Does anyone know what the problem is? Many thanks. | See post 8107008 . |
I'm actually adding a SOLVED post here for others future reference. I had tried several times in the past to replace nvidia-drivers with nouveau on this machine, especially because it has a GeForce 6200 card which is limited to the 304.xx drivers. I'm beyond sick and tired of patching drivers and waiting for nvidia to catch up to the latest kernels. No doubt at some point they'll just plain stop supporting that version altogether. The 4.12 kernel finally pushed me over the edge. Never mind that it was the second time I accidentally tried patches for the wrong version, because two of their legacy drivers happen to be 304.xxx and 340.xxx ...don't get me started. One big issue that held me up on this was that scrolling in urxvt (x11-terms/rxvt-unicode) terminals was so painfully slow (literally watching each line paint simply by hitting enter in a full screen) as to be unusable. This time I finally discovered that this was purely when using a transparent terminal...that is: Code: grep trans .Xdefaults URxvt*transparent:true With that disabled all if great. Hope this helps someone. Tom | Also give x11-terms/st a try - it works fast enough for me (with transparency and freetype fonts). Code: ~ $ time find /proc 2> /dev/null [...] real 0m0.692s user 0m0.394s sys 0m0.318s ~ $ echo $(( $(find /proc 2> /dev/null | wc -l) / 692 * 1000 )) 270000 This is on an ancient AMD card, but I don't think nouveau will be much different. |
1. xfce4-power-manager, when started from settings menu, shows an endless "Xfce4 power manager not running. Do you want to start it now?" dialog. Click Yes or No, instantly pops back up, ad infinitum. Must be killed in terminal. 2. Log out: Every option except logout is greyed out. DM is lightdm. Starting consolekit results in Xfce4 being useless. No programs start, logout dialog does not appear, must alt-Fn to console, kill xdm pid and stop consolekit. 3. Quirk, not real problem: pulling in upower use flag results in being unable to change Xfce4 appearance. Can select any style I want, but Xfce4 maintains default look regardless. Have been searching, tried some things, no luck yet. | Uh, weird... You've had lightdm running without consolekit since xfce borks with consolekit running? Your setup sounds pretty broken... or is this after a recent update? Consolekit is necessary with upower to allow for the log out options hibernate/sleep/etc. to show up. I'd probably carefully look at your USE flags and start with a deep reemerge with --newuse. Perhaps even with --emptytree ... Also make sure your etc-update/dispatch-conf is up to date. |
I'm having only marginal success trying to apply patches supplied by upstream to x11-terms/st. Specifically I'm trying to add both keyboard and mouse scrolling from these: http://st.suckless.org/patches/scrollback/ Note that the do in fact have a version 0.7 patch for the keyboard scrolling. I tried adding that to my /etc/portage/patches and it compiled but failed: Code: >>> Preparing source in /disk2/var/tmp/portage/x11-terms/st-0.7/work/st-0.7 ... * Applying patches from /etc/portage/patches/x11-terms/st-0.7 ... * st-scrollback-0.7.diff ... [ ok ] * User patches applied. * Checking existence of //etc/portage/savedconfig//x11-terms/st-0.7 ... * found //etc/portage/savedconfig//x11-terms/st-0.7 * Building using saved configfile //etc/portage/savedconfig//x11-terms/st-0.7 >>> Source prepared. >>> Configuring source in /disk2/var/tmp/portage/x11-terms/st-0.7/work/st-0.7 ... >>> Source configured. >>> Compiling source in /disk2/var/tmp/portage/x11-terms/st-0.7/work/st-0.7 ... make -j2 st build options: CC st.c i686-pc-linux-gnu-gcc -c -march=pentium4 -O2 -pipe -fomit-frame-pointer -fno-stack-protector -g -std=c99 -pedantic -Wall -Wvariadic-macros -I. -I/usr/include -I/usr/include/X11 `pkg-config --cflags fontconfig` `pkg-config --cflags freetype2` -DVERSION=\"0.7\" -D_XOPEN_SOURCE=600 st.c CFLAGS = -march=pentium4 -O2 -pipe -fomit-frame-pointer -fno-stack-protector -g -std=c99 -pedantic -Wall -Wvariadic-macros -I. -I/usr/include -I/usr/include/X11 -I/usr/include/freetype2 -I/usr/include/freetype2 -DVERSION="0.7" -D_XOPEN_SOURCE=600 LDFLAGS = -Wl,-O1 -Wl,--as-needed -g -L/usr/lib -lc -L/usr/lib/X11 -lm -lrt -lX11 -lutil -lXft -lfontconfig -lfreetype -lfreetype CC = i686-pc-linux-gnu-gcc st.c:333:12: error: ‘histsize’ undeclared here (not in a function) Line hist[histsize]; /* history buffer */ ^ st.c: In function ‘selsnap’: st.c:796:18: warning: variable ‘xt’ set but not used [-Wunused-but-set-variable] int newx, newy, xt, yt; ^ st.c: At top level: st.c:1724:1: warning: ‘kscrollup’ defined but not used [-Wunused-function] kscrollup(const Arg* a) Then I unmasked the st-9999 version, and was able to apply the current keyboard patch (st-scrollback-20170329-149c0d3.diff), and that worked fine. However when I tried to add the mouse patch (st-scrollback-mouse-20170427-5a10aca.diff), both applied, but again the compile failed: Code: >>> Preparing source in /disk2/var/tmp/portage/x11-terms/st-9999/work/st-9999 ... * Applying patches from /etc/portage/patches/x11-terms/st-9999 ... * 01-st-scrollback-20170329-149c0d3.diff ... [ ok ] * 02-st-scrollback-mouse-20170427-5a10aca.diff ... [ ok ] * User patches applied. * Checking existence of //etc/portage/savedconfig//x11-terms/st-9999 ... * found //etc/portage/savedconfig//x11-terms/st-9999 * Building using saved configfile //etc/portage/savedconfig//x11-terms/st-9999 >>> Source prepared. >>> Configuring source in /disk2/var/tmp/portage/x11-terms/st-9999/work/st-9999 ... >>> Source configured. >>> Compiling source in /disk2/var/tmp/portage/x11-terms/st-9999/work/st-9999 ... make -j2 i686-pc-linux-gnu-gcc -I/usr/include/X11 `pkg-config --cflags fontconfig` `pkg-config --cflags freetype2` -DVERSION=\"0.7\" -D_XOPEN_SOURCE=600 -march=pentium4 -O2 -pipe -fomit-frame-pointer -fno-stack-protector -c st.c st build options: CFLAGS = -I/usr/include/X11 -I/usr/include/freetype2 -I/usr/include/freetype2 -DVERSION="0.7" -D_XOPEN_SOURCE=600 -march=pentium4 -O2 -pipe -fomit-frame-pointer -fno-stack-protector LDFLAGS = -L/usr/lib/X11 -lm -lrt -lX11 -lutil -lXft -lfontconfig -lfreetype -lfreetype -Wl,-O1 -Wl,--as-needed CC = i686-pc-linux-gnu-gcc i686-pc-linux-gnu-gcc -I/usr/include/X11 `pkg-config --cflags fontconfig` `pkg-config --cflags freetype2` -DVERSION=\"0.7\" -D_XOPEN_SOURCE=600 -march=pentium4 -O2 -pipe -fomit-frame-pointer -fno-stack-protector -c x.c In file included from st.c:37:0: st.h:10:25: error: invalid application of ‘sizeof’ to incomplete type ‘MouseKey[] {aka struct <anonymous>[]}’ #define LEN(a) (sizeof(a) / sizeof(a)[0]) ^ st.c:240:19: note: in expansion of macro ‘LEN’ size_t mkeyslen = LEN(mkeys); ^ make: *** [Makefile:22: st.o] Error 1 make: *** Waiting for unfinished jobs.... So getting closer. Anyone had success doing this? Thanks! Tom | Ant P had the answer in the thread where this first came up here . Many of the patches change the default config.h and having the savedconfig USE flag on when adding a patch can break things. What I had to do was this: 1. Make a copy of my customized /etc/portage/savedconfig/x11-terms/st-9999. 2. Disable the savedconfig USE flag. 3. Add the second patch under /etc/portage/patches and emerge st (which worked perfectly this time). 4. Enable the savedconfig USE flag and emerge again. 5. Port my config customizations to the new /etc/portage/savedconfig/x11-terms/st-9999 and emerge again. Thanks for the replies, and thanks Ant P! Tom |
Hi there, since the last system update sddm shows every user icon twice in sddm. I'm using the Breeze design. Any ideas? | Sync and upgrade sddm to latest version. |
Hi, I've experienced a strange issue since yesterday that is the most annoying thing that ever happened to me on linux. When I open a document in libreoffice-bin or openoffice-bin and type something, the GPU hangs after some time varying between a few seconds (especially openoffice-bin) and 30 minutes. The error message is Code: Aug 6 19:55:36 tux kernel: [38917.772789] mce: [Hardware Error]: Machine check events logged Aug 6 19:55:55 tux root: ACPI event unhandled: battery PNP0C0A:00 00000080 00000001 Aug 6 20:46:03 tux kernel: [41944.735575] [drm] GPU HANG: ecode 9:0:0x85dffffb, in X [5050], reason: Hang on render ring, action: reset Aug 6 20:46:03 tux kernel: [41944.735577] [drm] GPU hangs can indicate a bug anywhere in the entire gfx stack, including userspace. Aug 6 20:46:03 tux kernel: [41944.735577] [drm] Please file a _new_ bug report on bugs.freedesktop.org against DRI -> DRM/Intel Aug 6 20:46:03 tux kernel: [41944.735578] [drm] drm/i915 developers can then reassign to the right component if it's not a kernel issue. Aug 6 20:46:03 tux kernel: [41944.735578] [drm] The gpu crash dump is required to analyze gpu hangs, so please always attach it. Aug 6 20:46:03 tux kernel: [41944.735579] [drm] GPU crash dump saved to /sys/class/drm/card0/error Aug 6 20:46:03 tux kernel: [41944.735609] drm/i915: Resetting chip after gpu hang Aug 6 20:46:03 tux kernel: [41944.735657] [drm] RC6 on Aug 6 20:46:03 tux kernel: [41944.751494] [drm] GuC firmware load skipped Aug 6 20:46:15 tux kernel: [41956.703339] drm/i915: Resetting chip after gpu hang Aug 6 20:46:15 tux kernel: [41956.703385] [drm] RC6 on Aug 6 20:46:15 tux kernel: [41956.719482] [drm] GuC firmware load skipped However, after the GPU hangs, I can move only the mouse for some seconds while the rest of the screen is frozen and then the screen becomes blank (sometimes with a small _ in the upper left corner). After that, I can only do a hard reset (ctrl+alt+f2 with ctrl+alt+del does not reboot, but sometimes the power button works). When I restart, /sys/class/drm/card0/error states "no error state collected". I probably have to save the error state before the reboot, but I do not know how to do that exactly. Do you have any idea (something like putting a file in /etc/init.d/ that copies the state of /sys/class/drm/card0/error to some other file, but I'm not sure if that would be the right way to do it)? I would report this bug to bugs.freedesktop.org then. I've tested this with both genkernel-4.9.16 and gentoo-sources-4.9.34, it occurs on both. However, I've never noticed this since February (with gentoo, though something similar happens sometimes after pm-hibernate) or last September (with archlinux). My GPU is i5-6200U, my laptop Thinkpad X1 yoga. I wouldn't mind not using libreoffice or openoffice if abiword worked. But the document part of abiword starts flickering as soon as I start it, and using "GTK_THEME=Adwaita abiword" does not change anything... I'm grateful for any ideas. Best regards bluesapphire | bluesapphire wrote: Do you have any idea (something like putting a file in /etc/init.d/ that copies the state of /sys/class/drm/card0/error to some other file, but I'm not sure if that would be the right way to do it)? I would report this bug to bugs.freedesktop.org then. Put a .stop script in /etc/local.d/ to save the log somewhere and it'll be run automatically during shutdown. |
I am trying to play with Plasma 5 on Wayland again (what I had working earlier stopped working with in a day lol, figured I'd wait a while and try again). I've done a little more experimentation and can't get any useful setups running at all. I can get Weston working with "weston-launch" from a TTY. I can get a partial Plasma 5 session running (by that I mean I can get one application running using kwin_wayland --xwayland --exit-with-session=$APPLICATION). If I just use startplasmacompositor it does the splash screen, then leaves me with a blank screen. The only thing that works there is yakuake. Sway just fails to launch completely. If I run it through SDDM it just returns me to SDDM, and if I run it in a TTY the screen flashes black for a second, then gives some errors (I'll add those once I'm back in the TTY). This happens whether I use elogind or systemd so that doesn't seem to matter. I'd like to have sway working at a minimum, though both would be better if possible. I'm in a session with only firefox atm, so I'll add my emerge info as soon as I can access a terminal. EDIT: Okay, sway isn't returning any errors now, but has exit code 139. emerge --info Code: Portage 2.3.6 (python 3.4.5-final-0, default/linux/amd64/13.0/desktop/plasma, gcc-5.4.0, glibc-2.23-r4, 4.11.12-ck x86_64) ================================================================= System uname: Linux-4.11.12-ck-x86_64-Intel-R-_Core-TM-_i5-4210U_CPU_@_1.70GHz-with-gentoo-2.3 KiB Mem: 6037480 total, 4426572 free KiB Swap: 4194300 total, 4194300 free Timestamp of repository gentoo: Fri, 28 Jul 2017 00:23:58 +0000 Timestamp of repository dotnet: Tue, 04 Jul 2017 13:23:23 +0000 Timestamp of repository lisp: Mon, 17 Jul 2017 08:52:00 +0000 sh dash 0.5.8.2 ld GNU ld (Gentoo 2.28 p1.2) 2.28 app-shells/bash: 4.3_p48-r1::gentoo dev-java/java-config: 2.2.0-r3::gentoo dev-lang/perl: 5.24.1-r2::gentoo dev-lang/python: 2.7.12::gentoo, 3.4.5::gentoo dev-util/cmake: 3.7.2::gentoo dev-util/pkgconfig: 0.28-r2::gentoo sys-apps/baselayout: 2.3::gentoo sys-apps/openrc: 0.26.3::gentoo sys-apps/sandbox: 2.10-r3::gentoo sys-devel/autoconf: 2.13::gentoo, 2.69::gentoo sys-devel/automake: 1.11.6-r1::gentoo, 1.15-r2::gentoo sys-devel/binutils: 2.28-r2::gentoo sys-devel/gcc: 5.4.0-r3::gentoo sys-devel/gcc-config: 1.7.3::gentoo sys-devel/libtool: 2.4.6-r3::gentoo sys-devel/make: 4.2.1::gentoo sys-kernel/linux-headers: 4.4::gentoo (virtual/os-headers) sys-libs/glibc: 2.23-r4::gentoo Repositories: gentoo location: /usr/portage sync-type: git sync-uri: https://github.com/gentoo-mirror/gentoo priority: -1000 dotnet location: /usr/local/portage/dotnet sync-type: git sync-uri: https://github.com/gentoo-mirror/dotnet masters: gentoo priority: 50 dr location: /usr/local/portage/dr sync-type: git sync-uri: git://github.com/cerebrum/dr.git masters: gentoo priority: 50 flussence location: /usr/local/portage/flussence sync-type: git sync-uri: https://gitlab.com/flussence/overlay.git masters: gentoo priority: 50 lisp location: /usr/local/portage/lisp sync-type: git sync-uri: https://github.com/gentoo-mirror/lisp masters: gentoo priority: 50 powerman location: /usr/local/portage/powerman sync-type: git sync-uri: https://github.com/powerman/powerman-overlay.git masters: gentoo priority: 50 Installed sets: @i3 ACCEPT_KEYWORDS="amd64" ACCEPT_LICENSE="* -@EULA" CBUILD="x86_64-pc-linux-gnu" CFLAGS="-march=native -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 /etc/texmf/language.dat.d /etc/texmf/language.def.d /etc/texmf/updmap.d /etc/texmf/web2c" CXXFLAGS="-march=native -O2 -pipe" DISTDIR="/usr/portage/distfiles" EMERGE_DEFAULT_OPTS="-j5 --load-average=4" FCFLAGS="-O2 -pipe" FEATURES="assume-digests binpkg-logs config-protect-if-modified distlocks ebuild-locks fixlafiles merge-sync metadata-transfer news parallel-fetch 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="ftp://ftp.ussg.iu.edu/pub/linux/gentoo ftp://lug.mtu.edu/gentoo/ http://gentoo.osuosl.org/ http://mirror.lug.udel.edu/pub/gentoo/" LANG="en_US.utf8" LDFLAGS="-Wl,-O1 -Wl,--as-needed" MAKEOPTS="-j5 --load-average 4" PKGDIR="/usr/portage/packages" PORTAGE_CONFIGROOT="/" PORTAGE_RSYNC_OPTS="--recursive --links --safe-links --perms --times --omit-dir-times --compress --force --whole-file --delete --stats --human-readable --timeout=180 --exclude=/distfiles --exclude=/local --exclude=/packages --exclude=/.git" PORTAGE_TMPDIR="/var/tmp" USE="X a52 aac acl acpi alsa amd64 berkdb bindist bluetooth branding bzip2 cairo cdda cdr cli connman cracklib crypt cups cxx dbus declarative dri dts dvd dvdr egl elogind emboss encode exif fam firefox flac fortran gdbm gif glamor gles2 gpm gtk iconv ipv6 jpeg kde kipi kwallet lcms ldap libnotify mad mng modules mp3 mp4 mpeg multilib ncurses nls nptl offensive ogg opengl openmp pam pango pcre pdf phonon plasma png policykit ppds pulseaudio qml qt3support qt4 qt5 readline sdl seccomp semantic-desktop session spell ssl startup-notification svg tcpd tiff truetype udev udisks unicode upower usb vorbis wayland widgets wifi wxwidgets x264 xattr xcb xcomposite xinerama xml xscreensaver xv xvid zlib" ABI_X86="32 64" 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="kexi words flow plan sheets stage tables krita karbon braindump author" 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" GRUB_PLATFORMS="efi-64" INPUT_DEVICES="synaptics evdev keyboard" KERNEL="linux" LCD_DEVICES="bayrad cfontz cfontz633 glk hd44780 lb216 lcdm001 mtxorb ncurses text" LIBREOFFICE_EXTENSIONS="presenter-console presenter-minimizer" OFFICE_IMPLEMENTATION="libreoffice" PHP_TARGETS="php5-6" POSTGRES_TARGETS="postgres9_5" PYTHON_SINGLE_TARGET="python3_4" PYTHON_TARGETS="python2_7 python3_4" RUBY_TARGETS="ruby21 ruby22" USERLAND="GNU" VIDEO_CARDS="intel i965" 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, USE_PYTHON | Qt-5.8 is essentially a broken release. |
Hello Fresh install on a new machine. This time i wanted to try nouveau for my triple screen setup, and so far Everything works out of the box. However, my Three screens act as one, if that makes sence. The placement of them is correct though. I also noticed that the option "On head" in the fluxbox menu for the toolbar is not there, if that can be a clue? | Sorry guys, found it. Didnt use the xinerama use-flag when merging fluxbox. Read somewere that xinerama was obsolete, so didnt Think of it. |
Hey, I just installed libre office 5.2.7.2, but it won't start. The first time I tried, I saw the loading window, but then nothing happend and now even this doesn't come up anymore. I tried launching it from the command line, but I do not get any messages. I remove ~/.config/libreoffice, but this has no effect. Any ideas about this? Thank you. | After restart of the pc it worked. |
hello, Xfce4 suspend and hybernate do nothing s2ram works ? dmesg: https://paste.pound-python.org/show/SECEqEMNNTiorTw2C7H1/ Code: [ 0.856884] msi_wmi: This machine doesn't have neither MSI-hotkeys nor backlight through WMI [ 0.743875] ACPI Warning: SystemIO range 0x0000000000000428-0x000000000000042F conflicts with OpRegion 0x0000000000000400-0x000000000000044F (\GPIS) (20170303/utaddress-247) [ 0.743892] ACPI Warning: SystemIO range 0x0000000000000428-0x000000000000042F conflicts with OpRegion 0x0000000000000400-0x000000000000047F (\PMIO) (20170303/utaddress-247) [ 0.743907] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver [ 0.743917] ACPI Warning: SystemIO range 0x0000000000000540-0x000000000000054F conflicts with OpRegion 0x0000000000000500-0x000000000000057F (\GPIO) (20170303/utaddress-247) [ 0.743930] ACPI Warning: SystemIO range 0x0000000000000540-0x000000000000054F conflicts with OpRegion 0x0000000000000500-0x0000000000000563 (\GP01) (20170303/utaddress-247) [ 0.743944] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver [ 0.743951] ACPI Warning: SystemIO range 0x0000000000000530-0x000000000000053F conflicts with OpRegion 0x0000000000000500-0x000000000000057F (\GPIO) (20170303/utaddress-247) [ 0.743965] ACPI Warning: SystemIO range 0x0000000000000530-0x000000000000053F conflicts with OpRegion 0x0000000000000500-0x0000000000000563 (\GP01) (20170303/utaddress-247) [ 0.743978] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver [ 0.743986] ACPI Warning: SystemIO range 0x0000000000000500-0x000000000000052F conflicts with OpRegion 0x0000000000000500-0x000000000000057F (\GPIO) (20170303/utaddress-247) [ 0.743999] ACPI Warning: SystemIO range 0x0000000000000500-0x000000000000052F conflicts with OpRegion 0x0000000000000500-0x0000000000000563 (\GP01) (20170303/utaddress-247) | Xfce buttons not working usually means you don't have the required upower/policykit/consolekit/systemd parts configured correctly. Check suspend works at that level of the stack. |
Hello there, since a reboot after my last series of package emerges i got a problem with kmail. while right clicking an entry, the option dialog is just black and empty (all options are clickable, though). kmail 4.14.11_pre20160611-r1 I did a: Code: qdepends -C kmail | cut -d " " -f 2- | xargs emerge -1 -v already. revdep-rebuild didnt help either. Any hints? If needed i could post an image somewhere, if the problem is not clear Would be very happy for help, i really need kmail | Sounds like a theming issue? Do you use a dark colour scheme, Plasma/breeze or some qt5ct config? |
Some time within the past few days, when trying to save a file from chromium, I get a popup "Unable to create io-slave. Cannot talk to klauncher: Not connected to D-Bus server." and the file save dialog does not show any folders, although the list of places on the left is OK, and it WILL save the file successfully in whatever folder it happened to start in. I've re-emerged everything kio related I can think of, with no change. Googling led me to setting KDE_FORK_SLAVES=1 before launching chromium from command line, but none of those posts gave any explanation of why it works or why it should be necessary. (I don't get the error if running chromium with su.) I do not have the problem with Firefox, but google-chrome does show the same symptoms. There were a number of suggestions to delete stuff under ~/.cache, but that didn't help. mostly stable amd64 system with select testing packages chromium 60.0.3112.78 google chrome 60.0.3112.90 plasma-workspace ~5.10.4-r2 kdesdk-kioslaves ~17.04.3 dbus 1.10.18 I'd love to know whether something is misconfigured, either on my part, or something KDE related. Thanks for any suggestions, or even requests to post more details about my system. | This sounds rather like a session problem. And the first question one has to ask in that case is not answered by your list; do you use systemd or consolekit or elogind, and how do you start your session? |
I'm running gnome-3.22. When I double-click an item in nautilus it does not know how to open it, it tries to open everything in the editor. I end up with binary nonsense in the text editor whenever I double-click on an image file or other media files. Also .desktop files don't open right, they just go into the editor too. Anyone know how to fix? Thanks | What happen if you right click on the item? Can you choose the default program? Gnome select the last program used by default |
According to the KDE wiki "kde" should be put into the make.conf. There is also the profile "plasma". Does it make sense to work with both at the same time or should the kde use flag be removed from the make.conf? Thanks Lokesh | plasma profile already provide kde use flag Code: $ cat /usr/portage/profiles/targets/desktop/plasma/make.defaults # Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 USE="consolekit declarative dri kde kipi kwallet phonon plasma policykit qml qt5 semantic-desktop widgets xcomposite xinerama xscreensaver" |
K3b hangs every time I try and create an audio cd. Steps to reproduce: Start k3b from the Multimedia menu Select New Audio CD Project Use the navigate menu to open a directory with Audio Files Drag a file into the lower Current Projects Windows. A dialog box appears with the title "Please be patient .." and sometimes you can see "Analyzing File X" It can be killed by clicking the right hand corner X in either the dialog box or the main window. If I launch it from a terminal prompt, none of the output appears to offer any useful information. Here is what appears: Code: 22 22 kf5.kio.core: Refilling KProtocolInfoFactory cache in the hope to find "mtp" kf5.kio.core: Refilling KProtocolInfoFactory cache in the hope to find "mtp" QFileInfo::absolutePath: Constructed with empty filename QUrl("file:///home/BobSmith/") QUrl("file:///home/BobSmith") will be expanded. "K3b Libsndfile Decoder" "k3blibsndfiledecoder" Loaded plugin "K3b Libsndfile Decoder" "K3b Wave Decoder" "k3bwavedecoder" Loaded plugin "K3b Wave Decoder" "K3b CDDB Audio Plugin" "k3baudioprojectcddbplugin" Loaded plugin "K3b CDDB Audio Plugin" "K3b External Audio Encoder" "k3bexternalencoder" Loaded plugin "K3b External Audio Encoder" "K3b Ogg Vorbis Decoder" "k3boggvorbisdecoder" Loaded plugin "K3b Ogg Vorbis Decoder" "K3b FLAC Decoder" "k3bflacdecoder" Loaded plugin "K3b FLAC Decoder" "K3b SoX Audio Encoder" "k3bsoxencoder" Loaded plugin "K3b SoX Audio Encoder" "K3b MAD Decoder" "k3bmaddecoder" Loaded plugin "K3b MAD Decoder" "K3b Lame MP3 Encoder" "k3blameencoder" Loaded plugin "K3b Lame MP3 Encoder" "K3b FFMpeg Decoder" "k3bffmpegdecoder" Loaded plugin "K3b FFMpeg Decoder" "K3b Ogg Vorbis Encoder" "k3boggvorbisencoder" Loaded plugin "K3b Ogg Vorbis Encoder" (K3b::Device::Device) "/dev/sr0" : init() (K3b::Device::Device) "/dev/sr0" feature: CD Mastering (K3b::Device::Device) "/dev/sr0" feature: CD Track At Once (K3b::Device::Device) "/dev/sr0" feature: CD-RW Media Write Support (K3b::Device::Device) "/dev/sr0" feature: DVD Read (MMC5) (K3b::Device::Device) "/dev/sr0" feature: DVD+R (K3b::Device::Device) "/dev/sr0" feature: DVD+RW (K3b::Device::Device) "/dev/sr0" feature: DVD+R Double Layer (K3b::Device::Device) "/dev/sr0" feature: DVD-R/-RW Write (K3b::Device::Device) "/dev/sr0" feature: Rigid Restricted Overwrite (K3b::Device::Device) "/dev/sr0" feature: Layer Jump Recording (K3b::Device::Device) "/dev/sr0" unknown profile: 2 (K3b::Device::Device) "/dev/sr0" : buffer.size(): 60 (K3b::Device::Device) "/dev/sr0" : checking for TAO (K3b::Device::Device) "/dev/sr0" : checking for SAO (K3b::Device::Device) "/dev/sr0" : checking for SAO_R96P (K3b::Device::Device) "/dev/sr0" : checking for SAO_R96R (K3b::Device::Device) "/dev/sr0" : checking for RAW_R16 (K3b::Device::Device) "/dev/sr0" : checking for RAW_R96P (K3b::Device::Device) "/dev/sr0" : checking for RAW_R96R (K3b::Device::DeviceManager) setting current write speed of device "/dev/sr0" to 8468 found medium: ( "/dev/sr0" ) ===================================================== DiskInfo: Mediatype: "CD-R" Current Profile: "CD-R" Disk state: empty Empty: true Rewritable: false Appendable: false Sessions: 0 Tracks: 0 Layers: 1 Capacity: "79:57:71" (LBA 359846 ) ( 736964608 Bytes) Remaining size: "79:57:71" (LBA 359846 ) ( 736964608 Bytes) Used Size: "00:00:00" (LBA 0 ) ( 0 Bytes) ===================================================== (K3b::Device::Device) "/dev/sr0" : Number of supported write speeds via 2A: 4 (K3b::Device::Device) "/dev/sr0" : 8467 KB/s (K3b::Device::Device) "/dev/sr0" : 7056 KB/s (K3b::Device::Device) "/dev/sr0" : 5645 KB/s (K3b::Device::Device) "/dev/sr0" : 2822 KB/s Devices: ------------------------------ Blockdevice: "/dev/sr0" Vendor: "HL-DT-ST" Description: "DVDRAM GH24NSC0" Version: "LI00" Write speed: 8468 Profiles: "DVD-ROM, DVD-R Sequential, DVD-R Dual Layer Sequential, DVD-R Dual Layer Jump, DVD-RAM, DVD-RW Restricted Overwrite, DVD-RW Sequential, DVD+RW, DVD+R, DVD+R Dual Layer, CD-ROM, CD-R, CD-RW" Read Cap: "DVD-ROM, DVD-R, DVD-R Sequential, DVD-R Dual Layer, DVD-R Dual Layer Sequential, DVD-R Dual Layer Jump, DVD-RW, DVD-RW Restricted Overwrite, DVD-RW Sequential, DVD+RW, DVD+R, DVD+RW Dual Layer, DVD+R Dual Layer, CD-ROM, CD-R, CD-RW" Write Cap: "DVD-R, DVD-R Sequential, DVD-R Dual Layer, DVD-R Dual Layer Sequential, DVD-R Dual Layer Jump, DVD-RW, DVD-RW Restricted Overwrite, DVD-RW Sequential, DVD+RW, DVD+R, DVD+R Dual Layer, CD-R, CD-RW" Writing modes: "SAO, TAO, RAW, SAO/R96P, SAO/R96R, RAW/R16, RAW/R96P, RAW/R96R, Restricted Overwrite, Layer Jump" ------------------------------ kernel version: "4.12.3-gentoo" (K3b::Core) System problems: - none - kernel version: "4.12.3-gentoo" (K3b::Core) System problems: - none - kf5.kio.core: KSambaShare: Could not find smb.conf! 1 1 (K3b::Device::DeviceManager) request for empty device! K3b::AudioDoc(0xe1ace0) adding doc "AudioCD0" Shortcut for action "project_burn" "&Burn" set with QAction::setShortcut()! Use KActionCollection::setDefaultShortcut(s) instead. Shortcut for action "project_properties" "&Properties" set with QAction::setShortcut()! Use KActionCollection::setDefaultShortcut(s) instead. Shortcut for action "track_remove" "Remove" set with QAction::setShortcut()! Use KActionCollection::setDefaultShortcut(s) instead. 31 31 QUrl("file:///home/BobSmith/flacs/") QUrl("file:///home/BobSmith") will be expanded. QModelIndex(22,0,0xe81810,KDirModel(0xa9c1c0)) QUrl("file:///home/BobSmith/flacs/") QUrl("file:///home/BobSmith/flacs/") QUrl("file:///home/BobSmith/flacs/") kf5.kio.core: KLocalSocket(0xaa50f0) Jumbo packet of 37014 bytes kf5.kio.core: KLocalSocket(0xaa50f0) Jumbo packet of 37884 bytes QUrl("file:///home/BobSmith/flacs/mp3s/") QUrl("file:///home/BobSmith") will be expanded. QModelIndex(22,0,0xe81810,KDirModel(0xa9c1c0)) QModelIndex(240,0,0x1023a20,KDirModel(0xa9c1c0)) QUrl("file:///home/BobSmith/flacs/mp3s/") QUrl("file:///home/BobSmith/flacs/mp3s/") QUrl("file:///home/BobSmith/flacs/mp3s/") url list drop QObject::connect: No such signal K3b::AudioTrackAddingDialog::cancelClicked() (K3b::AudioDecoderFactory::createDecoder( "/home/BobSmith/flacs/mp3s/03 - Christmas at the Airport.mp3" ) (K3bWaveDecoder) "/home/BobSmith/flacs/mp3s/03 - Christmas at the Airport.mp3" : not a RIFF file. (K3bOggVorbisDecoder) not an Ogg-Vorbis file: "/home/BobSmith/flacs/mp3s/03 - Christmas at the Airport.mp3" (K3bFLACDecorder) File "/home/BobSmith/flacs/mp3s/03 - Christmas at the Airport.mp3" : found ID3 tag (K3bFLACDecoder) "/home/BobSmith/flacs/mp3s/03 - Christmas at the Airport.mp3" : seeking to 110031 (K3bFLACDecoder) "/home/BobSmith/flacs/mp3s/03 - Christmas at the Airport.mp3" : not a FLAC file (K3bMad) skipping past ID3 tag to 110031 (K3bMad) found first header at 110031 (K3bMadDecoder) valid mpeg 1 layer 3 file with 2 channels and a samplerate of 44100 (K3bMad) cleanup at offset: Input file at: 150991 Input file size: 9204950 stream pos: 114208 1 defaultServiceProvider::requestService(): no service found for - "org.qt-project.qt.mediaplayer" (K3b::AudioDoc) using K3bMadDecoder for decoding of "/home/BobSmith/flacs/mp3s/03 - Christmas at the Airport.mp3" (K3bMad) skipping past ID3 tag to 110031 (K3bMad) found first header at 110031 (K3bMadDecoder::countFrames) (K3bMad::fillStreamBuffer) MAD_BUFFER_GUARD (K3bMadDecoder) length of track 227.396 (K3bMad) cleanup at offset: Input file at: 9204950 Input file size: 9204950 stream pos: 9204813 (K3bMadDecoder::countFrames) end (K3bMad) skipping past ID3 tag to 110031 (K3bMad) found first header at 110031 (K3b::AudioDoc::increaseDecoderUsage) (K3b::AudioDoc::increaseDecoderUsage) finished (K3b::AudioDoc::slotTrackChanged K3b::AudioTrack(0x1041730) (K3b::AudioDoc::slotTrackChanged done Killed I've checked this forum, Google, the Gentoo Bug Tracker, and the KDE Bug Tracker. Is stepping through with strace the next logical step? Thanks for your help! [Moderator edit: changed [q uote] tags to [c ode] tags to preserve output layout. -Hu] | What version of k3b? |
Hi. How to set focus to a window without raising it? I'd rather not have focus-follow-mouse. It used to be (ancient) that scrolling set keyboard input focus without raising the window, but the current behaviour (scrolling without raising or focus) is actually better for me. However, I would still like to be able to set focus for keyboard input without raising windows in some cases. ? suggestions | I know with KDE4 there were definitely separate settings for "activate and pass click" and "activate, pass click and raise window" for the first three mouse buttons near the window frame settings. Try looking there? |
Hi all, today I got an update for various KDE packages from 5.8.6 to 5.9.5 and, if it is relevant, yesterday I got an update from various QT packages from 5.6.2 to 5.7.1. After the update I logged off and back in from KDE and I immediately noticed that instead of the regular Breeze splash screen I got a black screen with just the KDE logo (the same for the K Menu in the picture below) - beside that the loading was not problematic. Once logged in, I noticed that the programs I have pinned on the main bar are missing the icon (showing a generic one instead) - here a screenshot: http://imgur.com/a/sGE7M - it happens only on the bar, on the K Menu and systray they are showing correctly. I tried to change icon set (from Breeze Dark to KFaenza) from SystemSettings (and log off and back in of course) to see if it was just a caching problem, but the problem persist. I don't know if it is relevant, but after yesterday updates since there was an update for Xorg too, I actually restarted SDDM instead of simply login off/on from KDE (and I had no issue after that), while after today's update I just logged off/on from KDE Here it is the list of KDE packages update today: Code: [ebuild U ] kde-plasma/plasma-workspace-wallpapers-5.9.5 [5.8.6] [ebuild U ] kde-plasma/kdecoration-5.9.5 [5.8.6] [ebuild U ] kde-plasma/kwallet-pam-5.9.5-r1 [5.8.6] [ebuild U ] kde-plasma/breeze-gtk-5.9.5 [5.8.6] [ebuild U ] kde-plasma/libkscreen-5.9.5 [5.8.6] [ebuild U ] kde-plasma/kwayland-integration-5.9.5 [5.8.6] [ebuild U ] kde-plasma/kgamma-5.9.5 [5.8.6] [ebuild U ] kde-plasma/polkit-kde-agent-5.9.5 [5.8.6] [ebuild U ] dev-db/mariadb-10.1.24 [10.0.30] USE="backup%* cracklib%* systemd%* -galera% -innodb-lz4% -innodb-lzo% -innodb-snappy% -kerberos% (-mroonga) -sst-rsync% -sst-xtrabackup%" [ebuild U ] kde-plasma/kwrited-5.9.5 [5.8.6] [ebuild U ] kde-plasma/ksshaskpass-5.9.5 [5.8.6] [ebuild U ] kde-plasma/kactivitymanagerd-5.9.5 [5.8.6] [ebuild U ] kde-plasma/kde-cli-tools-5.9.5-r1 [5.8.6-r1] [ebuild U ] kde-plasma/user-manager-5.9.5 [5.8.6] [ebuild U ] kde-plasma/systemsettings-5.9.5 [5.8.6] [ebuild U ] kde-plasma/libksysguard-5.9.5 [5.8.6] USE="-minimal%" [ebuild U ] kde-plasma/kscreenlocker-5.9.5 [5.8.6] [ebuild U ] kde-plasma/plasma-pa-5.9.5 [5.8.6] [ebuild U ] kde-plasma/kinfocenter-5.9.5 [5.8.6] [ebuild U ] kde-plasma/sddm-kcm-5.9.5 [5.8.6] [ebuild U ] kde-plasma/kscreen-5.9.5 [5.8.6] [ebuild U ] kde-plasma/bluedevil-5.9.5 [5.8.6] [ebuild U ] kde-plasma/ksysguard-5.9.5 [5.8.6] [ebuild U ] kde-plasma/milou-5.9.5 [5.8.6] [ebuild U ] kde-plasma/breeze-5.9.5 [5.8.6] [ebuild U ] kde-plasma/oxygen-5.9.5-r1 [5.8.6-r1] [ebuild U ] kde-plasma/kwin-5.9.5 [5.8.6] [ebuild U ] kde-plasma/plasma-integration-5.9.5 [5.8.6] [ebuild U ] kde-plasma/plasma-workspace-5.9.5.1-r2 [5.8.6-r1] [ebuild U ] kde-plasma/khotkeys-5.9.5 [5.8.6] [ebuild U ] kde-plasma/powerdevil-5.9.5 [5.8.6] USE="(-consolekit)" [ebuild U ] kde-plasma/kdeplasma-addons-5.9.5 [5.8.6] [ebuild U ] kde-plasma/plasma-desktop-5.9.5 [5.8.6] USE="-appstream%" [ebuild U ] kde-plasma/kmenuedit-5.9.5 [5.8.6] [ebuild U ] kde-plasma/plasma-meta-5.9.5 [5.8.6] And this is the list of QT packages updated yesterday: Code: [ebuild N ] dev-util/scons-2.4.1 USE="-doc" PYTHON_TARGETS="python2_7 (-pypy)" [ebuild N ] dev-libs/double-conversion-2.0.1 USE="-static-libs" [ebuild N ] dev-perl/XML-SAX-Expat-0.510.0 USE="{-test}" [ebuild U ] dev-perl/XML-Simple-2.220.0 [2.200.0-r1] USE="{-test%}" [ebuild U ] virtual/libudev-232 [215-r1] [ebuild r U ] dev-qt/qtcore-5.7.1-r3 [5.6.2-r1] [ebuild R ] x11-base/xorg-server-1.19.3 USE="-xcsecurity%" [ebuild r U ] dev-qt/qtdbus-5.7.1 [5.6.2] [ebuild U ] dev-qt/qtxml-5.7.1 [5.6.2] [ebuild U ] dev-qt/qtnetwork-5.7.1 [5.6.2] [ebuild U ] dev-qt/qtconcurrent-5.7.1 [5.6.2] [ebuild U ] dev-qt/qttest-5.7.1 [5.6.2] [ebuild U ] dev-qt/qtpaths-5.7.1 [5.6.2] [ebuild U ] dev-qt/qtxmlpatterns-5.7.1 [5.6.2] [ebuild U ] dev-qt/qdbus-5.7.1 [5.6.2] [ebuild U #] net-im/telegram-desktop-bin-1.1.10 [1.1.9] [ebuild r U ] dev-qt/qtgui-5.7.1-r1 [5.6.2] USE="-gtk%" [ebuild U ] dev-qt/qtwidgets-5.7.1 [5.6.2] [ebuild U ] dev-qt/qtx11extras-5.7.1 [5.6.2] [ebuild U ] dev-qt/qtimageformats-5.7.1 [5.6.2] [ebuild U ] dev-qt/qtscript-5.7.1 [5.6.2] [ebuild U ] dev-qt/qtsvg-5.7.1 [5.6.2] [ebuild U ] dev-qt/qtopengl-5.7.1 [5.6.2] [ebuild U ] dev-qt/qtprintsupport-5.7.1 [5.6.2] [ebuild U ] dev-qt/qtsql-5.7.1 [5.6.2] [ebuild U ~] sci-misc/boinc-7.6.33-r5 [7.6.33-r4] [ebuild r U ] dev-qt/qtdeclarative-5.7.1 [5.6.2] [ebuild U ] dev-qt/linguist-tools-5.7.1 [5.6.2] [ebuild U ] dev-qt/designer-5.7.1 [5.6.2] [ebuild U ] dev-qt/qtquickcontrols-5.7.1 [5.6.2] [blocks b ] <dev-qt/qtquickcontrols-5.7:5 ("<dev-qt/qtquickcontrols-5.7:5" is blocking dev-qt/qtdeclarative-5.7.1) [ebuild U ] dev-qt/qtwebchannel-5.7.1 [5.6.2] [ebuild U ] dev-qt/qtwayland-5.7.1 [5.6.2] [ebuild U ] dev-qt/qtgraphicaleffects-5.7.1 [5.6.2] [ebuild U ] dev-qt/qtwebkit-5.7.1 [5.6.2] [ebuild U ] dev-qt/qtmultimedia-5.7.1 [5.6.2] [ebuild U ] dev-qt/qtsensors-5.7.1 [5.6.2] [ebuild r U ] dev-qt/qtwebengine-5.7.1-r1 [5.6.2] USE="alsa%* pulseaudio%*" [ebuild rR ] kde-frameworks/kauth-5.34.0 [ebuild rR ] kde-frameworks/knotifications-5.34.0 [ebuild rR ] kde-frameworks/kdeclarative-5.34.0 [ebuild rR ] kde-apps/konqueror-16.12.3 [ebuild rR ] kde-plasma/plasma-integration-5.8.6 [ebuild rR ] kde-plasma/kwin-5.8.6 | I don't think kfaenza is providing you with anything complete for modern Plasma. Switch back to breeze dark, problem still persists? Try with a new user. |
I have just upgraded two machine to KDE5. After sorting out all the blockages when I logged on from sddm the new desktop appeared and I was able to start working. On the second machine when I logon I get applications in the autostart list starting but there is no desktop, just a black screen. One of the apps has a console mode and I can start other programs from there. I have seen similar posts but in my case plasmashell, ksmserver, kwin-x11 are all running. I feel some component has been left out but all of plasma-meta is installed. Creating a new user did not help. Any suggestions what to try? TIA Robin | Please check if it is the same issue with a different user. |
Emerged SDDM with consolekit pam -systemd, but it's still looking for systemd libraries on startup. Code: Jul 18 21:14:41 lepton sudo[9565]: creator : TTY=pts/0 ; PWD=/usr/portage ; USER=root ; COMMAND=/etc/init.d/xdm restart Jul 18 21:14:41 lepton sudo[9565]: pam_unix(sudo:session): session opened for user root by (uid=0) Jul 18 21:14:41 lepton sddm-helper[8542]: pam_unix(sddm-greeter:session): session closed for user sddm Jul 18 21:14:46 lepton sudo[9565]: pam_unix(sudo:session): session closed for user root Jul 18 21:14:46 lepton sddm-helper[9644]: PAM unable to dlopen(/lib64/security/pam_systemd.so): /lib64/security/pam_systemd.so: cannot open shared object file: No such file or directory Jul 18 21:14:46 lepton sddm-helper[9644]: PAM adding faulty module: /lib64/security/pam_systemd.so Jul 18 21:14:46 lepton sddm-helper[9644]: pam_unix(sddm-greeter:session): session opened for user sddm by (uid=0) Not sure if the message is because I missed something or a bug, but the Shutdown & Reboot commands don't seem to work from the display manager. | Is this it? https://forums.gentoo.org/viewtopic-t-1020970-start-0.html |
after installing Xorg i try to install Plasma-Desktop. Code: GentooX /mnt2/BACKUPs # emerge --ask kde-plasma/plasma-meta * 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! !!! The ebuild selected to satisfy "media-video/ffmpeg:0=" has unmet requirements. - media-video/ffmpeg-3.2.4::gentoo USE="X alsa bzip2 encode gpl hardcoded-tables iconv mp3 network opengl postproc sdl threads truetype vorbis x264 xcb xvid zlib (-altivec) -amr -amrenc (-armv5te) (-armv6) (-armv6t2) (-armvfp) -bluray -bs2b -cdio -celt -chromaprint -cpudetection -debug -doc -ebur128 -fdk -flite -fontconfig -frei0r -fribidi -gcrypt -gme -gmp -gnutls -gsm -iec61883 -ieee1394 -jack -jpeg2k -kvazaar -ladspa -libass -libcaca -libilbc -librtmp -libsoxr -libv4l -lzma (-mipsdspr1) (-mipsdspr2) (-mipsfpu) (-mmal) -modplug (-neon) -nvenc -openal -openh264 -openssl -opus -oss -pic -pulseaudio -rubberband -samba -schroedinger -snappy -speex -ssh -static-libs -test -theora -twolame -v4l -vaapi -vdpau -vpx -wavpack -webp -x265 -zimg -zvbi" ABI_X86="(64) -32 (-x32)" CPU_FLAGS_X86="mmx sse sse2 -3dnow -3dnowext -aes -avx -avx2 -fma3 -fma4 -mmxext -sse3 -sse4_1 -sse4_2 -ssse3 -xop" FFTOOLS="aviocat cws2fws ffescape ffeval ffhash fourcc2pixfmt graph2dot ismindex pktdumper qt-faststart sidxindex trasher" The following REQUIRED_USE flag constraints are unsatisfied: cpu_flags_x86_sse? ( cpu_flags_x86_mmxext ) The above constraints are a subset of the following complete expression: libv4l? ( v4l ) fftools_cws2fws? ( zlib ) test? ( encode ) postproc? ( gpl ) frei0r? ( gpl ) cdio? ( gpl ) samba? ( gpl ) encode? ( x264? ( gpl ) x265? ( gpl ) xvid? ( gpl ) X? ( !xcb? ( gpl ) ) ) cpu_flags_x86_avx2? ( cpu_flags_x86_avx ) cpu_flags_x86_fma4? ( cpu_flags_x86_avx ) cpu_flags_x86_fma3? ( cpu_flags_x86_avx ) cpu_flags_x86_xop? ( cpu_flags_x86_avx ) cpu_flags_x86_avx? ( cpu_flags_x86_sse4_2 ) cpu_flags_x86_aes? ( cpu_flags_x86_sse4_2 ) cpu_flags_x86_sse4_2? ( cpu_flags_x86_sse4_1 ) cpu_flags_x86_sse4_1? ( cpu_flags_x86_ssse3 ) cpu_flags_x86_ssse3? ( cpu_flags_x86_sse3 ) cpu_flags_x86_sse3? ( cpu_flags_x86_sse2 ) cpu_flags_x86_sse2? ( cpu_flags_x86_sse ) cpu_flags_x86_sse? ( cpu_flags_x86_mmxext ) cpu_flags_x86_mmxext? ( cpu_flags_x86_mmx ) cpu_flags_x86_3dnowext? ( cpu_flags_x86_3dnow ) cpu_flags_x86_3dnow? ( cpu_flags_x86_mmx ) (dependency required by "media-video/vlc-2.2.6::gentoo[swscale,-vdpau,avcodec,-libav,avformat]" [ebuild]) (dependency required by "media-libs/phonon-vlc-0.9.1-r1::gentoo" [ebuild]) (dependency required by "media-libs/phonon-4.9.1-r1::gentoo[vlc]" [ebuild]) (dependency required by "kde-apps/kio-extras-16.12.3-r1::gentoo[phonon]" [ebuild]) (dependency required by "kde-plasma/plasma-workspace-5.9.5.1-r2::gentoo" [ebuild]) (dependency required by "kde-plasma/plasma-desktop-5.9.5::gentoo" [ebuild]) (dependency required by "kde-plasma/plasma-desktop" [argument]) GentooX /mnt2/BACKUPs # after I comment out "sse" in USE Flags in make.conf Code: GentooX /mnt2/BACKUPs # vi /etc/portage/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. CFLAGS="-O2 -pipe" CXXFLAGS="${CFLAGS}" # 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="bindist bzip2 idm ipv6 mmx -sse mmxext sse2 urandom gtk -gnome -qt4 qt5 kde dvd alsa cdr X" #CPU_FLAGS_X86="mmx sse2" PORTDIR="/usr/portage" DISTDIR="${PORTDIR}/distfiles" PKGDIR="${PORTDIR}/packages" MAKEOPTS="-j19" ACCEPT_KEYWORDS="amd64" GENTOO_MIRRORS="http://mirror.eu.oneandone.net/linux/distributions/gentoo/gentoo/" #GENTOO_MIRRORS="http://gd.tuwien.ac.at/opsys/linux/gentoo/ ftp://gd.tuwien.ac.at/opsys/linux/gentoo/ rsync://mirror.eu.oneandone.net/gentoo/" LINGUAS="de en" L10N="de en" VIDEO_CARDS="nvidia" INPUT_DEVICES="evdev" GRUB_PLATFORMS="efi-64" I got now: Code: GentooX /mnt2/BACKUPs # emerge --ask kde-plasma/plasma-meta * IMPORTANT: 1 news items need reading for repository 'gentoo'. * Use eselect news read to view new items. * IMPORTANT: config file '/etc/portage/package.use/iputils' needs updating. * See the CONFIGURATION FILES and CONFIGURATION FILES UPDATE TOOLS * sections of the emerge man page to learn how to update config files. These are the packages that would be merged, in order: Calculating dependencies... done! !!! The ebuild selected to satisfy "media-video/ffmpeg:0=" has unmet requirements. - media-video/ffmpeg-3.2.4::gentoo USE="X alsa bzip2 encode gpl hardcoded-tables iconv mp3 network opengl postproc sdl threads truetype vorbis x264 xcb xvid zlib (-altivec) -amr -amrenc (-armv5te) (-armv6) (-armv6t2) (-armvfp) -bluray -bs2b -cdio -celt -chromaprint -cpudetection -debug -doc -ebur128 -fdk -flite -fontconfig -frei0r -fribidi -gcrypt -gme -gmp -gnutls -gsm -iec61883 -ieee1394 -jack -jpeg2k -kvazaar -ladspa -libass -libcaca -libilbc -librtmp -libsoxr -libv4l -lzma (-mipsdspr1) (-mipsdspr2) (-mipsfpu) (-mmal) -modplug (-neon) -nvenc -openal -openh264 -openssl -opus -oss -pic -pulseaudio -rubberband -samba -schroedinger -snappy -speex -ssh -static-libs -test -theora -twolame -v4l -vaapi -vdpau -vpx -wavpack -webp -x265 -zimg -zvbi" ABI_X86="(64) -32 (-x32)" CPU_FLAGS_X86="mmx sse2 -3dnow -3dnowext -aes -avx -avx2 -fma3 -fma4 -mmxext -sse -sse3 -sse4_1 -sse4_2 -ssse3 -xop" FFTOOLS="aviocat cws2fws ffescape ffeval ffhash fourcc2pixfmt graph2dot ismindex pktdumper qt-faststart sidxindex trasher" The following REQUIRED_USE flag constraints are unsatisfied: cpu_flags_x86_sse2? ( cpu_flags_x86_sse ) The above constraints are a subset of the following complete expression: libv4l? ( v4l ) fftools_cws2fws? ( zlib ) test? ( encode ) postproc? ( gpl ) frei0r? ( gpl ) cdio? ( gpl ) samba? ( gpl ) encode? ( x264? ( gpl ) x265? ( gpl ) xvid? ( gpl ) X? ( !xcb? ( gpl ) ) ) cpu_flags_x86_avx2? ( cpu_flags_x86_avx ) cpu_flags_x86_fma4? ( cpu_flags_x86_avx ) cpu_flags_x86_fma3? ( cpu_flags_x86_avx ) cpu_flags_x86_xop? ( cpu_flags_x86_avx ) cpu_flags_x86_avx? ( cpu_flags_x86_sse4_2 ) cpu_flags_x86_aes? ( cpu_flags_x86_sse4_2 ) cpu_flags_x86_sse4_2? ( cpu_flags_x86_sse4_1 ) cpu_flags_x86_sse4_1? ( cpu_flags_x86_ssse3 ) cpu_flags_x86_ssse3? ( cpu_flags_x86_sse3 ) cpu_flags_x86_sse3? ( cpu_flags_x86_sse2 ) cpu_flags_x86_sse2? ( cpu_flags_x86_sse ) cpu_flags_x86_sse? ( cpu_flags_x86_mmxext ) cpu_flags_x86_mmxext? ( cpu_flags_x86_mmx ) cpu_flags_x86_3dnowext? ( cpu_flags_x86_3dnow ) cpu_flags_x86_3dnow? ( cpu_flags_x86_mmx ) (dependency required by "media-video/vlc-2.2.6::gentoo[-libav,avformat,swscale,avcodec,-vdpau]" [ebuild]) (dependency required by "media-libs/phonon-vlc-0.9.1-r1::gentoo" [ebuild]) (dependency required by "media-libs/phonon-4.9.1-r1::gentoo[vlc]" [ebuild]) (dependency required by "kde-frameworks/knotifications-5.34.0::gentoo" [ebuild]) (dependency required by "kde-frameworks/kio-5.34.0-r2::gentoo" [ebuild]) (dependency required by "kde-frameworks/kdeclarative-5.34.0::gentoo" [ebuild]) (dependency required by "kde-frameworks/kcmutils-5.34.0::gentoo" [ebuild]) (dependency required by "kde-plasma/breeze-5.9.5::gentoo" [ebuild]) (dependency required by "kde-plasma/plasma-meta-5.9.5::gentoo" [ebuild]) (dependency required by "kde-plasma/plasma-meta" [argument]) GentooX /mnt2/BACKUPs # vi /etc/portage/make.conf GentooX /mnt2/BACKUPs # emerge --ask kde-plasma/plasma-meta * IMPORTANT: 1 news items need reading for repository 'gentoo'. * Use eselect news read to view new items. * IMPORTANT: config file '/etc/portage/package.use/iputils' needs updating. * See the CONFIGURATION FILES and CONFIGURATION FILES UPDATE TOOLS * sections of the emerge man page to learn how to update config files. These are the packages that would be merged, in order: Calculating dependencies... done! [ebuild N ] sys-power/pm-quirks-20100619 [ebuild N ] dev-libs/libx86-1.1-r3 USE="-static-libs" [ebuild N ] media-libs/libdvbpsi-1.3.0-r1 USE="-doc -static-libs" [ebuild N ] dev-util/boost-build-1.62.0-r1 USE="-examples -python {-test}" PYTHON_TARGETS="python2_7" [ebuild N ] dev-libs/xapian-1.4.4 USE="chert glass inmemory -doc -static-libs" ABI_X86="(64) -32 (-x32)" CPU_FLAGS_X86="sse sse2" [ebuild N ] dev-db/lmdb-0.9.18 USE="-static-libs" [ebuild N ] sys-apps/tcp-wrappers-7.6.22-r1 USE="ipv6 -netgroups -static-libs" ABI_X86="(64) -32 (-x32)" [ebuild N ] sys-libs/libutempter-1.1.6-r2 USE="-static-libs" [ebuild N ] net-wireless/wireless-regdb-20170307 [ebuild N ] net-dialup/ppp-scripts-0 [ebuild N ] media-libs/libogg-1.3.2 USE="-static-libs" ABI_X86="(64) -32 (-x32)" [ebuild N ] dev-libs/libyaml-0.1.7 USE="-doc -examples -static-libs {-test}" [ebuild N ] media-libs/libdvdcss-1.3.0 USE="-doc -static-libs" ABI_X86="(64) -32 (-x32)" [ebuild N ] media-libs/giflib-5.1.4 USE="-doc -static-libs" ABI_X86="(64) -32 (-x32)" [ebuild N ] sys-libs/libunwind-1.1-r1 USE="-debug -debug-frame -libatomic -lzma -static-libs" [ebuild N ] dev-util/google-perftools-2.0-r2 USE="debug -largepages -minimal -static-libs {-test}" [ebuild N ] sys-libs/mtdev-1.1.5 USE="-static-libs" [ebuild N ] dev-libs/libnl-3.2.28 USE="-python -static-libs -utils" ABI_X86="(64) -32 (-x32)" PYTHON_TARGETS="python2_7 python3_4 (-python3_5)" [ebuild N ] media-fonts/dejavu-2.35 USE="X -fontforge" [ebuild N ] media-fonts/hack-2.020 USE="X" [ebuild N ] media-fonts/noto-20160531 USE="X -cjk" [ebuild N ] app-dicts/myspell-de-2015.12.28 [ebuild N ] app-dicts/myspell-en-20170101 [ebuild R ] sys-libs/zlib-1.2.11 ABI_X86="32*" [ebuild N ] media-libs/alsa-lib-1.1.2 USE="-alisp -debug -doc -python" ABI_X86="(64) -32 (-x32)" PYTHON_TARGETS="python2_7" [ebuild N ] media-libs/libdvdread-5.0.3 USE="css -static-libs" ABI_X86="(64) -32 (-x32)" [ebuild N ] media-libs/a52dec-0.7.4-r7 USE="-djbfft -oss -static-libs" ABI_X86="(64) -32 (-x32)" [ebuild N ] media-libs/libdca-0.0.5-r3 USE="-debug -oss -static-libs" ABI_X86="(64) -32 (-x32)" [ebuild N ] media-libs/libmad-0.15.1b-r8 USE="-debug -static-libs" ABI_X86="(64) -32 (-x32)" [ebuild N ] dev-libs/jansson-2.9 USE="-doc -static-libs" ABI_X86="(64) -32 (-x32)" [ebuild N ] dev-util/ragel-6.7-r1 USE="-vim-syntax" [ebuild N ] app-arch/snappy-1.1.3-r1 USE="-static-libs" ABI_X86="(64) -32 (-x32)" [ebuild N ] dev-libs/boost-1.62.0-r1 USE="nls threads -context -debug -doc -icu -mpi -python -static-libs -tools" ABI_X86="(64) -32 (-x32)" PYTHON_TARGETS="python2_7 python3_4 (-python3_5)" [ebuild N ] dev-libs/leveldb-1.18-r1 USE="snappy tcmalloc -static-libs" [ebuild N ] x11-base/xorg-drivers-1.19 INPUT_DEVICES="evdev -acecad -aiptek -elographics -fpit -hyperpen -joystick -keyboard -libinput -mouse -mutouch -penmount -synaptics -tslib -vmmouse -void -wacom" VIDEO_CARDS="nvidia -amdgpu -apm -ark -ast -chips -cirrus -dummy -epson -fbdev (-fglrx) (-freedreno) (-geode) -glint -i128 (-i740) -i915 -i965 -intel -mach64 -mga -neomagic (-newport) -nouveau -nv (-omap) -qxl -r128 -radeon -radeonsi -rendition -s3 -s3virge -savage -siliconmotion -sis -sisusb (-sunbw2) (-suncg14) (-suncg3) (-suncg6) (-sunffb) (-sunleo) (-suntcx) -tdfx (-tegra) -tga -trident -tseng (-vc4) -vesa -via -virtualbox -vmware (-voodoo)" [ebuild N ] app-eselect/eselect-opencl-1.1.0-r1 [ebuild N ] app-eselect/eselect-ruby-20161226 [ebuild N ] app-eselect/eselect-lib-bin-symlink-0.1.1 [ebuild N ] app-eselect/eselect-notify-send-0.1 [ebuild N ] net-misc/socat-1.7.3.1 USE="ipv6 readline ssl tcpd" [ebuild N ] virtual/linux-sources-3 USE="-firmware" [ebuild N ] dev-lang/yasm-1.3.0 USE="nls -python" PYTHON_TARGETS="python2_7" [ebuild N ] media-libs/x264-0.0.20160712 USE="interlaced threads -10bit (-altivec) -opencl -pic -static-libs" ABI_X86="(64) -32 (-x32)" CPU_FLAGS_X86="sse" [ebuild N ] app-text/hunspell-1.6.1-r1 USE="ncurses nls readline -static-libs" L10N="de en -af -bg -ca -cs -cy -da -de-1901 -el -eo -es -et -fo -fr -ga -gl -he -hr -hu -ia -id -is -it -km -ku -lt -lv -mi -mk -ms -nb -nl -nn -pl -pt -pt-BR -ro -ru -sk -sl -sq -sv -sw -tn -uk -zu" [ebuild N ] app-text/iso-codes-3.74 LINGUAS="de en -af -am -ar -as -ast -az -be -bg -bn -bn_IN -br -bs -byn -ca -crh -cs -cy -da -dz -el -eo -es -et -eu -fa -fi -fo -fr -ga -gez -gl -gu -haw -he -hi -hr -hu -hy -ia -id -is -it -ja -ka -kk -km -kn -ko -kok -ku -lt -lv -mi -mk -ml -mn -mr -ms -mt -nb -ne -nl -nn -nso -oc -or -pa -pl -ps -pt -pt_BR -ro -ru -rw -si -sk -sl -so -sq -sr -sr@latin -sv -sw -ta -te -th -ti -tig -tk -tl -tr -tt -tt@iqtelif -ug -uk -ve -vi -wa -wal -wo -xh -zh_CN -zh_HK -zh_TW -zu" [ebuild N ] dev-lang/swig-3.0.12 USE="pcre -ccache -doc" [ebuild N ] sys-libs/slang-2.3.0 USE="pcre png readline zlib -cjk -static-libs" ABI_X86="(64) -32 (-x32)" [ebuild N ] dev-libs/newt-0.52.15 USE="gpm nls -tcl" PYTHON_TARGETS="python2_7" [ebuild N ] media-libs/xvid-1.3.3 USE="threads -examples -pic" ABI_X86="(64) -32 (-x32)" [ebuild N ] dev-python/m2crypto-0.24.0 USE="(-libressl)" PYTHON_TARGETS="python2_7" [ebuild N ] dev-lang/ruby-2.2.6 USE="berkdb gdbm ipv6 ncurses rdoc readline ssl -debug -doc -examples -jemalloc (-libressl) -rubytests -socks5 -tk -xemacs" [ebuild N ] dev-lang/ruby-2.1.9 USE="berkdb gdbm ipv6 ncurses rdoc readline ssl -debug -doc -examples -rubytests -socks5 -xemacs" [ebuild N ] dev-ruby/rubygems-2.5.2 USE="-server {-test}" RUBY_TARGETS="ruby21 ruby22 (-ruby23)" [ebuild N ] virtual/rubygems-11 RUBY_TARGETS="ruby21 ruby22 (-rbx) (-ruby23)" [ebuild N ] dev-ruby/power_assert-0.3.1 USE="-doc {-test}" RUBY_TARGETS="ruby21 ruby22 (-ruby23)" [ebuild N ] dev-ruby/rake-10.5.0 USE="-doc {-test}" RUBY_TARGETS="ruby21 ruby22 (-ruby23)" [ebuild N ] dev-ruby/json-1.8.3 USE="-doc {-test}" RUBY_TARGETS="ruby21 ruby22 (-ruby23)" [ebuild N ] dev-ruby/minitest-5.8.4 USE="-doc {-test}" RUBY_TARGETS="ruby21 ruby22 (-ruby23)" [ebuild N ] dev-ruby/test-unit-3.1.9 USE="-doc {-test}" RUBY_TARGETS="ruby21 ruby22 (-ruby23)" [ebuild N ] dev-ruby/racc-1.4.11 USE="-doc {-test}" RUBY_TARGETS="ruby21 ruby22" [ebuild N ] dev-ruby/rdoc-4.2.0 USE="-doc {-test}" RUBY_TARGETS="ruby21 ruby22" [ebuild N ] dev-libs/libevdev-1.5.7 USE="-static-libs" ABI_X86="(64) -32 (-x32)" [ebuild R ] x11-proto/xproto-7.0.31 ABI_X86="32*" [ebuild R ] x11-proto/xextproto-7.3.0 ABI_X86="32*" [ebuild R ] x11-proto/kbproto-1.0.7 ABI_X86="32*" [ebuild R ] dev-libs/libpthread-stubs-0.4 ABI_X86="32*" [ebuild R ] x11-proto/xcb-proto-1.12-r2 ABI_X86="32*" [ebuild R ] x11-proto/inputproto-2.3.2 ABI_X86="32*" [ebuild R ] x11-proto/xf86bigfontproto-1.2.0-r1 ABI_X86="32*" [ebuild R ] x11-libs/libXdmcp-1.1.2-r1 ABI_X86="32*" [ebuild R ] x11-libs/libXau-1.0.8 ABI_X86="32*" [ebuild R ] x11-libs/libxcb-1.12-r2 ABI_X86="32*" [ebuild R ] x11-libs/libX11-1.6.5 ABI_X86="32*" [ebuild R ] x11-libs/libXext-1.3.3 ABI_X86="32*" [ebuild N ] x11-libs/libvdpau-1.1.1 USE="dri -doc {-test}" ABI_X86="32 (64) (-x32)" [ebuild NS ] dev-qt/qtsql-5.7.1 [4.8.7-r1] USE="mysql sqlite -debug -freetds -oci8 -odbc -postgres {-test}" [ebuild N ] dev-qt/qtconcurrent-5.7.1 USE="-debug {-test}" [ebuild N ] x11-libs/libxkbfile-1.0.9 USE="-static-libs" [ebuild N ] media-libs/libsamplerate-0.1.9 USE="-sndfile -static-libs" ABI_X86="(64) -32 (-x32)" [ebuild N ] media-libs/libvorbis-1.3.5 USE="-static-libs" ABI_X86="(64) -32 (-x32)" [ebuild N ] media-libs/flac-1.3.2-r1 USE="cxx ogg (-altivec) -debug -static-libs" ABI_X86="(64) -32 (-x32)" CPU_FLAGS_X86="sse" [ebuild N ] x11-proto/scrnsaverproto-1.2.2-r1 USE="-doc" ABI_X86="(64) -32 (-x32)" [ebuild N ] x11-libs/libXScrnSaver-1.2.2-r1 USE="-static-libs" ABI_X86="(64) -32 (-x32)" [ebuild N ] x11-proto/fontsproto-2.1.3 USE="-doc" [ebuild N ] x11-proto/resourceproto-1.2.0 [ebuild N ] x11-misc/xkeyboard-config-2.20 [ebuild N ] x11-misc/xbitmaps-1.1.1-r1 [ebuild N ] x11-apps/xrdb-1.1.0 [ebuild N ] media-libs/glu-9.0.0-r1 USE="-static-libs" ABI_X86="(64) -32 (-x32)" [ebuild N ] virtual/glu-9.0-r1 ABI_X86="(64) -32 (-x32)" [ebuild N ] sys-apps/vbetool-1.1 [ebuild N ] media-sound/alsa-utils-1.1.2 USE="libsamplerate ncurses nls -bat -doc (-selinux)" [ebuild N ] media-libs/libdvdnav-5.0.3 USE="-static-libs" ABI_X86="(64) -32 (-x32)" [ebuild N ] media-libs/audiofile-0.3.6-r3 USE="flac -static-libs {-test}" ABI_X86="(64) -32 (-x32)" [ebuild N ] media-libs/libsdl-1.2.15-r9 USE="X alsa joystick opengl sound video xinerama xv -aalib -custom-cflags -dga -fbcon -libcaca -nas -oss -pulseaudio -static-libs -tslib" ABI_X86="(64) -32 (-x32)" [ebuild N ] media-libs/libmpeg2-0.5.1-r2 USE="X sdl -static-libs" ABI_X86="(64) -32 (-x32)" [ebuild N ] media-sound/lame-3.99.5-r1 USE="frontend -debug -mp3rtp -sndfile -static-libs" ABI_X86="(64) -32 (-x32)" CPU_FLAGS_X86="(-mmx)" [ebuild NS ] app-text/docbook-xml-dtd-4.3-r1 [4.1.2-r6, 4.2-r2, 4.4-r2, 4.5-r1] [ebuild N ] gnome-base/gsettings-desktop-schemas-3.22.0 USE="introspection" [ebuild N ] x11-themes/gnome-themes-standard-3.22.3 [ebuild N ] dev-libs/libatasmart-0.19-r1 USE="-static-libs" [ebuild N ] sys-block/parted-3.2 USE="debug nls readline -device-mapper (-selinux) -static-libs" [ebuild N ] x11-apps/xinit-1.3.4-r1 USE="minimal -systemd" [ebuild N ] x11-proto/xf86dgaproto-2.1-r2 ABI_X86="(64) -32 (-x32)" [ebuild N ] x11-proto/trapproto-3.4.3 [ebuild N ] x11-proto/xcmiscproto-1.2.2 USE="-doc" [ebuild N ] x11-apps/xkbcomp-1.4.0 [ebuild N ] x11-proto/xf86rushproto-1.1.2-r1 [ebuild N ] x11-libs/libXfont2-2.0.1 USE="bzip2 ipv6 truetype -doc -static-libs" [ebuild N ] x11-apps/rgb-1.0.6 [ebuild N ] x11-apps/iceauth-1.0.7 [ebuild N ] x11-proto/bigreqsproto-1.1.2 USE="-doc" [ebuild N ] x11-base/xorg-server-1.19.3 USE="glamor ipv6 suid udev xorg -debug -dmx -doc -kdrive (-libressl) -minimal (-selinux) -static-libs -systemd -tslib -unwind -wayland -xcsecurity -xephyr -xnest -xvfb" [ebuild N ] x11-drivers/xf86-input-evdev-2.10.5 [ebuild N ] x11-libs/libXres-1.0.7 USE="-static-libs" [ebuild N ] x11-apps/setxkbmap-1.3.1 [ebuild N ] dev-libs/libinput-1.7.3 USE="{-test}" INPUT_DEVICES="-wacom" [ebuild N ] x11-apps/xsetroot-1.1.1 [ebuild N ] dev-qt/qtpaths-5.7.1 USE="-debug {-test}" [ebuild N ] dev-libs/libpwquality-1.3.0 USE="pam -python -static-libs" PYTHON_TARGETS="python2_7 python3_4 (-python3_5) (-python3_6)" [ebuild N ] virtual/eject-0 [ebuild N ] dev-libs/libgudev-231 USE="introspection -static-libs" ABI_X86="(64) -32 (-x32)" [ebuild N ] virtual/libgudev-230 USE="introspection -static-libs" ABI_X86="(64) -32 (-x32)" [ebuild N ] net-libs/libndp-1.6-r1 ABI_X86="(64) -32 (-x32)" [ebuild N ] dev-libs/nss-3.29.5 USE="nss-pem -cacert -utils" ABI_X86="(64) -32 (-x32)" [ebuild N ] net-wireless/crda-3.18-r1 USE="-gcrypt (-libressl)" [ebuild N ] net-libs/libmbim-1.14.0 USE="udev -static-libs" [ebuild N ] net-libs/libqmi-1.16.2 USE="mbim -doc -static-libs" [ebuild N ] x11-apps/xmessage-1.0.4 [ebuild N ] dev-libs/dbus-glib-0.108 USE="-debug -static-libs {-test}" ABI_X86="(64) -32 (-x32)" [ebuild N ] sys-power/upower-0.99.4 USE="introspection -doc -ios (-selinux)" [ebuild N ] sys-power/pm-utils-1.4.1-r7 USE="alsa -debug -ntp" VIDEO_CARDS="-intel -radeon" [ebuild N ] media-libs/libsdl2-2.0.4 USE="X alsa dbus joystick opengl sound threads udev video xinerama xscreensaver (-altivec) (-custom-cflags) (-fusionsound) -gles -haptic -nas -oss -pulseaudio -static-libs -tslib -wayland" ABI_X86="(64) -32 (-x32)" CPU_FLAGS_X86="mmx sse sse2 -3dnow" [ebuild N ] media-video/ffmpeg-3.2.4 USE="X alsa bzip2 encode gpl hardcoded-tables iconv mp3 network opengl postproc sdl threads truetype vorbis x264 xcb xvid zlib (-altivec) -amr -amrenc (-armv5te) (-armv6) (-armv6t2) (-armvfp) -bluray -bs2b -cdio -celt -chromaprint -cpudetection -debug -doc -ebur128 -fdk -flite -fontconfig -frei0r -fribidi -gcrypt -gme -gmp -gnutls -gsm -iec61883 -ieee1394 -jack -jpeg2k -kvazaar -ladspa -libass -libcaca -libilbc -librtmp -libsoxr -libv4l -lzma (-mipsdspr1) (-mipsdspr2) (-mipsfpu) (-mmal) -modplug (-neon) -nvenc -openal -openh264 -openssl -opus -oss -pic -pulseaudio -rubberband -samba -schroedinger -snappy -speex -ssh -static-libs {-test} -theora -twolame -v4l -vaapi -vdpau -vpx -wavpack -webp -x265 -zimg -zvbi" ABI_X86="(64) -32 (-x32)" CPU_FLAGS_X86="mmx mmxext sse sse2 -3dnow -3dnowext -aes -avx -avx2 -fma3 -fma4 -sse3 -sse4_1 -sse4_2 -ssse3 -xop" FFTOOLS="aviocat cws2fws ffescape ffeval ffhash fourcc2pixfmt graph2dot ismindex pktdumper qt-faststart sidxindex trasher" [ebuild N ] dev-qt/qdbus-5.7.1 USE="-debug {-test}" [ebuild N ] kde-frameworks/kservice-5.34.0 USE="man -debug {-test}" [ebuild N ] kde-frameworks/kcompletion-5.34.0 USE="nls -debug {-test}" [ebuild N ] kde-frameworks/kglobalaccel-5.34.0 USE="nls -debug {-test}" [ebuild N ] kde-frameworks/kpackage-5.34.0 USE="-debug -man {-test}" [ebuild N ] kde-frameworks/kjobwidgets-5.34.0 USE="X nls -debug {-test}" [ebuild N ] kde-frameworks/kidletime-5.34.0 USE="-debug" [ebuild N ] dev-qt/qtprintsupport-5.7.1 USE="cups -debug -gles2 {-test}" [ebuild N ] kde-frameworks/sonnet-5.34.0 USE="hunspell nls -aspell -debug {-test}" [ebuild N ] dev-qt/designer-5.7.1 USE="declarative -debug {-test} -webkit" [ebuild N ] kde-plasma/kdecoration-5.9.5 USE="-debug {-test}" [ebuild N ] kde-frameworks/kitemmodels-5.34.0 USE="-debug {-test}" [ebuild N ] kde-frameworks/kjs-5.34.0 USE="-debug {-test}" [ebuild N ] dev-qt/qtgraphicaleffects-5.7.1 USE="-debug {-test}" [ebuild N ] kde-frameworks/kpty-5.34.0 USE="-debug {-test}" [ebuild N ] kde-frameworks/bluez-qt-5.34.0-r1 USE="-debug {-test}" [ebuild N ] kde-frameworks/kunitconversion-5.34.0 USE="-debug {-test}" [ebuild N ] kde-frameworks/kemoticons-5.34.0 USE="-debug {-test}" [ebuild N ] kde-frameworks/attica-5.34.0 USE="-debug {-test}" [ebuild N ] dev-qt/qtquickcontrols-5.7.1 USE="widgets -debug {-test}" [ebuild N ] media-gfx/exiv2-0.25-r2 USE="nls png xmp -doc -examples -webready" ABI_X86="(64) -32 (-x32)" LINGUAS="de -bs -es -fi -fr -gl -ms -pl -pt -ru -sk -sv -ug -uk -vi" [ebuild N ] kde-frameworks/kdesu-5.34.0 USE="X -debug" [ebuild N ] kde-plasma/kwallet-pam-5.9.5-r1 USE="-debug" [ebuild N ] kde-plasma/breeze-gtk-5.9.5 USE="-debug" [ebuild N ] kde-plasma/plasma-workspace-wallpapers-5.9.5 [ebuild N ] kde-frameworks/kdesignerplugin-5.34.0 USE="nls -debug -designer -webkit" [ebuild N ] dev-libs/libdbusmenu-qt-0.9.3_pre20160218 USE="qt5 -debug -qt4 {-test}" ABI_X86="(64) -32 (-x32)" [ebuild N ] dev-qt/qtwayland-5.7.1 USE="egl xcomposite -debug {-test}" [ebuild N ] kde-frameworks/kwayland-5.34.0 USE="-debug {-test}" [ebuild N ] kde-plasma/libkscreen-5.9.5 USE="-debug {-test}" [ebuild N ] kde-plasma/kwayland-integration-5.9.5 USE="-debug" [ebuild N ] kde-frameworks/breeze-icons-5.34.0 USE="{-test}" [ebuild N ] kde-frameworks/threadweaver-5.34.0 USE="-debug {-test}" [ebuild N ] dev-libs/grantlee-5.1.0 USE="-debug -doc {-test}" [ebuild N ] dev-qt/qtopengl-5.7.1 USE="-debug -gles2 {-test}" [ebuild N ] dev-qt/qtwebkit-5.7.1 USE="jit opengl qml -debug -geolocation -gstreamer -gstreamer010 -multimedia -orientation -printsupport {-test} -webchannel -webp" [ebuild N ] kde-frameworks/kpeople-5.34.0 USE="-debug {-test}" [ebuild N ] kde-frameworks/kjsembed-5.34.0 USE="-debug" [ebuild N ] kde-apps/kholidays-16.12.3 USE="-debug {-test}" [ebuild N ] net-libs/libssh-0.7.4 USE="sftp zlib -debug -doc -examples -gcrypt -gssapi (-libressl) -pcap -server -ssh1 -static-libs {-test}" ABI_X86="(64) -32 (-x32)" [ebuild N ] kde-frameworks/kdnssd-5.34.0 USE="nls -debug {-test} -zeroconf" [ebuild N ] kde-frameworks/syntax-highlighting-5.34.0 USE="nls -debug {-test}" [ebuild N ] net-wireless/wpa_supplicant-2.6-r1 USE="dbus hs2-0 qt5 readline ssl -ap -eap-sim -fasteap -gnutls (-libressl) -p2p (-ps3) (-selinux) -smartcard -tdls -uncommon-eap-types (-wimax) -wps" [ebuild N ] net-libs/libproxy-0.4.13-r2 USE="kde -gnome -mono -networkmanager -perl -python -spidermonkey {-test} -webkit" ABI_X86="(64) -32 (-x32)" PYTHON_TARGETS="python2_7" [ebuild N ] net-libs/glib-networking-2.50.0 USE="libproxy ssl -gnome -smartcard {-test}" ABI_X86="(64) -32 (-x32)" [ebuild N ] net-libs/libsoup-2.56.0 USE="introspection ssl -debug -gssapi -samba {-test} -vala" ABI_X86="(64) -32 (-x32)" [ebuild N ] dev-libs/libical-2.0.0-r2 USE="-doc -examples -static-libs" [ebuild N ] net-wireless/bluez-5.43-r1 USE="cups obex readline udev -debug -deprecated -doc -experimental -extra-tools (-selinux) -systemd {-test} -test-programs -user-session" ABI_X86="(64) -32 (-x32)" PYTHON_TARGETS="python2_7" [ebuild NS ] x11-libs/gtk+-2.24.31-r1 [3.22.16] USE="cups introspection xinerama (-aqua) -examples {-test} -vim-syntax" ABI_X86="(64) -32 (-x32)" [ebuild N ] x11-drivers/nvidia-drivers-381.22 USE="X acpi driver kms multilib tools -compat -gtk3 -pax_kernel -static-libs -uvm -wayland" ABI_X86="32 (64) (-x32)" [ebuild N ] x11-themes/gtk-engines-adwaita-3.22.3 ABI_X86="(64) -32 (-x32)" [ebuild N ] net-dialup/ppp-2.4.7-r3 USE="gtk ipv6 pam -activefilter -atm -dhcp -eap-tls (-libressl) -radius" [ebuild N ] kde-frameworks/kfilemetadata-5.34.0 USE="exif pdf -debug -epub -ffmpeg -libav -office -taglib {-test}" [ebuild N ] media-libs/phonon-4.9.1-r1 USE="designer qt5 vlc (-aqua) -debug -gstreamer -pulseaudio -qt4 (-zeitgeist)" ABI_X86="(64) -32 (-x32)" [ebuild N ] kde-frameworks/knotifications-5.34.0 USE="X dbus nls -debug (-speech)" [ebuild N ] kde-plasma/kwrited-5.9.5 USE="-debug" [ebuild N ] x11-libs/libnotify-0.7.7 USE="introspection {-test}" ABI_X86="(64) -32 (-x32)" [ebuild N ] media-video/vlc-2.2.6 USE="X a52 alsa avcodec avformat cdda dbus dts dvbpsi dvd encode ffmpeg flac gcrypt jpeg kde libnotify libsamplerate mp3 mpeg ncurses ogg opengl png qt5 sdl svg swscale truetype udev vorbis x264 xcb xml xv -aalib (-altivec) -atmo (-audioqueue) -bidi -bluray -cddb -chromaprint -dc1394 -debug -directfb (-directx) -dvb (-dxva2) -faad -fdk -fluidsynth -fontconfig -gme -gnome -gnutls -growl -gstreamer -httpd -ieee1394 -jack -kate -libass -libav -libcaca -libtar -libtiger -linsys -lirc -live -lua (-macosx-dialog-provider) (-macosx-eyetv) (-macosx-qtkit) (-macosx-quartztext) -matroska -modplug -mtp -musepack (-neon) -omxil -opencv -optimisememory -opus -postproc -projectm -pulseaudio -qt4 -rdp -rtsp -run-as-root -samba -schroedinger -sdl-image -sftp -shout -sid -skins -speex -taglib {-test} -theora -tremor -twolame -upnp -v4l -vaapi -vcdx -vdpau -vlm -vnc -vpx -wma-fixed -x265 -zeroconf -zvbi" CPU_FLAGS_X86="mmx sse" [ebuild N ] media-libs/phonon-vlc-0.9.1-r1 USE="qt5 -debug -qt4" [ebuild N ] x11-misc/sddm-0.14.0-r2 USE="consolekit pam -systemd" [ebuild N ] sys-auth/polkit-pkla-compat-0.1 [ebuild N ] sys-fs/udisks-2.1.8 USE="acl gptfdisk introspection -cryptsetup -debug (-selinux) -systemd" [ebuild N ] kde-frameworks/solid-5.34.0 USE="nls -debug {-test}" [ebuild N ] sys-apps/accountsservice-0.6.43-r1 USE="introspection -doc (-elogind) (-selinux) -systemd" [ebuild N ] net-misc/modemmanager-1.6.4 USE="introspection (policykit) qmi -mbim -systemd -vala" [ebuild N ] net-misc/networkmanager-1.4.4-r1 USE="bluetooth consolekit dhclient introspection modemmanager ncurses nss ppp wext wifi -audit -connection-sharing -gnutls -json -ofono -resolvconf (-selinux) -systemd -teamd {-test} -vala" ABI_X86="(64) -32 (-x32)" [ebuild N ] kde-frameworks/networkmanager-qt-5.34.0 USE="-debug -teamd {-test}" [ebuild N ] kde-frameworks/ktextwidgets-5.34.0 USE="-debug (-speech) {-test}" [ebuild N ] kde-frameworks/kxmlgui-5.34.0 USE="-attica -debug {-test}" [ebuild N ] kde-frameworks/kbookmarks-5.34.0 USE="nls -debug {-test}" [ebuild N ] kde-frameworks/kwallet-5.34.0-r1 USE="man -debug -gpg {-test}" [ebuild N ] kde-plasma/kgamma-5.9.5 USE="handbook -debug" [ebuild N ] kde-plasma/ksshaskpass-5.9.5 USE="-debug" [ebuild N ] kde-frameworks/kio-5.34.0-r2 USE="X acl handbook kwallet -debug -kerberos {-test}" [ebuild N ] kde-frameworks/kinit-5.34.0 USE="caps man -debug" [ebuild N ] kde-frameworks/kded-5.34.0 USE="man -debug" [ebuild N ] kde-frameworks/kdeclarative-5.34.0 USE="-debug" [ebuild N ] kde-frameworks/kcmutils-5.34.0 USE="-debug {-test}" [ebuild N ] kde-plasma/kde-cli-tools-5.9.5-r1 USE="X handbook kdesu -debug {-test}" [ebuild N ] kde-frameworks/knewstuff-5.34.0 USE="-debug" [ebuild N ] kde-frameworks/kparts-5.34.0 USE="-debug {-test}" [ebuild N ] kde-frameworks/kdelibs4support-5.34.0 USE="X -debug (-libressl) {-test}" [ebuild N ] kde-plasma/kscreenlocker-5.9.5 USE="pam -debug {-test}" [ebuild N ] kde-frameworks/knotifyconfig-5.34.0 USE="phonon -debug" [ebuild N ] kde-plasma/kde-gtk-config-5.9.5 USE="gtk3 -debug {-test}" [ebuild N ] kde-plasma/kactivitymanagerd-5.9.5 USE="-debug" [ebuild N ] kde-frameworks/kactivities-5.34.0 USE="-debug {-test}" [ebuild N ] kde-frameworks/plasma-5.34.0 USE="X -debug -gles2 {-test} -wayland" [ebuild N ] kde-frameworks/krunner-5.34.0 USE="-debug {-test}" [ebuild N ] kde-plasma/libksysguard-5.9.5 USE="X detailedmemory -debug -minimal {-test}" [ebuild N ] kde-plasma/ksysguard-5.9.5 USE="handbook -debug -lm_sensors" [ebuild N ] kde-plasma/milou-5.9.5 USE="-debug" [ebuild N ] kde-frameworks/frameworkintegration-5.34.0 USE="X -appstream -debug {-test}" [ebuild N ] kde-plasma/breeze-5.9.5 USE="-debug -qt4 -wayland" [ebuild N ] kde-plasma/kwin-5.9.5 USE="handbook -debug -gles2 -multimedia {-test}" [ebuild N ] kde-plasma/plasma-integration-5.9.5 USE="-debug {-test}" [ebuild N ] kde-plasma/oxygen-5.9.5-r1 USE="-debug -qt4 -wayland" [ebuild N ] kde-frameworks/khtml-5.34.0 USE="X -debug (-libressl) {-test}" [ebuild N ] kde-frameworks/baloo-5.34.0 USE="-debug {-test}" [ebuild N ] kde-plasma/kinfocenter-5.9.5 USE="handbook opengl pci -debug -gles2 -ieee1394 -wayland" [ebuild N ] kde-plasma/user-manager-5.9.5 USE="-debug" [ebuild N ] kde-plasma/kscreen-5.9.5 USE="-debug {-test}" [ebuild N ] kde-plasma/bluedevil-5.9.5 USE="-debug" [ebuild N ] kde-apps/khelpcenter-16.12.3 USE="handbook -debug" [ebuild N ] kde-plasma/sddm-kcm-5.9.5 USE="-debug" [ebuild N ] kde-plasma/systemsettings-5.9.5 USE="gtk handbook -classic -debug" [ebuild N ] kde-frameworks/kross-5.34.0 USE="-debug {-test}" [ebuild N ] kde-frameworks/kactivities-stats-5.34.0 USE="-debug {-test}" [ebuild N ] kde-frameworks/kxmlrpcclient-5.34.0 USE="-debug {-test}" [ebuild N ] kde-frameworks/ktexteditor-5.34.0 USE="-debug -editorconfig -git {-test}" [ebuild N ] kde-apps/kio-extras-16.12.3-r1 USE="exif handbook man phonon sftp -activities -debug -mtp -openexr -samba -slp {-test}" [ebuild N ] kde-plasma/plasma-workspace-5.9.5.1-r2 USE="calendar handbook semantic-desktop -debug -geolocation -gps -prison -qalculate {-test}" [ebuild N ] virtual/notification-daemon-0 USE="kde -gnome" [ebuild N ] kde-plasma/khotkeys-5.9.5 USE="handbook -debug" [ebuild N ] kde-plasma/plasma-desktop-5.9.5 USE="fontconfig handbook semantic-desktop -appstream -debug -gtk2 -gtk3 -ibus -legacy-systray -pulseaudio -qt4 -scim {-test}" INPUT_DEVICES="evdev -synaptics" [ebuild N ] kde-plasma/kdeplasma-addons-5.9.5 USE="-debug -share" [ebuild N ] kde-plasma/powerdevil-5.9.5 USE="consolekit handbook wireless -debug" [ebuild N ] kde-plasma/kmenuedit-5.9.5 USE="handbook hotkeys -debug" [ebuild N ] kde-plasma/plasma-meta-5.9.5 USE="bluetooth display-manager gtk handbook pam sddm wallpapers -grub -networkmanager -plymouth -pulseaudio -sdk" The following USE changes are necessary to proceed: (see "package.use" in the portage(5) man page for more details) # required by x11-libs/libxcb-1.12-r2::gentoo # required by kde-plasma/libkscreen-5.9.5::gentoo # required by kde-plasma/kscreen-5.9.5::gentoo # required by kde-plasma/plasma-meta-5.9.5::gentoo # required by kde-plasma/plasma-meta (argument) >=x11-libs/libXau-1.0.8 abi_x86_32 # required by x11-libs/libX11-1.6.5::gentoo # required by x11-libs/libvdpau-1.1.1::gentoo # required by x11-drivers/nvidia-drivers-381.22::gentoo[X] # required by x11-base/xorg-drivers-1.19::gentoo[video_cards_nvidia] # required by x11-base/xorg-server-1.19.3::gentoo[xorg] # required by x11-drivers/xf86-input-evdev-2.10.5::gentoo # required by kde-plasma/plasma-desktop-5.9.5::gentoo[input_devices_evdev] # required by kde-plasma/plasma-meta-5.9.5::gentoo # required by kde-plasma/plasma-meta (argument) >=x11-proto/kbproto-1.0.7 abi_x86_32 # required by x11-libs/libxcb-1.12-r2::gentoo # required by kde-plasma/libkscreen-5.9.5::gentoo # required by kde-plasma/kscreen-5.9.5::gentoo # required by kde-plasma/plasma-meta-5.9.5::gentoo # required by kde-plasma/plasma-meta (argument) >=x11-libs/libXdmcp-1.1.2-r1 abi_x86_32 # required by x11-drivers/nvidia-drivers-381.22::gentoo[X] # required by x11-base/xorg-drivers-1.19::gentoo[video_cards_nvidia] # required by x11-base/xorg-server-1.19.3::gentoo[xorg] # required by x11-drivers/xf86-input-evdev-2.10.5::gentoo # required by kde-plasma/plasma-desktop-5.9.5::gentoo[input_devices_evdev] # required by kde-plasma/plasma-meta-5.9.5::gentoo # required by kde-plasma/plasma-meta (argument) >=x11-libs/libXext-1.3.3 abi_x86_32 # required by x11-libs/libXext-1.3.3::gentoo # required by x11-drivers/nvidia-drivers-381.22::gentoo[tools] # required by x11-base/xorg-drivers-1.19::gentoo[video_cards_nvidia] # required by x11-base/xorg-server-1.19.3::gentoo[xorg] # required by x11-drivers/xf86-input-evdev-2.10.5::gentoo # required by kde-plasma/plasma-desktop-5.9.5::gentoo[input_devices_evdev] # required by kde-plasma/plasma-meta-5.9.5::gentoo # required by kde-plasma/plasma-meta (argument) >=x11-proto/xextproto-7.3.0 abi_x86_32 # required by x11-drivers/nvidia-drivers-381.22::gentoo[X] # required by x11-base/xorg-drivers-1.19::gentoo[video_cards_nvidia] # required by x11-base/xorg-server-1.19.3::gentoo[xorg] # required by x11-drivers/xf86-input-evdev-2.10.5::gentoo # required by kde-plasma/plasma-desktop-5.9.5::gentoo[input_devices_evdev] # required by kde-plasma/plasma-meta-5.9.5::gentoo # required by kde-plasma/plasma-meta (argument) >=sys-libs/zlib-1.2.11 abi_x86_32 # required by x11-libs/libX11-1.6.5::gentoo # required by x11-libs/libvdpau-1.1.1::gentoo # required by x11-drivers/nvidia-drivers-381.22::gentoo[X] # required by x11-base/xorg-drivers-1.19::gentoo[video_cards_nvidia] # required by x11-base/xorg-server-1.19.3::gentoo[xorg] # required by x11-drivers/xf86-input-evdev-2.10.5::gentoo # required by kde-plasma/plasma-desktop-5.9.5::gentoo[input_devices_evdev] # required by kde-plasma/plasma-meta-5.9.5::gentoo # required by kde-plasma/plasma-meta (argument) >=x11-libs/libxcb-1.12-r2 abi_x86_32 # required by x11-libs/libX11-1.6.5::gentoo # required by x11-libs/libvdpau-1.1.1::gentoo # required by x11-drivers/nvidia-drivers-381.22::gentoo[X] # required by x11-base/xorg-drivers-1.19::gentoo[video_cards_nvidia] # required by x11-base/xorg-server-1.19.3::gentoo[xorg] # required by x11-drivers/xf86-input-evdev-2.10.5::gentoo # required by kde-plasma/plasma-desktop-5.9.5::gentoo[input_devices_evdev] # required by kde-plasma/plasma-meta-5.9.5::gentoo # required by kde-plasma/plasma-meta (argument) >=x11-proto/inputproto-2.3.2 abi_x86_32 # required by x11-libs/libXau-1.0.8::gentoo # required by x11-libs/libxcb-1.12-r2::gentoo # required by kde-plasma/libkscreen-5.9.5::gentoo # required by kde-plasma/kscreen-5.9.5::gentoo # required by kde-plasma/plasma-meta-5.9.5::gentoo # required by kde-plasma/plasma-meta (argument) >=x11-proto/xproto-7.0.31 abi_x86_32 # required by x11-libs/libxcb-1.12-r2::gentoo # required by kde-plasma/libkscreen-5.9.5::gentoo # required by kde-plasma/kscreen-5.9.5::gentoo # required by kde-plasma/plasma-meta-5.9.5::gentoo # required by kde-plasma/plasma-meta (argument) >=dev-libs/libpthread-stubs-0.4 abi_x86_32 # required by x11-libs/libxcb-1.12-r2::gentoo # required by kde-plasma/libkscreen-5.9.5::gentoo # required by kde-plasma/kscreen-5.9.5::gentoo # required by kde-plasma/plasma-meta-5.9.5::gentoo # required by kde-plasma/plasma-meta (argument) >=x11-proto/xcb-proto-1.12-r2 abi_x86_32 # required by x11-libs/libXext-1.3.3::gentoo # required by x11-drivers/nvidia-drivers-381.22::gentoo[tools] # required by x11-base/xorg-drivers-1.19::gentoo[video_cards_nvidia] # required by x11-base/xorg-server-1.19.3::gentoo[xorg] # required by x11-drivers/xf86-input-evdev-2.10.5::gentoo # required by kde-plasma/plasma-desktop-5.9.5::gentoo[input_devices_evdev] # required by kde-plasma/plasma-meta-5.9.5::gentoo # required by kde-plasma/plasma-meta (argument) >=x11-libs/libX11-1.6.5 abi_x86_32 # required by x11-drivers/nvidia-drivers-381.22::gentoo[X] # required by x11-base/xorg-drivers-1.19::gentoo[video_cards_nvidia] # required by x11-base/xorg-server-1.19.3::gentoo[xorg] # required by x11-drivers/xf86-input-evdev-2.10.5::gentoo # required by kde-plasma/plasma-desktop-5.9.5::gentoo[input_devices_evdev] # required by kde-plasma/plasma-meta-5.9.5::gentoo # required by kde-plasma/plasma-meta (argument) >=x11-libs/libvdpau-1.1.1 abi_x86_32 # required by x11-libs/libX11-1.6.5::gentoo # required by x11-libs/libvdpau-1.1.1::gentoo # required by x11-drivers/nvidia-drivers-381.22::gentoo[X] # required by x11-base/xorg-drivers-1.19::gentoo[video_cards_nvidia] # required by x11-base/xorg-server-1.19.3::gentoo[xorg] # required by x11-drivers/xf86-input-evdev-2.10.5::gentoo # required by kde-plasma/plasma-desktop-5.9.5::gentoo[input_devices_evdev] # required by kde-plasma/plasma-meta-5.9.5::gentoo # required by kde-plasma/plasma-meta (argument) >=x11-proto/xf86bigfontproto-1.2.0-r1 abi_x86_32 Would you like to add these changes to your config files? [Yes/No] n !!! All ebuilds that could satisfy "sys-libs/zlib[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?, abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?]" have been masked. !!! One of the following masked packages is required to complete your request: - sys-libs/zlib-1.2.11::gentoo (masked by: ) (dependency required by "x11-drivers/nvidia-drivers-381.22::gentoo" [ebuild]) (dependency required by "x11-base/xorg-drivers-1.19::gentoo[video_cards_nvidia]" [ebuild]) (dependency required by "x11-base/xorg-server-1.19.3::gentoo[xorg]" [ebuild]) (dependency required by "x11-drivers/xf86-input-evdev-2.10.5::gentoo" [ebuild]) (dependency required by "kde-plasma/plasma-desktop-5.9.5::gentoo[input_devices_evdev]" [ebuild]) (dependency required by "kde-plasma/plasma-meta-5.9.5::gentoo" [ebuild]) (dependency required by "kde-plasma/plasma-meta" [argument]) For more information, see the MASKED PACKAGES section in the emerge man page or refer to the Gentoo Handbook. GentooX /mnt2/BACKUPs # is that the right way to install KDE on fresh Gentoo install? [Moderator edit: broke long whitespace-free lines in code tags to fix thread layout. -Hu] | For set correct CPU_FLAGS_X86 in make.conf use app-portage/cpuid2cpuflags program |
On a fresh system install I added plasma by selecting the corresponding profile. I expected that this would automatically install the plasma-meta package but I need to do it on top of that. It looked like Code: emerge -av plasma-meta These are the packages that would be merged, in order: Calculating dependencies... done! [ebuild R ] kde-plasma/plasma-meta-5.9.5:5::gentoo USE="display-manager handbook pam sddm wallpapers -bluetooth -grub -gtk -networkmanager -plymouth -pulseaudio -sdk" 0 KiB Total: 1 package (1 reinstall), Size of downloads: 0 KiB Would you like to merge these packages? [Yes/No]n No kde-apps, very clean actually. But then I noticed the missing buttons for shutdown/reboot in the kde menu, same with the plasmoid in the task bar. I have to pull the plug to shutdown. I have searched the internet and found many old complaints about this behaviour of KDE, but most of them date before 2012 and the solutions do not apply to me since they were based on bugs that are meanwhile eliminated. So where did I do something wrong? BTW, no idea what to present (consolekit etc all installed). Lokesh | Can help this ? |
AltGr does no effect by pressing. I have problems with typing the pipe symbol. I guess i depends on xorg, I try to edit 30-keyboard.conf file but no success. Code: root@GentooX2 /home # <<<<<< bash: syntax error near unexpected token `<<<' root@GentooX2 /home # cat /etc/X11/xorg.conf.d/30-keyboard.conf Section "InputClass" Identifier "keyboard-all" Driver "evdev" Option "XkbLayout" "de" Option "XkbModel" "pc105" Option "XkbRules" "xorg" # Option "XkbOptions" "grp:alt_shift_toggle,grp:switch,grp_led:scroll,compose:rwin,terminate:ctrl_alt_bksp" # Option "XkbVariant" ",qwerty" MatchIsKeyboard "on" EndSection root@GentooX2 /home # xorg.conf Code: # nvidia-xconfig: X configuration file generated by nvidia-xconfig # nvidia-xconfig: version 361.28 (buildmeister@swio-display-x64-rhel04-04) Wed Feb 3 16:27:53 PST 2016 Section "ServerLayout" Identifier "Layout0" Screen 0 "Screen0" InputDevice "Keyboard0" "CoreKeyboard" InputDevice "Mouse0" "CorePointer" EndSection Section "Files" EndSection Section "InputDevice" # generated from data in "/etc/conf.d/gpm" Identifier "Mouse0" Driver "mouse" Option "Protocol" Option "Device" "/dev/input/mice" Option "Emulate3Buttons" "no" Option "ZAxisMapping" "4 5" EndSection Section "InputDevice" # generated from default Identifier "Keyboard0" Driver "evdev" Option "CoreKeyboard" Option "XkbModel" "pc105" "type5" Option "XkbLayout" "de" EndSection Section "Monitor" Identifier "Monitor0" VendorName "Unknown" ModelName "Unknown" HorizSync 28.0 - 33.0 VertRefresh 43.0 - 72.0 Option "DPMS" EndSection Section "Device" Any tips? thx in advance Code: setxkbmap -symbols de helps to get the AltGr key working for tilde and at and so on. But after typing "setxkbmap -symbols de" I miss the keys enter and return and so on .... silly | You just have too many configuration files. Modern Xorg prefers to work without configuration. Most likely you can use KDE Settings to configure desired options. So, the simplest solution is to remove all configuration for Xorg and then configure keyboard layout via KDE Settings. Only if "no-configuration" does not work, one should start adding pieces of configuration that do desired work. In your particular case, you have section Code: Section "ServerLayout" Identifier "Layout0" Screen 0 "Screen0" InputDevice "Keyboard0" "CoreKeyboard" InputDevice "Mouse0" "CorePointer" EndSection Which says, that Xorg MUST use Keyboard0 as configuration for keyboard. So if you remove section for Keboard0 then you get error. Also, if you add InputClass section, then it is simply ignored for your keyboard, because it MUST use Keyboard0. |
Iam not sure where to start, i have recently installed gentoo on a Yoga 910 laptop. This is only happening when "show icons on desktop" option is activated. if i move an icon, it duplicates , And as you can see on the attached image, the selection rectangle is showing the same effect. If you have any idea where i have to look for, i will appreciate http://imgur.com/a/4V72Z | Here is a video showing the behavior: https://www.youtube.com/watch?v=EAWB0iO8tZE |
System: Alienware 17 R4 Problem: I can't get Optimus to work. When I run startx several things seem to go wrong and XServer shuts down. I have read through relevant chapters at /usr/share/doc/nvidia-drivers-384.47/README.bz2. I have read the gentoo wiki on optimus . I have read through the gentoo wiki on nvidia and the wiki on xorg . I am now reaching out to the community. Maybe someone knows exactly what the issue here is. Below is a list of relevant information about my current configuration. logs dmesg Xorg.0.log lspci Code: $ sudo lspci 00:00.0 Host bridge: Intel Corporation Skylake Host Bridge/DRAM Registers (rev 07) 00:01.0 PCI bridge: Intel Corporation Skylake PCIe Controller (x16) (rev 07) 00:01.2 PCI bridge: Intel Corporation Skylake PCIe Controller (x4) (rev 07) 00:02.0 VGA compatible controller: Intel Corporation HD Graphics 530 (rev 06) 00:04.0 Signal processing controller: Intel Corporation Skylake Processor Thermal Subsystem (rev 07) 00:14.0 USB controller: Intel Corporation Sunrise Point-H USB 3.0 xHCI Controller (rev 31) 00:14.2 Signal processing controller: Intel Corporation Sunrise Point-H Thermal subsystem (rev 31) 00:16.0 Communication controller: Intel Corporation Sunrise Point-H CSME HECI #1 (rev 31) 00:17.0 SATA controller: Intel Corporation Sunrise Point-H SATA controller [AHCI mode] (rev 31) 00:1c.0 PCI bridge: Intel Corporation Sunrise Point-H PCI Express Root Port #1 (rev f1) 00:1c.4 PCI bridge: Intel Corporation Sunrise Point-H PCI Express Root Port #5 (rev f1) 00:1c.5 PCI bridge: Intel Corporation Sunrise Point-H PCI Express Root Port #6 (rev f1) 00:1d.0 PCI bridge: Intel Corporation Sunrise Point-H PCI Express Root Port #9 (rev f1) 00:1f.0 ISA bridge: Intel Corporation Sunrise Point-H LPC Controller (rev 31) 00:1f.2 Memory controller: Intel Corporation Sunrise Point-H PMC (rev 31) 00:1f.3 Audio device: Intel Corporation Sunrise Point-H HD Audio (rev 31) 00:1f.4 SMBus: Intel Corporation Sunrise Point-H SMBus (rev 31) 01:00.0 VGA compatible controller: NVIDIA Corporation GP104M [GeForce GTX 1070 Mobile] (rev a1) 3c:00.0 Ethernet controller: Qualcomm Atheros Killer E2400 Gigabit Ethernet Controller (rev 10) 3d:00.0 Network controller: Qualcomm Atheros QCA6174 802.11ac Wireless Network Adapter (rev 32) 3e:00.0 Non-Volatile memory controller: Toshiba America Info Systems Device 0115 (rev 01) From the kernel Code: $ grep -i EXTRA_FIRMWARE /usr/src/linux/.config CONFIG_EXTRA_FIRMWARE="" $ grep -i drm /usr/src/linux/.config CONFIG_DRM=y CONFIG_DRM_MIPI_DSI=y # CONFIG_DRM_DP_AUX_CHARDEV is not set CONFIG_DRM_KMS_HELPER=y CONFIG_DRM_KMS_FB_HELPER=y CONFIG_DRM_FBDEV_EMULATION=y # CONFIG_DRM_LOAD_EDID_FIRMWARE is not set # CONFIG_DRM_I2C_CH7006 is not set # CONFIG_DRM_I2C_SIL164 is not set # CONFIG_DRM_I2C_NXP_TDA998X is not set # CONFIG_DRM_RADEON is not set # CONFIG_DRM_AMDGPU is not set # CONFIG_DRM_NOUVEAU is not set CONFIG_DRM_I915=y CONFIG_DRM_I915_PRELIMINARY_HW_SUPPORT=y CONFIG_DRM_I915_USERPTR=y # CONFIG_DRM_I915_GVT is not set # CONFIG_DRM_VGEM is not set # CONFIG_DRM_VMWGFX is not set # CONFIG_DRM_GMA500 is not set # CONFIG_DRM_UDL is not set # CONFIG_DRM_AST is not set # CONFIG_DRM_MGAG200 is not set # CONFIG_DRM_CIRRUS_QEMU is not set # CONFIG_DRM_QXL is not set # CONFIG_DRM_BOCHS is not set CONFIG_DRM_PANEL=y CONFIG_DRM_BRIDGE=y # CONFIG_DRM_ANALOGIX_ANX78XX is not set # CONFIG_DRM_LEGACY is not set $ grep -i nvidia /usr/src/linux/.config # CONFIG_NET_VENDOR_NVIDIA is not set # CONFIG_FB_NVIDIA is not set $ grep -i acpi /usr/src/linux/.config CONFIG_X86_64_ACPI_NUMA=y # Power management and ACPI options 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_DEBUGGER is not set CONFIG_ACPI_SLEEP=y # CONFIG_ACPI_PROCFS_POWER is not set CONFIG_ACPI_REV_OVERRIDE_POSSIBLE=y # CONFIG_ACPI_EC_DEBUGFS is not set 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_PROCESSOR=y CONFIG_ACPI_HOTPLUG_CPU=y # CONFIG_ACPI_PROCESSOR_AGGREGATOR is not set CONFIG_ACPI_THERMAL=y CONFIG_ACPI_NUMA=y # CONFIG_ACPI_CUSTOM_DSDT is not set CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE=y CONFIG_ACPI_TABLE_UPGRADE=y # CONFIG_ACPI_DEBUG is not set # CONFIG_ACPI_PCI_SLOT is not set CONFIG_ACPI_CONTAINER=y CONFIG_ACPI_HOTPLUG_IOAPIC=y # CONFIG_ACPI_SBS is not set # CONFIG_ACPI_HED is not set # CONFIG_ACPI_BGRT is not set # CONFIG_ACPI_REDUCED_HARDWARE_ONLY is not set # CONFIG_ACPI_NFIT is not set CONFIG_HAVE_ACPI_APEI=y CONFIG_HAVE_ACPI_APEI_NMI=y # CONFIG_ACPI_APEI is not set # CONFIG_ACPI_EXTLOG is not set # CONFIG_ACPI_CONFIGFS is not set CONFIG_X86_ACPI_CPUFREQ=y CONFIG_X86_ACPI_CPUFREQ_CPB=y # CONFIG_HOTPLUG_PCI_ACPI is not set CONFIG_PNPACPI=y CONFIG_ATA_ACPI=y # CONFIG_PATA_ACPI is not set CONFIG_ACPI_I2C_OPREGION=y # ACPI drivers # ACPI drivers # CONFIG_SENSORS_ACPI_POWER is not set # ACPI INT340X thermal drivers # CONFIG_MFD_INTEL_LPSS_ACPI is not set CONFIG_DMA_ACPI=y # CONFIG_THINKPAD_ACPI is not set # CONFIG_ACPI_WMI is not set # CONFIG_ACPI_CMPC is not set Xorg.conf Code: Section "ServerLayout" Identifier "layout" Screen 0 "nvidia" Inactive "intel" EndSection Section "Device" Identifier "nvidia" Driver "nvidia" BusID "PCI:1:0:0" EndSection Section "Screen" Identifier "nvidia" Device "nvidia" Option "AllowEmptyIntialConfiguration" EndSection Section "Device" Identifier "intel" Driver "modesetting" BusID "PCI:0:2:0" EndSection Section "Screen" Identifier "intel" Device "intel" EndSection .xinitrc Code: $ cat ~/.xinitrc xrandr --setprovideroutputsource modesetting NVIDIA-0 xrandr --auto exec fvwm2 | dustfinger, You have the teltale signs of Optimus, nVidia can't see a display, intel and nVidia GPUs but ... a few high end 'gaming laptops' actually have two complete independent graphics setups. That is, they look like Optimus but are not. Such laptops allow you to choose GPUs in the BIOS. Do you have that option? The Intel GPU is active now. If you move the xorg.conf and .xinitrc out of the way, it should just work. If your system really is non Optimus, choose the nVidia GPU in the BIOS and Put Xorg.conf Code: Section "Device" Identifier "nvidia" Driver "nvidia" BusID "PCI:1:0:0" EndSection in xorg.conf and again, it should just work. |
Error: could not insert 'nvidia' :Exec format error is the error when i try startx this is post update with the new kernel 3.5.7 and with udev 1.9 I have tried emerge -e xorg-server and emerge -e nvidia-drivers still get the same error. Problem was it was compiled for a newer kernel and I was booting into the older kernel. Updated grub for the new kernel. Of course my wifi module doesn't work w/ the newer kernel, but progress is wing made. | it was compiled for a different kernel I'm assuming? |
Hello! I'm trying to run Gentoo as VirtualBox guest. For that I have emerged virtualbox-guest-additions-5.1.22 At first Xorg started, but additions didn't work because of vboxvideo kernel module Here's the interesting part of dmesg Code: [ 3.231898] vboxguest: misc device minor 57, IRQ 20, I/O port d020, MMIO at 00000000f0400000 (size 0x400000) [ 3.231899] vboxguest: Successfully loaded version 5.1.22 (interface 0x00010004) [ 3.266371] vboxvideo: Unknown symbol ttm_bo_mmap (err 0) [ 3.266382] vboxvideo: Unknown symbol ttm_bo_global_release (err 0) [ 3.266385] vboxvideo: Unknown symbol ttm_pool_unpopulate (err 0) [ 3.266388] vboxvideo: Unknown symbol ttm_bo_manager_func (err 0) [ 3.266390] vboxvideo: Unknown symbol ttm_bo_global_init (err 0) [ 3.266395] vboxvideo: Unknown symbol ttm_bo_device_release (err 0) [ 3.266403] vboxvideo: Unknown symbol ttm_bo_kunmap (err 0) [ 3.266405] vboxvideo: Unknown symbol ttm_bo_del_sub_from_lru (err 0) [ 3.266409] vboxvideo: Unknown symbol ttm_bo_device_init (err 0) [ 3.266410] vboxvideo: Unknown symbol ttm_bo_init_mm (err 0) [ 3.266410] vboxvideo: Unknown symbol ttm_bo_dma_acc_size (err 0) [ 3.266413] vboxvideo: Unknown symbol ttm_tt_init (err 0) [ 3.266414] vboxvideo: Unknown symbol ttm_bo_kmap (err 0) [ 3.266418] vboxvideo: Unknown symbol ttm_bo_add_to_lru (err 0) [ 3.266420] vboxvideo: Unknown symbol ttm_bo_unref (err 0) [ 3.266421] vboxvideo: Unknown symbol ttm_mem_global_release (err 0) [ 3.266422] vboxvideo: Unknown symbol ttm_mem_global_init (err 0) [ 3.266423] vboxvideo: Unknown symbol ttm_bo_default_lru_tail (err 0) [ 3.266424] vboxvideo: Unknown symbol ttm_bo_default_swap_lru_tail (err 0) [ 3.266429] vboxvideo: Unknown symbol ttm_bo_init (err 0) [ 3.266430] vboxvideo: Unknown symbol ttm_bo_validate (err 0) [ 3.266433] vboxvideo: Unknown symbol ttm_bo_move_memcpy (err 0) [ 3.266435] vboxvideo: Unknown symbol ttm_tt_fini (err 0) [ 3.266436] vboxvideo: Unknown symbol ttm_pool_populate (err 0) It appears, that vboxvideo depends on DRM_TTM module, which you can't turn on youself. It's enabled automatically if you enable any module, which depends on it, in make menuconfig. Code: config DRM_TTM tristate depends on DRM help GPU memory management subsystem for devices with multiple GPU memory types. Will be enabled automatically if a device driver uses it. Those modules are - ast, cirrus, mgag200, nouveau, radeon, vmwgfx. So, unless you enable one of these modules, you can't use virtualbox-guest-additions . I have decided to enable vmwgfx (at leas it has something in common wiht virtualbox) and dmesg became better. The messages about unknown symbols are gone. Also, console window became larger, so I'm sure vboxvideo actually started working. But Xorg is not starting now. Here's my /var/log/Xorg.log.0 file Code: [ 853.555] X.Org X Server 1.19.2 Release Date: 2017-03-02 [ 853.558] X Protocol Version 11, Revision 0 [ 853.558] Build Operating System: Linux 4.9.16-gentoo x86_64 Gentoo [ 853.561] Current Operating System: Linux gentoo_vm 4.9.16-gentoo #12 SMP Wed May 24 04:51:24 -00 2017 x86_64 [ 853.561] Kernel command line: BOOT_IMAGE=/vmlinuz-4.9.16-gentoo root=/dev/sda4 ro [ 853.563] Build Date: 23 May 2017 01:20:36PM [ 853.564] [ 853.564] Current version of pixman: 0.34.0 [ 853.566] Before reporting problems, check http://wiki.x.org to make sure that you have the latest version. [ 853.566] Markers: (--) probed, (**) from config file, (==) default setting, (++) from command line, (!!) notice, (II) informational, (WW) warning, (EE) error, (NI) not implemented, (??) unknown. [ 853.569] (==) Log file: "/var/log/Xorg.0.log", Time: Wed May 24 05:06:08 2017 [ 853.570] (==) Using config directory: "/etc/X11/xorg.conf.d" [ 853.571] (==) Using system config directory "/usr/share/X11/xorg.conf.d" [ 853.571] (==) ServerLayout "Default Layout" [ 853.571] (**) |-->Screen "Screen-vboxvideo" (0) [ 853.571] (**) | |-->Monitor "<default monitor>" [ 853.571] (**) | |-->Device "Device-vboxvideo" [ 853.571] (==) No monitor specified for screen "Screen-vboxvideo". Using a default monitor configuration. [ 853.571] (==) Automatically adding devices [ 853.571] (==) Automatically enabling devices [ 853.571] (==) Automatically adding GPU devices [ 853.571] (==) Max clients allowed: 256, resource mask: 0x1fffff [ 853.571] (WW) The directory "/usr/share/fonts/TTF/" does not exist. [ 853.571] Entry deleted from font path. [ 853.571] (WW) The directory "/usr/share/fonts/OTF/" does not exist. [ 853.571] Entry deleted from font path. [ 853.571] (WW) The directory "/usr/share/fonts/Type1/" does not exist. [ 853.571] Entry deleted from font path. [ 853.571] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/100dpi/". [ 853.571] Entry deleted from font path. [ 853.571] (Run 'mkfontdir' on "/usr/share/fonts/100dpi/"). [ 853.571] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/75dpi/". [ 853.571] Entry deleted from font path. [ 853.571] (Run 'mkfontdir' on "/usr/share/fonts/75dpi/"). [ 853.571] (==) FontPath set to: /usr/share/fonts/misc/ [ 853.571] (==) ModulePath set to "/usr/lib64/xorg/modules" [ 853.571] (II) The server relies on udev to provide the list of input devices. If no devices become available, reconfigure udev or disable AutoAddDevices. [ 853.571] (II) Loader magic: 0x813c80 [ 853.571] (II) Module ABI versions: [ 853.571] X.Org ANSI C Emulation: 0.4 [ 853.571] X.Org Video Driver: 23.0 [ 853.571] X.Org XInput driver : 24.1 [ 853.571] X.Org Server Extension : 10.0 [ 853.571] (II) xfree86: Adding drm device (/dev/dri/card0) [ 853.574] (--) PCI:*(0:0:2:0) 80ee:beef:0000:0000 rev 0, Mem @ 0xe0000000/16777216, BIOS @ 0x????????/131072 [ 853.574] (II) LoadModule: "glx" [ 853.574] (II) Loading /usr/lib64/xorg/modules/extensions/libglx.so [ 853.575] (II) Module glx: vendor="X.Org Foundation" [ 853.575] compiled for 1.19.2, module version = 1.0.0 [ 853.575] ABI class: X.Org Server Extension, version 10.0 [ 853.575] (II) LoadModule: "vboxvideo" [ 853.575] (II) Loading /usr/lib64/xorg/modules/drivers/vboxvideo_drv.so [ 853.575] (II) Module vboxvideo: vendor="Oracle Corporation" [ 853.575] compiled for 1.19.2, module version = 1.0.1 [ 853.575] Module class: X.Org Video Driver [ 853.575] ABI class: X.Org Video Driver, version 23.0 [ 853.575] (**) Load address of symbol "VBOXVIDEO" is 0x7f08e0e22380 [ 853.575] (II) VBoxVideo: guest driver for VirtualBox: vbox [ 853.575] (--) using VT number 7 [ 853.578] (II) vboxvideo: kernel driver found, not loading. [ 853.578] (EE) No devices detected. [ 853.578] (EE) Fatal server error: [ 853.578] (EE) no screens found(EE) [ 853.578] (EE) Please consult the The X.Org Foundation support at http://wiki.x.org for help. [ 853.578] (EE) Please also check the log file at "/var/log/Xorg.0.log" for additional information. [ 853.578] (EE) [ 853.583] (EE) Server terminated with error (1). Closing log file. So, kernel driver is found, but no devices detected. Does anyone know what to do about that? I have virtualbox-guest-additions.5.1.22 installed and kernel version 4.9.16 | poxu, Can we have a clean self consistent data set to work with please? All from your guest system. lspci the outputut of dmesg your kernel .config the content of /var/log/Xorg.0.log lspci will fit into a post, the other things need to be go to a pastebin. wgetpaste is your friend. The output of Code: uname -a and Code: ls -l /boot might be interesting too. |
Hi, I've a strange problem, as user, with desktops. I can't move windows between different workspaces. If I try to move, system freeze for 10 secs. and I see an error in the journal. Code: gnome-shell[4034]: The program 'gnome-shell' received an X Window System error. This probably reflects a bug in the program. The error was 'BadCursor (invalid Cursor parameter)'. (Details: serial 107902 error_code 6 request_code 95 (core protocol) minor_code 0) (Note to programmers: normally, X errors are reported asynchronously; that is, you will receive the error a while after causing it. To debug your program, run it with the GDK_SYNCHRONIZE environment variable to change this behavior. You can then get a meaningful backtrace from your debugger if you break on the gdk_x_error() function.) giu 29 10:41:20 webandhardware kernel: traps: gnome-shell[4034] trap int3 ip:7fc6efc61121 sp:7ffd94826cd0 error:0 I'm trying to find something in google or in the forum, but nothing is the same problem. | Does this happen with any window? and does this happen on a just booted system or are you running other software? |
Hello, I changed every place I know from english to german keyboard layout but unfortunately only the login of GDM still persists in english. How can I change this to german too? Kind Regards Richard | No idea how gdm has evolve, if it's still using xorg and not some weird drivers, here's how to make an xorg in french (adapt with your legion code) keyboard content of /etc/X11/xorg.conf.d/97-evdev.conf Code: Section "InputClass" Identifier "keyboard-all" MatchIsKeyboard "on" MatchDevicePath "/dev/input/event*" Driver "evdev" Option "XkbLayout" "fr" Option "XkbRules" "xorg" Option "XkbModel" "pc105" Option "AutoServerLayout" "on" EndSection |
I followed the guide to install Xorg and XFCE but when I type in "startx" it fails to load properly. Here is the /var/log/Xorg.0.log file: https://paste.pound-python.org/show/R3RKiiyGaTvK4snjeaKO/ I'm using an integrated intel graphics card and I configured it according to the link provided by the Xorg guide. | akim22, You are not using your correct kernel then. Did you forget to mount /boot for the kernel install? Look at Code: uname -a Linux NeddySeagoon_Static 4.12.0-gentoo #2 SMP PREEMPT Mon Jul 10 11:02:16 BST 2017 x86_64 AMD Phenom(tm) II X6 1090T Processor AuthenticAMD GNU/Linux The date and time is the build time ef the running kernel. If you have made another kernel since that time, you are not using it now. |
I love Gentoo but I must admit I've noticed that Wayland isn't so well-functioning under it, compared to how well it works under say Arch Linux (when we control for hardware, that is). To be precise whenever I try to start a Wayland session whether it be Sway or Plasma on Wayland using SDDM, it immediately crashes. On Arch Linux this issue does not occur and all Wayland sessions launch fine at least and with the exception of Plasma on Wayland they run flawlessly. Is this a bug I should report at Gentoo Bugzilla? I ask because frankly it's not like as though I have an awful lot of information to report to them (in order to help them fix this bug), unless you's can tell me about some logs I can attach that I'm not aware of. My graphics cards, if relevant, are NVIDIA 740M and Intel integrated graphics 4th generation. | Do you use systemd or openrc? |
Hi, I'm using a Thinkpad W530 running Gentoo + SLIM + Awesome. Every time after I log in into Awesome I need to unplug and plug again my USB mouse (tried different ones) When I logout and login again I don't have the problem, the mouse is working. Issue only occur after first sign in. Xorg.0.log: https://bpaste.net/show/53fc14c894f7 I found this in the log but not sure how to interpret it : Code: 327 [ 10.950] (II) No input driver specified, ignoring this device. 328 [ 10.950] (II) This device may have been added with another device file. .config: https://bpaste.net/show/7f195f65565f I tried to figure it out by myself but I can't make sense of it. I thought maybe usb power saving option? I looked in my kernel config but it seems ok to me. Any hint welcome. Thanks by advance. | samidarko, Set up so that your system starts at the console. Code: emerge gpm which is the console mouse driver and add gpm to the default runlevel so it starts at boot. Reboot. If the console mouse works, your kernel is good and the problem is Xorg or window manager related. If the console mouse doesn't work, test with another pointer before you conclude that its a kernel issue. |
EDIT: changed title to better reflect the identified issue Hello following a nightmarish update I am experiencing a strange problem: the GUI does not start automatically. The boot process ends up at the command line, and after logging in I can start plasma entering startx with no problems. But: it won't start by itself! I am using lightdm as display manager and these are the current settings: Code: /etc/lightdm/lightdm.conf Under [Seat:*] greeter-session=lightdm-kde-greeter the lightdm-kde-greeter file is in /etc/lightdm /etc/conf.d/xdm DISPLAYMANAGER="lightdm" /etc/inittab x:a:once:/etc/X11/startdm.sh /etc/X11/xinit/xinitrc exec startkde # in the very first line of the file These settings should trigger an immediate launch of xserver, lightdm etc, at boot. But it does not. Needless to add that the Xorg log is of no help, not started ==> no log. Using startx, everything jolly good. Am I missing something? Thanks, Lokesh | xdm is in default runlevel? lightdm configured in /etc/conf.d/xdm? |
I have just made a minimum install of Gentoo, which I have never used before. As my display manager I have installed SDDM and Xmonad as my window manager. I have not received any sort of error messages during the installation, but I just can`t configure xmonad. I have been following all this link https://beginners-guide-to-xmonad.readthedocs.io/intro.html , which seems to be a reference for beginners in xmonad (which is my case), but the environment seems totally unresponsive of the changes I made. I have installed xmobar, xmonad-contrib, stonalonetray, have created the .xmonad directory and also the xmonad.hs file inside of it. I have copied the contents of the xmonad.hs file from the link https://beginners-guide-to-xmonad.readthedocs.io/configure_xmonadhs.html into my xmonad.hs file and nothing changes, even after reboot. I get errors when I follow the suggestion in the link https://wiki.gentoo.org/wiki/Xmonad and run the commands xmonad --recompile and got nothing when I run xmonad --restart: Code: vinicius@mossadegh ~ $ xmonad --recompile xmonad: /home/vinicius/.xmonad/xmonad.errors: openFile: permission denied (Permission denied) vinicius@mossadegh ~ $ xmonad --restart vinicius@mossadegh ~ $ I dont know if this is of any help, but here is my emerge --info output: emerge --info Code: !!! SYNC setting found in make.conf. This setting is Deprecated and no longer used. Please ensure your 'sync-type' and 'sync-uri' are set correctly in /etc/portage/repos.conf/gentoo.conf Portage 2.3.5 (python 3.4.5-final-0, default/linux/amd64/13.0/desktop, gcc-5.4.0, glibc-2.23-r4, 4.9.16-gentoo x86_64) ================================================================= System uname: Linux-4.9.16-gentoo-x86_64-Intel-R-_Core-TM-_i7-3612QM_CPU_@_2.10GHz-with-gentoo-2.3 KiB Mem: 8034224 total, 7042984 free KiB Swap: 0 total, 0 free Timestamp of repository gentoo: Mon, 19 Jun 2017 16:00:01 +0000 sh bash 4.3_p48-r1 ld GNU ld (Gentoo 2.28 p1.2) 2.28 app-shells/bash: 4.3_p48-r1::gentoo dev-lang/perl: 5.24.1-r2::gentoo dev-lang/python: 2.7.12::gentoo, 3.4.5::gentoo dev-util/cmake: 3.7.2::gentoo dev-util/pkgconfig: 0.28-r2::gentoo sys-apps/baselayout: 2.3::gentoo sys-apps/openrc: 0.26.3::gentoo sys-apps/sandbox: 2.10-r3::gentoo sys-devel/autoconf: 2.13::gentoo, 2.69::gentoo sys-devel/automake: 1.15-r2::gentoo sys-devel/binutils: 2.28-r2::gentoo sys-devel/gcc: 5.4.0-r3::gentoo sys-devel/gcc-config: 1.7.3::gentoo sys-devel/libtool: 2.4.6-r3::gentoo sys-devel/make: 4.2.1::gentoo sys-kernel/linux-headers: 4.4::gentoo (virtual/os-headers) sys-libs/glibc: 2.23-r4::gentoo Repositories: gentoo location: /usr/portage sync-type: rsync sync-uri: rsync://rsync.gentoo.org/gentoo-portage priority: -1000 ACCEPT_KEYWORDS="amd64" ACCEPT_LICENSE="* -@EULA" CBUILD="x86_64-pc-linux-gnu" CFLAGS="-O2 -pipe" CHOST="x86_64-pc-linux-gnu" CONFIG_PROTECT="/etc /usr/lib64/libreoffice/program/sofficerc" 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 -pipe" DISTDIR="/usr/portage/distfiles" FCFLAGS="-O2 -pipe" FEATURES="assume-digests binpkg-logs config-protect-if-modified distlocks ebuild-locks fixlafiles merge-sync 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" GENTOO_MIRRORS="rsync://gentoo.c3sl.ufpr.br/gentoo/ http://gentoo.c3sl.ufpr.br/ ftp://gentoo.c3sl.ufpr.br/gentoo/ ftp://ftp.las.ic.unicamp.br/pub/gentoo/ http://www.las.ic.unicamp.br/pub/gentoo/" 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 alsa amd64 berkdb bindist bluetooth branding bzip2 cairo cdda cdr cli consolekit cracklib crypt cups cxx dbus dri dts dvd dvdr emboss encode exif fam firefox flac fortran gdbm gif glamor gpm gtk iconv ipv6 jpeg lcms ldap libnotify mad mng modules mp3 mp4 mpeg multilib ncurses nls nptl ogg opengl openmp pam pango pcre pdf png policykit ppds pulseaudio qt3support qt4 readline sdl seccomp session spell ssl startup-notification svg tcpd tiff truetype udev udisks unicode upower usb vorbis wxwidgets x264 xattr xcb xml xv xvid zlib" ABI_X86="64" 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="kexi words flow plan sheets stage tables krita karbon braindump author" COLLECTD_PLUGINS="df interface irq load memory rrdtool swap syslog" CPU_FLAGS_X86="mmx sse sse2 mmxext" 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="evdev synaptics" KERNEL="linux" LCD_DEVICES="bayrad cfontz cfontz633 glk hd44780 lb216 lcdm001 mtxorb ncurses text" LIBREOFFICE_EXTENSIONS="presenter-console presenter-minimizer" OFFICE_IMPLEMENTATION="libreoffice" PHP_TARGETS="php5-6" PYTHON_SINGLE_TARGET="python3_4" PYTHON_TARGETS="python2_7 python3_4" RUBY_TARGETS="ruby21 ruby22" USERLAND="GNU" VIDEO_CARDS="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, EMERGE_DEFAULT_OPTS, INSTALL_MASK, LANG, LC_ALL, PORTAGE_BUNZIP2_COMMAND, PORTAGE_COMPRESS, PORTAGE_COMPRESS_FLAGS, PORTAGE_RSYNC_EXTRA_OPTS, USE_PYTHON Thank you all for your attention! [Moderator edit: added [c ode] tags to preserve output layout; fixed url reference confused by trailing comma; switched http: to https: for readthedocs. -Hu] | saturnalia0 wrote: > openFile: permission denied That seems to be your problem... Who is the owner of the configuration file? Use `ls -l` to find out and `chown vinicius:vinicius /path/to/the/file` (as the owner of the file, probably root) to set it to your user. If you installed xmonad with Portage I think you have to set up hooks with Portage to patch it every time it is upgraded since you configure it by editing a source file and recompiling, and that will change every time you upgrade... At least that's how it was with dwm when I installed it with Portage. Which, by the way, is an extremely idiotic way of doing it - just clone xmonad/dwm from git on your home folder and build it yourself in there. That's what I do with dwm, which is a finished software so there is no point in having a package manager deal with it. Thank you very much Saturnalia0, that was it!! I deleted the folder .xmonad and rewrote it as user instead of root and it worked. Thank you! Quote: By the way may I suggest using dwm instead of xmonad? xmonad is just a Haskell clone of dwm, which is infinitely lighter dependency-wise (it has none, except gcc and xlib which you already have), more responsive, and IMO easier to configure (just for being in C instead of Haskell). In fact I became interested in xmonad because of haskell mostly. I am about to invest some time to learn haskell and it made sense to use a window manager writen on haskell, which would "force me" to be permanently in contact with the language. Also I became tired of Mate, Gnome, LXDE, etc..., I wanted a window manager that I could fully understand and configure, and xmonad seems seems to provide that. |
I'm using one of those extension (macro) in libreoffice which converts number to text: numbertext-0.9.5.oxt So for example in a spreadsheet I have formula =MONEYTEXT(E34,"CAD") and it gives me: Err.504 (Function parameter is not valid, for example, text instead of a number, or a domain reference instead of cell reference.) which is impossible as it worked before. I just upgraded to: libreoffice-5.2.7.2 and the formula above worked fine in: libreoffice-5.2.3.3-r1 (but this ver. is no longer in portage). | From man eshowkw : man eshowkw: OPTIONS -O | --overlays Search overlays (default: False) Try passing --overlays . Alternatively, just tell Portage to pretend-install the version you want. If it shows an error, you have more configuration changes to make. Otherwise, it's ready to try. |
Hello there. After migrating to the KDE5 I cannot control brightness of my notebook backlight through standard means, it works manually through /sys/... but the battery widget reports that backlight control is unavailable. Is there some obscure dependency I am missing? Cheers. | Do you have powerdevil installed, and if so which version? Do you use systemd, and how do you launch your Plasma session? |
firefox-bin-45.8.0 form entry memorization worked OK; after upgrade to firefox-bin-52.2.0 it is not working. In: Preference --> Privacy "Remember search and form history" is enabled But Firefox is not memorizing entries. Is there other setting I missed? | Joseph_sys wrote: firefox-bin-45.8.0 form entry memorization worked OK; after upgrade to firefox-bin-52.2.0 it is not working. In: Preference --> Privacy "Remember search and form history" is enabled But Firefox is not memorizing entries. Is there other setting I missed? 52.x was a step back - with 54. I'm fine here. |
Hi, I have cups configured to use our office cups server. Using browsers (chromium, Firefox) and command line I'm able to see all office printers and use them. However when I open kate / Gwenview / etc I see only the PDF printer. What am I missing? Thanks in advance, Doron | USE=cups globally enabled? |
Trying to get X running on a new machine (Razer Blade Stealth). Seems most people on the internets are using Intel's i915 driver for this...(although I suspect i965 might also work), I've read an tried to match the Intel article: https://wiki.gentoo.org/wiki/Intel I suspect, I've messed something up in the kernel, as now I have super big generic console font on boot, which was super tiny on this 4k display before I started mucking with the kernel settings/drivers. Code: [ 45.921] (II) LoadModule: "fbdev" [ 45.922] (WW) Warning, couldn't open module fbdev [ 45.922] (II) UnloadModule: "fbdev" [ 45.922] (II) Unloading fbdev [ 45.922] (EE) Failed to load module "fbdev" (module does not exist, 0) [ 45.922] (II) LoadModule: "vesa" [ 45.922] (WW) Warning, couldn't open module vesa [ 45.922] (II) UnloadModule: "vesa" [ 45.922] (II) Unloading vesa [ 45.922] (EE) Failed to load module "vesa" (module does not exist, 0) Code: [ 47.964] intel: waited 2020 ms for i915.ko driver to load [ 47.965] (EE) open /dev/dri/card0: No such file or directory [ 47.965] (WW) Falling back to old probe method for modesetting [ 47.965] (EE) open /dev/dri/card0: No such file or directory [ 47.965] (EE) Screen 0 deleted because of no matching config section. [ 47.965] (II) UnloadModule: "modesetting" [ 47.965] (EE) Device(s) detected, but none match those in the config file. [ 47.965] (EE) Fatal server error: [ 47.965] (EE) no screens found(EE) [ 47.965] (EE) Please consult the The X.Org Foundation support at http://wiki.x.org for help. [ 47.965] (EE) Please also check the log file at "/var/log/Xorg.0.log" for additional information. [ 47.965] (EE) [ 47.966] (EE) Server terminated with error (1). Closing log file. .config: Code: € grep FRAME .config CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES=y CONFIG_SCHED_OMIT_FRAME_POINTER=y CONFIG_FRAME_VECTOR=y CONFIG_FRAMEBUFFER_CONSOLE=y CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY=y CONFIG_FRAMEBUFFER_CONSOLE_ROTATION=y CONFIG_FRAME_WARN=1024 CONFIG_ARCH_WANT_FRAME_POINTERS=y CONFIG_FRAME_POINTER=y Code: € grep AGP .config CONFIG_AGP=y # CONFIG_AGP_AMD64 is not set CONFIG_AGP_INTEL=y # CONFIG_AGP_SIS is not set # CONFIG_AGP_VIA is not set Code: € grep KMS .config CONFIG_DRM_KMS_HELPER=y CONFIG_DRM_KMS_FB_HELPER=y Code: € grep DEVTMPFS .config CONFIG_DEVTMPFS=y CONFIG_DEVTMPFS_MOUNT=y Code: € grep FB .config | grep -v '^#' CONFIG_IFB=m CONFIG_DRM_KMS_FB_HELPER=y CONFIG_DRM_FBDEV_EMULATION=y CONFIG_FB=y CONFIG_FB_CMDLINE=y CONFIG_FB_NOTIFY=y CONFIG_FB_CFB_FILLRECT=y CONFIG_FB_CFB_COPYAREA=y CONFIG_FB_CFB_IMAGEBLIT=y CONFIG_FB_SYS_FILLRECT=y CONFIG_FB_SYS_COPYAREA=y CONFIG_FB_SYS_IMAGEBLIT=y CONFIG_FB_SYS_FOPS=y CONFIG_FB_DEFERRED_IO=y CONFIG_FB_MODE_HELPERS=y CONFIG_FB_TILEBLITTING=y Code: € grep DRM .config | grep -v '^#' CONFIG_DRM=y CONFIG_DRM_MIPI_DSI=y CONFIG_DRM_KMS_HELPER=y CONFIG_DRM_KMS_FB_HELPER=y CONFIG_DRM_FBDEV_EMULATION=y CONFIG_DRM_I2C_CH7006=m CONFIG_DRM_I2C_SIL164=m CONFIG_DRM_I915=y CONFIG_DRM_I915_USERPTR=y CONFIG_DRM_PANEL=y CONFIG_DRM_BRIDGE=y Code: € grep DEVTMPFS .config CONFIG_DEVTMPFS=y CONFIG_DEVTMPFS_MOUNT=y Code: € groups wheel audio video usb users Code: € cat /etc/portage/make.conf VIDEO_CARDS="intel i915" INPUT_DEVICES="evdev synaptics" USE="acl bindist ssl X alsa -pulseaudio" | Probably the correct vide card is i965 not i915 |
Since Gentoo moved to KDE Plasma 5, I've decided I really don't need to have all of it on my system any more, and uninstalled all KDE-related packages. There are, however, a few KDE applications I use regularly (particularly Okular, KTorrent and Digikam), so I reinstalled just those apps in order to get a minimal set of dependencies. The applications themselves work fine with this setup, but most of the icons appear to be missing. I've installed kde-frameworks/breeze-icons hoping this would "magically" fix it, but that is not the case. I'm guessing it's just a matter of editing the right configuration file, but I have no idea which file that is. Does anyone know how to get icons back in KDE5 applications without actually installing all of KDE5? | Install x11-misc/qt5ct. This sets an environment variable QT_QPA_PLATFORMTHEME=qt5ct in /etc/env.d. Then use qt5ct to choose icons/colors/fonts. |
I am trying to use lwm for the user. In my .xinitrc file: Code: exec lwm When I type startx: Code: X.Org X Server 1.19.3 Release Date: 2017-03-15 X Protocol Version 11, Revision 0 Build Operating System: Linux 4.9.16-gentoo x86_64 Gentoo Current Operating System: Linux craptop 4.9.16-gentoo #2 SMP Fri Jun 16 22:18:48 CDT 2017 x86_64 Kernel command line: BOOT_IMAGE=/boot/vmlinuz-4.9.16-gentoo root=UUID=1b2949c5-ea56-40d6-bf44-2a3cf2194aba ro Build Date: 16 June 2017 09:47:25PM Current version of pixman: 0.34.0 Before reporting problems, check http://wiki.x.org to make sure that you have the latest version. Markers: (--) probed, (**) from config file, (==) default setting, (++) from command line, (!!) notice, (II) informational, (WW) warning, (EE) error, (NI) not implemented, (??) unknown. (==) Log file: "/var/log/Xorg.2.log", Time: Sat Jun 17 13:39:01 2017 (==) Using config directory: "/etc/X11/xorg.conf.d" (==) Using system config directory "/usr/share/X11/xorg.conf.d" (II) [KMS] Kernel modesetting enabled. The XKEYBOARD keymap compiler (xkbcomp) reports: > Error: Cannot open "/tmp/server-2.xkm" to write keyboard description > Exiting The XKEYBOARD keymap compiler (xkbcomp) reports: > Error: Cannot open "/tmp/server-2.xkm" to write keyboard description > Exiting XKB: Failed to compile keymap Keyboard initialization failed. This could be a missing or incorrect setup of xkeyboard-config. (EE) Fatal server error: (EE) Failed to activate virtual core keyboard: 2(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.2.log" for additional information. (EE) (II) AIGLX: Suspending AIGLX clients for VT switch (EE) Server terminated with error (1). Closing log file. Keyboard errors... ok I tried to find xkbcomp with sudo find |grep xkbcomp in / and it was in /usr/bin/ so I executed it but I have no idea what to do next. I can only start X as root because root has special permissions for xkbcomp. But I would not change the permissions of the command otherwise it might break my system. I would like to avoid root as much as possible in accord to the UNIX philosophy. [Moderator edit: added [c ode] tags to preserve output layout. -Hu] | roboto, Notice that /tmp has the sticky bit set. Code: drwxrwxrwt 7 root root 160 Jun 17 23:07 tmp |
Hi all, Hoping someone can lend me a hand on getting my virtual gentoo machine back to normal. I am running into issues when trying to play back video with mpv. Error as follows: Code: (+) Video --vid=1 (*) (h264) (+) Audio --aid=1 --alang=eng (*) (opus) libGL error: unable to load driver: swrast_dri.so libGL error: failed to load driver: swrast [vo/opengl/x11] X11 error: BadValue (integer parameter out of range for operation) [vo/opengl/x11] Type: 0, display: 0x7f1cc8005440, resourceid: 0, serial: 45 [vo/opengl/x11] Error code: 2, request code: 99, minor code: 3 [vo/opengl/x11] X11 error: GLXBadContext [vo/opengl/x11] Type: 0, display: 0x7f1cc8005440, resourceid: 1800003, serial: 46 [vo/opengl/x11] Error code: a7, request code: 99, minor code: 5 [vo/opengl/x11] X11 error: 0 [vo/opengl/x11] Type: 0, display: 0x7f1cc8005440, resourceid: 0, serial: 46 [vo/opengl/x11] Error code: 0, request code: 99, minor code: 1a [vo/opengl] Could not set GLX context! Error when I run glxgears: Code: libGL error: unable to load driver: swrast_dri.so libGL error: failed to load driver: swrast X Error of failed request: BadValue (integer parameter out of range for operation) Major opcode of failed request: 153 (GLX) Minor opcode of failed request: 3 (X_GLXCreateContext) Value in failed request: 0x0 Serial number of failed request: 35 Current serial number in output stream: 37 I didn't do anything specific with X. I just remember attempting to install the Padre IDE, it had failed and didn't attempt to install it again after that. And then started noticing X issues as noted above a short while later, probably not related but figured to mention it. So far my troubleshooting steps have involved upgrading xf86 packages to later/latest versions and previous ones with same results along with earlier/later releases of the virtual box software on win10. The problems seems to be consistent across any combo of things I have been trying. Below is what I have installed at the moment: Win10: VirtualBox 5.1.22 Gentoo: x11-drivers/xf86-video-virtualbox-5.0.32 x11-drivers/xf86-input-evdev-2.10.5 x11-drivers/xf86-input-synaptics-1.9.0 x11-drivers/xf86-video-intel-2.99.917_p20170313 If any guidance, it would be appreciated. Thanks. [Moderator edit: added [c ode] tags to preserve output layout. -Hu] | I don't know if this will help you, but I install virtualbox-guest-additions on my guests to make sure everything works well. |
Hi, I run qemu straight-up with KVM, no libvirt. I have always been able to run a Win7 system with Spice with no problems. However, once we upgraded to Windows 10, my mouse performance became abominable. It is absolutely unusable... it sticks in place, then jumps clear across the screen, or it will move a few inches, then jump back to where it came from and start all over again... It is impossibly frustrating. I took this to mean that they hadn't gotten support for Win10 down right... so I mapped 2nd mouse directly to the qemu Windows 10 instance, and it worked a lot better. Still sticky, but much better.... but still driving me a little nuts. I figured it would be fixed in a few months... That was a year ago... So, Once my coworker (who uses fedora and libvirt) showed me that his system worked fine using Qemu/kvm/spicy I was chagrinned. I decided to give it another shot. I asked him to do a 'ps -ef |grep qemu' and give me the command that libvirt was running on his behalf -- with all the switches. I still cannot get this thing to work. I just went on another 4 hour stint of aggressively banging my head against this wall, and I still have nothing to show for it. I've changed my startup script a million times based upon google-research and his ps listing for his qemu executable. Here is what i have now: My Startup Script Code: #/bin/bash exec qemu-system-x86_64 \ -enable-kvm -cpu host \ -vga qxl \ -global qxl-vga.vram_size_mb=128 \ -global qxl-vga.ram_size_mb=128 \ -global qxl-vga.vgamem_mb=128 \ -smp cpus=4,cores=4,threads=1,sockets=1 \ -soundhw hda \ -drive file=/dev/sdc1,if=virtio,format=raw \ -usb \ -usbdevice host:04b9:0300 \ -usbdevice host:04f2:0981 \ -net tap,ifname=tap0,script=no,downscript=no \ -net nic,model=virtio -m 16G \ -monitor stdio \ -usbdevice tablet \ -device virtio-serial \ -spice port=5930,disable-ticketing \ -chardev spicevmc,id=charchannel0,name=vdagent \ -device virtserialport,bus=virtio-serial0.0,nr=1,chardev=charchannel0,id=channel0,name=com.redhat.spice.0 \ -name MY-WIN \ -device qxl "$@" /etc/conf.d/spice-vdagent: Code: # The virtual communication port provided by the hypervisor/vm # Default: /dev/virtio-ports/com.redhat.spice.0 PORT="/dev/virtio-ports/com.redhat.spice.0" # Userspace Input Device # Default: /dev/uinput or /dev/input/uinput DEVICE="/dev/uinput" # Extra arguments for spice-vdagentd # Default: none #SPICE_VDAGENT_ARGS="" emerge -pv qemu: Code: These are the packages that would be merged, in order: Calculating dependencies... done! [ebuild R ] app-emulation/qemu-2.8.1-r2::gentoo USE="aio alsa bluetooth bzip2 caps curl fdt filecaps jpeg ncurses nls opengl pin-upstream-blobs png pulseaudio seccomp spice usb vhost-net xattr -accessibility -debug (-glusterfs) -gnutls -gtk -gtk2 -infiniband -iscsi -lzo -nfs -numa -python -rbd -sasl -sdl -sdl2 (-selinux) -smartcard -snappy -ssh -static -static-user -systemtap -tci {-test} -usbredir -vde -virgl -virtfs -vnc -vte -xen -xfs" LINGUAS="-bg -de_DE -fr_FR -hu -it -tr -zh_CN" PYTHON_TARGETS="python2_7" QEMU_SOFTMMU_TARGETS="i386 x86_64 -aarch64 -alpha -arm -cris -lm32 -m68k -microblaze -microblazeel -mips -mips64 -mips64el -mipsel -moxie -or32 -ppc -ppc64 -ppcemb -s390x -sh4 -sh4eb -sparc -sparc64 -tricore -unicore32 -xtensa -xtensaeb" QEMU_USER_TARGETS="i386 x86_64 -aarch64 -alpha -arm -armeb -cris -m68k -microblaze -microblazeel -mips -mips64 -mips64el -mipsel -mipsn32 -mipsn32el -or32 -ppc -ppc64 -ppc64abi32 -ppc64le -s390x -sh4 -sh4eb -sparc -sparc32plus -sparc64 -tilegx" 0 KiB emerge -pv spice-vdagent: Code: These are the packages that would be merged, in order: Calculating dependencies... done! [ebuild R ] app-emulation/spice-vdagent-0.17.0::gentoo USE="consolekit (-selinux) -systemd" 0 KiB My Co-workers working config (I set each switch to its own line for readability): Code: /usr/bin/qemu-system-x86_64 -machine accel=kvm -name guest=win10pro_64-bit,debug-threads=on -S -object secret,id=masterKey0,format=raw,file=/var/lib/libvirt/qemu/domain-5-win10pro_64-bit/master-key.aes -machine pc-i440fx-2.7,accel=kvm,usb=off,vmport=off -cpu Haswell-noTSX,hv_time,hv_relaxed,hv_vapic,hv_spinlocks=0x1fff -m 4096 -realtime mlock=off -smp 8,sockets=8,cores=1,threads=1 -uuid c537bb5d-29a0-481d-9a05-4cbf217a417c -no-user-config -nodefaults -chardev socket,id=charmonitor,path=/var/lib/libvirt/qemu/domain-5-win10pro_64-bit/monitor.sock,server,nowait -mon chardev=charmonitor,id=monitor,mode=control -rtc base=localtime,driftfix=slew -global kvm-pit.lost_tick_policy=discard -no-hpet -no-shutdown -global PIIX4_PM.disable_s3=1 -global PIIX4_PM.disable_s4=1 -boot strict=on -device nec-usb-xhci,id=usb,bus=pci.0,addr=0x6 -device virtio-serial-pci,id=virtio-serial0,bus=pci.0,addr=0x5 -drive file=/home/standuser/.virtualmachines/windows10pro-x86_64.qcow2,format=qcow2,if=none,id=drive-ide0-0-0 -device ide-hd,bus=ide.0,unit=0,drive=drive-ide0-0-0,id=ide0-0-0,bootindex=1 -netdev tap,fd=28,id=hostnet0 -device rtl8139,netdev=hostnet0,id=net0,mac=52:54:00:60:37:da,bus=pci.0,addr=0x3 -chardev pty,id=charserial0 -device isa-serial,chardev=charserial0,id=serial0 -chardev spicevmc,id=charchannel0,name=vdagent -device virtserialport,bus=virtio-serial0.0,nr=1,chardev=charchannel0,id=channel0,name=com.redhat.spice.0 -device usb-tablet,id=input0,bus=usb.0,port=1 -spice port=5901,addr=127.0.0.1,disable-ticketing,image-compression=off,seamless-migration=on -k en-us -device qxl-vga,id=video0,ram_size=67108864,vram_size=67108864,vram64_size_mb=0,vgamem_mb=16,max_outputs=1,bus=pci.0,addr=0x2 -device intel-hda,id=sound0,bus=pci.0,addr=0x4 -device hda-duplex,id=sound0-codec0,bus=sound0.0,cad=0 -chardev spicevmc,id=charredir0,name=usbredir -device usb-redir,chardev=charredir0,id=redir0,bus=usb.0,port=2 -chardev spicevmc,id=charredir1,name=usbredir -device usb-redir,chardev=charredir1,id=redir1,bus=usb.0,port=3 -device virtio-balloon-pci,id=balloon0,bus=pci.0,addr=0x7 -msg timestamp=on My qemu starts without any complaints whatsoever. But when I try to start spice-vdagent: Code: /etc/init.d/spice-vdagent start * Checking for required modules and devices ... * Required virtio port does not exist. Make sure you * started the virtual machine with appropriate parameters. [ !! ] * ERROR: spice-vdagent failed to start I try to get a little more output: Code: spice-vdagent -d -x spice-vdagent[18236]: Cannot access vdagent virtio channel /dev/virtio-ports/com.redhat.spice.0 I'm not seeing anything else in dmesg or in my /var/log/messages of help. It doesn't matter if I start my qemu first, or try to start spice-vdagent... it fails the same. The /dev/virtio-ports/com.redhat.spice.0 file is never created. Of course, I'm not 100% certain that having a working vdagent will solve my problem, but I won't know for sure until I get it working right. I'm hoping it will.. Any help is greatly appreciated. Thank you. G | Bump. |
Any help on this? No problem with Sway-0.12.2. Is it a bug? Thank you! Code: $ sway -dV 05/12/17 19:11:58 - [main.c:185] Linux gentoo 4.11.0-gentoo #7 SMP Wed May 10 18:31:37 EEST 2017 x86_64 Intel(R) Core(TM) i3-4330 CPU @ 3.50GHz GenuineIntel GNU/Linux 05/12/17 19:11:58 - [main.c:157] Contents of /etc/lsb-release: 05/12/17 19:11:58 - [main.c:164] DISTRIB_ID="Gentoo" 05/12/17 19:11:58 - [main.c:157] Contents of /etc/os-release: 05/12/17 19:11:58 - [main.c:164] NAME=Gentoo 05/12/17 19:11:58 - [main.c:164] ID=gentoo 05/12/17 19:11:58 - [main.c:164] PRETTY_NAME="Gentoo/Linux" 05/12/17 19:11:58 - [main.c:164] ANSI_COLOR="1;32" 05/12/17 19:11:58 - [main.c:164] HOME_URL="https://www.gentoo.org/" 05/12/17 19:11:58 - [main.c:164] SUPPORT_URL="https://www.gentoo.org/support/" 05/12/17 19:11:58 - [main.c:164] BUG_REPORT_URL="https://bugs.gentoo.org/" 05/12/17 19:11:58 - [main.c:157] Contents of /etc/gentoo-release: 05/12/17 19:11:58 - [main.c:164] Gentoo Base System release 2.3 05/12/17 19:11:58 - [main.c:142] PATH=/usr/local/bin:/usr/bin:/bin:/opt/bin:/usr/x86_64-pc-linux-gnu/gcc-bin/6.3.0:/usr/lib/llvm/4/bin:/sbin 05/12/17 19:11:58 - [main.c:142] LD_LOAD_PATH=(null) 05/12/17 19:11:58 - [main.c:142] LD_PRELOAD_PATH=(null) 05/12/17 19:11:58 - [main.c:142] LD_LIBRARY_PATH=(null) 05/12/17 19:11:58 - [main.c:142] SWAY_CURSOR_THEME=(null) 05/12/17 19:11:58 - [main.c:142] SWAY_CURSOR_SIZE=(null) 05/12/17 19:11:58 - [main.c:142] SWAYSOCK=(null) 05/12/17 19:11:58 - [main.c:142] WLC_DRM_DEVICE=(null) 05/12/17 19:11:58 - [main.c:142] WLC_SHM=(null) 05/12/17 19:11:58 - [main.c:142] WLC_OUTPUTS=(null) 05/12/17 19:11:58 - [main.c:142] WLC_XWAYLAND=(null) 05/12/17 19:11:58 - [main.c:142] WLC_LIBINPUT=(null) 05/12/17 19:11:58 - [main.c:142] WLC_REPEAT_DELAY=(null) 05/12/17 19:11:58 - [main.c:142] WLC_REPEAT_RATE=(null) 05/12/17 19:11:58 - [main.c:142] XKB_DEFAULT_RULES=(null) 05/12/17 19:11:58 - [main.c:142] XKB_DEFAULT_MODEL=(null) 05/12/17 19:11:58 - [main.c:142] XKB_DEFAULT_LAYOUT=(null) 05/12/17 19:11:58 - [main.c:142] XKB_DEFAULT_VARIANT=(null) 05/12/17 19:11:58 - [main.c:142] XKB_DEFAULT_OPTIONS=(null) 05/12/17 19:11:58 - [main.c:51] [wlc] Doing work on SUID/SGID side and dropping permissions 05/12/17 19:11:58 - [main.c:51] [wlc] Work done, dropping permissions and checking communication 05/12/17 19:11:58 - [main.c:362] Dropping extra capabilities 05/12/17 19:11:58 - [main.c:377] Starting sway version 0.13.0 05/12/17 19:11:58 - [config.c:438] Set XDG_CONFIG_HOME to /home/hk/.config 05/12/17 19:11:58 - [config.c:463] Loading config from /etc/sway/security.d/00-defaults 05/12/17 19:11:58 - [commands.c:509] handling config command 'permit * fullscreen keyboard mouse' 05/12/17 19:11:58 - [commands.c:338] find_handler(permit) 0 05/12/17 19:11:58 - [security.c:14] Validating IPC target '*' 05/12/17 19:11:58 - [permit.c:72] Permissions granted to * for features 112 05/12/17 19:11:58 - [commands.c:509] handling config command 'permit /usr/bin/swaylock lock' 05/12/17 19:11:58 - [commands.c:338] find_handler(permit) 0 05/12/17 19:11:58 - [permit.c:62] cmd_permit:Unable to resolve IPC permit target '/usr/bin/swaylock'. will issue empty policy 05/12/17 19:11:58 - [security.c:14] Validating IPC target '/usr/bin/swaylock' 05/12/17 19:11:58 - [security.c:156] Unable to allocate security policy 05/12/17 19:11:58 - [main.c:51] [wlc] Terminating wlc... 05/12/17 19:11:58 - [main.c:51] [wlc] Terminating compositor... 05/12/17 19:11:58 - [main.c:51] [wlc] Compositor terminated... Segmentation fault 05/12/17 19:11:58 - [main.c:51] [wlc] Parent exit (2862) Code: $sudo emerge --info Password: Portage 2.3.5 (python 3.4.6-final-0, default/linux/amd64/13.0/desktop, gcc-6.3.0, glibc-2.24-r1, 4.11.0-gentoo x86_64) ================================================================= System uname: Linux-4.11.0-gentoo-x86_64-Intel-R-_Core-TM-_i3-4330_CPU_@_3.50GHz-with-gentoo-2.3 KiB Mem: 8101100 total, 7254124 free KiB Swap: 0 total, 0 free Timestamp of repository gentoo: Fri, 12 May 2017 13:00:01 +0000 sh bash 4.4_p12 ld GNU ld (Gentoo 2.27 p1.0) 2.27 app-shells/bash: 4.4_p12::gentoo dev-java/java-config: 2.2.0-r3::gentoo dev-lang/perl: 5.24.1-r1::gentoo dev-lang/python: 2.7.13::gentoo, 3.4.6::gentoo dev-util/cmake: 3.8.1::gentoo dev-util/pkgconfig: 0.29.2::gentoo sys-apps/baselayout: 2.3::gentoo sys-apps/openrc: 0.26::gentoo sys-apps/sandbox: 2.10-r4::gentoo sys-devel/autoconf: 2.13::gentoo, 2.69-r3::gentoo sys-devel/automake: 1.13.4-r1::gentoo, 1.15-r2::gentoo sys-devel/binutils: 2.27::gentoo sys-devel/gcc: 6.3.0::gentoo sys-devel/gcc-config: 1.8-r1::gentoo sys-devel/libtool: 2.4.6-r4::gentoo sys-devel/make: 4.2.1-r1::gentoo sys-kernel/linux-headers: 4.10::gentoo (virtual/os-headers) sys-libs/glibc: 2.24-r1::gentoo Repositories: gentoo location: /usr/portage sync-type: rsync sync-uri: rsync://rsync.gentoo.org/gentoo-portage priority: -1000 x-portage location: /usr/local/portage masters: gentoo priority: 0 ACCEPT_KEYWORDS="amd64 ~amd64" ACCEPT_LICENSE="* -@EULA" 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/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" FCFLAGS="-O2 -pipe" FEATURES="assume-digests binpkg-logs config-protect-if-modified distlocks ebuild-locks fixlafiles merge-sync 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" GENTOO_MIRRORS="ftp://ftp.ntua.gr/pub/linux/gentoo/ http://ftp.ntua.gr/pub/linux/gentoo/" LANG="en_US.utf8" LDFLAGS="-Wl,-O1 -Wl,--as-needed" MAKEOPTS="-j4" PKGDIR="/usr/portage/packages" PORTAGE_CONFIGROOT="/" PORTAGE_RSYNC_OPTS="--recursive --links --safe-links --perms --times --omit-dir-times --compress --force --whole-file --delete --stats --human-readable --timeout=180 --exclude=/distfiles --exclude=/local --exclude=/packages --exclude=/.git" PORTAGE_TMPDIR="/var/tmp" USE="X a52 aac acl acpi alsa amd64 berkdb branding bzip2 cairo cdda cdr cli consolekit cracklib crypt cups cxx dbus dri dts dvd dvdr encode exif firefox flac gdbm gif glamor gpm gtk iconv jpeg lcms ldap libnotify mad mng modules mp3 mp4 mpeg multilib ncurses nls nptl ogg opengl openmp pam pango pcre pdf png policykit ppds readline sdl seccomp session spell ssl svg tcpd tiff truetype udev udisks unicode upower usb vorbis x264 xattr xcb xml xv xvid zlib" ABI_X86="64" 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="kexi words flow plan sheets stage tables krita karbon braindump author" 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 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" L10N="en en-GB el en-US" LCD_DEVICES="bayrad cfontz cfontz633 glk hd44780 lb216 lcdm001 mtxorb ncurses text" LIBREOFFICE_EXTENSIONS="presenter-console presenter-minimizer" LINGUAS="en en_US en_GB el" OFFICE_IMPLEMENTATION="libreoffice" PHP_TARGETS="php5-6" PYTHON_SINGLE_TARGET="python3_4" PYTHON_TARGETS="python2_7 python3_4" RUBY_TARGETS="ruby21 ruby22" USERLAND="GNU" VIDEO_CARDS="nouveau" 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_BUNZIP2_COMMAND, PORTAGE_COMPRESS, PORTAGE_COMPRESS_FLAGS, PORTAGE_RSYNC_EXTRA_OPTS, USE_PYTHON | Thanks a lot! |
Hello! After upgrade my qt-creator was up to 3.x, so it is build with Qt5. But fonts in it (menus and dialogs) is differ than in other apps (Qt4 and gtk for example). QtConfig program does not work with Qt5. How could I setup fonts for Qt5? | You could in theory install lxqt, configure fonts, theme and rest. Then export environment variable QT_QPA_PLATFORMTHEME=lxqt in your xfce. ( then u might remove all lxqt packages except lxqt-qtplugin) EIDT: u sure its export QT_QPA_PLATFORMTHEME=gtk and not export QT_QPA_PLATFORMTHEME=gtk2 ?? |
Good evening, or afternoon for those who like me are busy figuring out how to recover some aspect of the system I lost yesterday. The subject matter of the post might be better put as help with Lxqt (Enlightenment), this has some system-wide aspects (icons, buttons, etc. missing as well). After running a --depclean followingt the @world update, deep and new use options: I attempted to review the long list of packages slated for removal, but must have glanced over a few of the gui items such as those for enlightenment windows, buttons, but also tint2 launcher, and more.... | How do I mark this issue as Solved, it turns out it was a profile issue and I would like to leave it here rather than remove or have to delete it from the site. |
hello, I'm going to compile KDE. It just came a message with which is searched for Windows versions. I'm afraid of an attack. Is it ok that this check happens? An image here: http://www.edv-bildung.de/ein-check-der-windowsversionen-ueber-linux/ | I don't know what you mean |
Hello. I've recently updated my system using `emerge -uDNav @world` and got TrueType fonts rendering totally ruined. I was using non-antialiased Verdana as my common font for whole DE and now it's utter pain to look at it. Picture of the disaster: http://oi67.tinypic.com/2zjmih3.jpg Profile: default/linux/amd64/13.0 My config files are in this gist: https://gist.github.com/TLoD-Snake/58368dd927da6cbdfdf085398b1d1a22 uname -a: Linux localhost 4.9.16-gentoo #1 SMP Wed Jun 21 23:43:30 MSK 2017 x86_64 Intel(R) Core(TM) i7-6700K CPU @ 4.00GHz GenuineIntel GNU/Linux Kernel compiled using genkernel equery l nvidia-drivers: [IP-] [ ] x11-drivers/nvidia-drivers-381.22-r1:0/381 (Nvidia 980ti) KDE Plasma 5.8.6 KDE Frameworks 5.34.0 QT 5.6.2 What I've tried to do to solve problem: - Tried to switch profile to plasma one, update the system according Plasma 5 article in Gentoo wiki. - Tried to remove ~/.config, .~/cache folders - Tried to remove my /etc/fonts/local.conf - Tried to upgrade my Plasma to testing branch 5.7.2, which end up with broken kwin and didn't solve the problem with fonts. Got some hard time while downgrading it back to stable one - I've rebuild x11-libs/libXft, media-libs/freetype, media-libs/fontconfig, tried to build system without egl/wayland - Tried to enable Infinality - Did `emerge -e world` Now I'm a little bit lost and unsure what to do next, I'd highly appreciate any help. Thank you. | After a lot of struggle I've finally figured out how to solve the problem and bring my beloved non-antialiased Verdana back to life. There is a new (at least for me cause I didn't update my system for a long time) use flag in media-libs/freetype called "cleartype_hinting" and it's enabled by default. One shall disable it to get clear and sexy non-antialiased ttf fonts. Marking topic as solved. P.S. That's how it looks now. The title of the window is not updated yet (will be after relogin) so you can see the difference between title of the window (with clear type hinting) and text inside (without it). http://oi64.tinypic.com/330e651.jpg |
Hi, since yesterdays big (~120 packages) update I have troubles with running Xorg (ends with segmentation fault). xorg-server was upgraded to 1.19.3. Log: Code: [ 3586.938] (--) Log file renamed from "/var/log/Xorg.pid-4127.log" to "/var/log/Xorg.0.log" [ 3586.938] X.Org X Server 1.19.2 Release Date: 2017-03-02 [ 3586.938] X Protocol Version 11, Revision 0 [ 3586.938] Build Operating System: Linux 4.9.16-gentoo x86_64 Gentoo [ 3586.938] Current Operating System: Linux radeczek 4.9.16-gentoo #1 SMP Mon May 15 16:40:49 CEST 2017 x86_64 [ 3586.938] Kernel command line: BOOT_IMAGE=Gentoo ro root=802 video=vesafb:1024x768-32@85,mttr,ywrap,splash=silent,fadein,theme:natural_gentoo quiet CONSOLE=/dev/tty1 nouveau.modeset=1 [ 3586.938] Build Date: 07 June 2017 07:17:11AM [ 3586.938] [ 3586.938] Current version of pixman: 0.34.0 [ 3586.938] Before reporting problems, check http://wiki.x.org to make sure that you have the latest version. [ 3586.938] Markers: (--) probed, (**) from config file, (==) default setting, (++) from command line, (!!) notice, (II) informational, (WW) warning, (EE) error, (NI) not implemented, (??) unknown. [ 3586.938] (==) Log file: "/var/log/Xorg.0.log", Time: Wed Jun 7 08:01:32 2017 [ 3586.939] (==) Using config directory: "/etc/X11/xorg.conf.d" [ 3586.939] (==) Using system config directory "/usr/share/X11/xorg.conf.d" [ 3586.939] (==) No Layout section. Using the first Screen section. [ 3586.939] (==) No screen section available. Using defaults. [ 3586.939] (**) |-->Screen "Default Screen Section" (0) [ 3586.939] (**) | |-->Monitor "<default monitor>" [ 3586.939] (==) No monitor specified for screen "Default Screen Section". Using a default monitor configuration. [ 3586.939] (==) Automatically adding devices [ 3586.939] (==) Automatically enabling devices [ 3586.939] (==) Automatically adding GPU devices [ 3586.939] (==) Max clients allowed: 256, resource mask: 0x1fffff [ 3586.939] (==) FontPath set to: /usr/share/fonts/misc/, /usr/share/fonts/TTF/, /usr/share/fonts/OTF/, /usr/share/fonts/Type1/, /usr/share/fonts/100dpi/, /usr/share/fonts/75dpi/ [ 3586.939] (==) ModulePath set to "/usr/lib64/xorg/modules" [ 3586.939] (II) The server relies on udev to provide the list of input devices. If no devices become available, reconfigure udev or disable AutoAddDevices. [ 3586.939] (II) Loader magic: 0x813cc0 [ 3586.939] (II) Module ABI versions: [ 3586.939] X.Org ANSI C Emulation: 0.4 [ 3586.939] X.Org Video Driver: 23.0 [ 3586.939] X.Org XInput driver : 24.1 [ 3586.939] X.Org Server Extension : 10.0 [ 3586.940] (II) xfree86: Adding drm device (/dev/dri/card0) [ 3586.940] (EE) [ 3586.940] (EE) Backtrace: [ 3586.940] (EE) 0: /usr/bin/X (xorg_backtrace+0x56) [0x58a076] [ 3586.940] (EE) 1: /usr/bin/X (0x400000+0x18dd29) [0x58dd29] [ 3586.940] (EE) 2: /lib64/libpthread.so.0 (0x7f43eb5a4000+0x10f90) [0x7f43eb5b4f90] [ 3586.940] (EE) 3: /lib64/libc.so.6 (strlen+0x26) [0x7f43eb2892b6] [ 3586.941] (EE) 4: /lib64/libc.so.6 (__strdup+0xe) [0x7f43eb288fde] [ 3586.941] (EE) 5: /usr/lib64/libdrm.so.2 (drmGetVersion+0xde) [0x7f43ec5aef4e] [ 3586.941] (EE) 6: /usr/bin/X (0x400000+0x98791) [0x498791] [ 3586.941] (EE) 7: /usr/bin/X (0x400000+0x989e3) [0x4989e3] [ 3586.941] (EE) 8: /usr/bin/X (0x400000+0x959b3) [0x4959b3] [ 3586.941] (EE) 9: /usr/bin/X (0x400000+0x92ebe) [0x492ebe] [ 3586.941] (EE) 10: /usr/bin/X (xf86BusProbe+0x9) [0x46acd9] [ 3586.941] (EE) 11: /usr/bin/X (InitOutput+0x71d) [0x4796dd] [ 3586.941] (EE) 12: /usr/bin/X (0x400000+0x39606) [0x439606] [ 3586.941] (EE) 13: /lib64/libc.so.6 (__libc_start_main+0xf0) [0x7f43eb22b790] [ 3586.941] (EE) 14: /usr/bin/X (_start+0x29) [0x4238a9] [ 3586.941] (EE) [ 3586.941] (EE) Segmentation fault at address 0x7 [ 3586.941] (EE) Fatal server error: [ 3586.941] (EE) Caught signal 11 (Segmentation fault). Server aborting [ 3586.941] (EE) [ 3586.941] (EE) Please consult the The X.Org Foundation support at http://wiki.x.org for help. [ 3586.941] (EE) Please also check the log file at "/var/log/Xorg.0.log" for additional information. [ 3586.941] (EE) [ 3586.941] (EE) Server terminated with error (1). Closing log file. Emerge info: Code: Portage 2.3.5 (python 2.7.12-final-0, default/linux/amd64/13.0, gcc-4.9.4, glibc-2.23-r3, 4.9.16-gentoo x86_64) ================================================================= System uname: Linux-4.9.16-gentoo-x86_64-Intel-R-_Core-TM-_i5_CPU_M_450_@_2.40GHz-with-gentoo-2.3 KiB Mem: 8036396 total, 7223396 free KiB Swap: 2987424 total, 2987424 free Timestamp of repository gentoo: Wed, 07 Jun 2017 04:00:01 +0000 sh bash 4.3_p48-r1 ld GNU ld (Gentoo 2.26.1 p1.0) 2.26.1 distcc 3.2rc1 x86_64-pc-linux-gnu [disabled] app-shells/bash: 4.3_p48-r1::gentoo dev-java/java-config: 2.2.0-r3::gentoo dev-lang/perl: 5.24.1-r2::gentoo dev-lang/python: 2.7.12::gentoo, 3.2.5-r6::gentoo, 3.4.5::gentoo dev-util/cmake: 3.7.2::gentoo dev-util/pkgconfig: 0.28-r2::gentoo sys-apps/baselayout: 2.3::gentoo sys-apps/openrc: 0.26.3::gentoo sys-apps/sandbox: 2.10-r3::gentoo sys-devel/autoconf: 2.13::gentoo, 2.69::gentoo sys-devel/automake: 1.9.6-r3::gentoo, 1.11.6-r1::gentoo, 1.12.6::gentoo, 1.13.4::gentoo, 1.14.1::gentoo, 1.15-r2::gentoo sys-devel/binutils: 2.26.1::gentoo sys-devel/gcc: 4.9.4::gentoo, 5.4.0-r3::gentoo sys-devel/gcc-config: 1.7.3::gentoo sys-devel/libtool: 2.4.6-r3::gentoo sys-devel/make: 4.2.1::gentoo sys-kernel/linux-headers: 4.4::gentoo (virtual/os-headers) sys-libs/glibc: 2.23-r3::gentoo Repositories: gentoo location: /usr/portage sync-type: rsync sync-uri: rsync://rsync.gentoo.org/gentoo-portage priority: -1000 x-portage location: /usr/local/portage masters: gentoo priority: 0 dotnet location: /var/lib/layman/dotnet masters: gentoo priority: 50 kde location: /var/lib/layman/kde masters: gentoo priority: 50 science location: /var/lib/layman/science masters: gentoo priority: 50 ssnb location: /var/lib/layman/ssnb masters: gentoo priority: 50 steam-overlay location: /var/lib/layman/steam-overlay masters: gentoo priority: 50 ACCEPT_KEYWORDS="amd64" ACCEPT_LICENSE="* -@EULA AdobeFlash-11.x skype-eula skype-4.0.0.7-copyright dlj-1.1 Oracle-BCLA-JavaSE PUEL RAR" CBUILD="x86_64-pc-linux-gnu" CC="gcc" CFLAGS="-march=core2 -mtune=generic -O2 -pipe" CHOST="x86_64-pc-linux-gnu" CONFIG_PROTECT="/etc /usr/share/config /usr/share/gnupg/qualified.txt /usr/share/maven-bin-2.2/conf /usr/share/maven-bin-3.0/conf /usr/share/maven-bin-3.1/conf /usr/share/maven-bin-3.2/conf /usr/share/maven-bin-3.3/conf /usr/share/themes/oxygen-gtk/gtk-2.0 /var/lib/hsqldb" CONFIG_PROTECT_MASK="/etc/ca-certificates.conf /etc/dconf /etc/env.d /etc/fonts/fonts.conf /etc/gconf /etc/gentoo-release /etc/php/apache2-php5.5/ext-active/ /etc/php/apache2-php5.6/ext-active/ /etc/php/apache2-php7.0/ext-active/ /etc/php/cgi-php5.5/ext-active/ /etc/php/cgi-php5.6/ext-active/ /etc/php/cgi-php7.0/ext-active/ /etc/php/cli-php5.5/ext-active/ /etc/php/cli-php5.6/ext-active/ /etc/php/cli-php7.0/ext-active/ /etc/revdep-rebuild /etc/sandbox.d /etc/splash /etc/terminfo /etc/texmf/language.dat.d /etc/texmf/language.def.d /etc/texmf/updmap.d /etc/texmf/web2c" CXXFLAGS="-march=core2 -mtune=generic -O2 -pipe" DISTDIR="/usr/portage/distfiles" FCFLAGS="-O2 -pipe" FEATURES="assume-digests binpkg-logs config-protect-if-modified distlocks ebuild-locks fixlafiles merge-sync 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" GENTOO_MIRRORS="http://distfiles.gentoo.org" LC_ALL="cs_CZ.UTF-8" LDFLAGS="-Wl,-O1 -Wl,--as-needed" MAKEOPTS="-j4" PKGDIR="/usr/portage/packages" PORTAGE_CONFIGROOT="/" PORTAGE_RSYNC_OPTS="--recursive --links --safe-links --perms --times --omit-dir-times --compress --force --whole-file --delete --stats --human-readable --timeout=180 --exclude=/distfiles --exclude=/local --exclude=/packages --exclude=/.git" PORTAGE_TMPDIR="/var/tmp" USE="64bit X \ aac acl acpi alsa amd64 apache2 apm berkdb bzip2 cairo cdda cli connection-sharing consolekit cracklib crypt cuda cups cxx dbus dhclient dhcpcd dri dvdr faac ffmpeg firefox fortran g3dvl gd gdbm git gnutls gtk2 iconv icq icu ipv6 jabber jack java jpeg kde legacy-systray mmx mng modules mp3 mplayer mtp multilib mysql mysqli ncurses net45 networkmanager nls nptl ntfs nvidia ogg opengl openmp oscar pam pcre pdf pdo png qt3support qt4 readline samba seccomp session spell sql sqlite sse sse2 ssl suhosin svg tcpd theora unicode vdpau vnc vorbis webkit x264 xattr xinerama zip zlib" ABI_X86="64" ALSA_CARDS="hda-intel" APACHE2_MODULES="actions alias auth_basic authn_alias authn_anon authn_core authn_dbm authn_file authz_core authz_dbm authz_groupfile authz_host authz_owner authz_user autoindex cache cgi cgid dav dav_fs dav_lock deflate dir env expires ext_filter file_cache filter headers include info log_config logio mime mime_magic negotiation rewrite setenvif socache_shmcb speling status unique_id unixd userdir usertrack vhost_alias access_compat" CALLIGRA_FEATURES="kexi words flow plan sheets stage tables krita karbon braindump author" 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="mouse keyboard evdev synaptics" KERNEL="linux" L10N="cs" LCD_DEVICES="bayrad cfontz cfontz633 glk hd44780 lb216 lcdm001 mtxorb ncurses text" LIBREOFFICE_EXTENSIONS="presenter-console presenter-minimizer" LINGUAS="cs" NETBEANS_MODULES="nb cnd php dlight harness ide websvccommon java" OFFICE_IMPLEMENTATION="libreoffice" PHP_TARGETS="php5-6" PYTHON_SINGLE_TARGET="python3_4" PYTHON_TARGETS="python2_7 python3_4" RUBY_TARGETS="ruby21 ruby22" USERLAND="GNU" VIDEO_CARDS="nouveau" 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: CPPFLAGS, CTARGET, CXX, EMERGE_DEFAULT_OPTS, INSTALL_MASK, LANG, PORTAGE_BUNZIP2_COMMAND, PORTAGE_COMPRESS, PORTAGE_COMPRESS_FLAGS, PORTAGE_RSYNC_EXTRA_OPTS, USE_PYTHON I have tryed reinstall libdrm, downgrade xorg-server and libdrm. But nothing helped. Any suggestions what is wrong? Thank you. | That was really weird. After about 2hours of trying different combinations of versions of xorg-server. libdrm, xorg drivers etc. I desperatelly tryed upgrade/re-emerge glibc. After that everything is working with current versions (xorg-server-1.19.3, libdrm-2.4.80). So, my problem is solved. |
Yesterday I updated the system, and then eventually realized that I cannot su anymore, not from a console within kde, lxde or xfce. And it does not work from Ctrl+Alt+F1 console either. Fortunatelly I still can login with root account directly from Ctrl+Alt+F1. The error indicates error on authentification. I also tried older kernel 4.9.10 as I had read that it can be kernel related, but no luck. I did not change any membership. groups shows: Code: groups lp wheel floppy audio cdrom video games kvm cdrw usb users scanner plugdev portage elleni I have seen this faq ( https://forums.gentoo.org/viewtopic-t-23378.html ) and had slightly different permissions on /bin/su, so I did as mentioned: Code: # chown root:root /bin/su # chmod 4755 /bin/su But this did not help so I would like to know if this is still valid, or how I could revert back to standard permissions on /bin/su Are there some packages that I could try to recomplie in order to reset to expected behaviour? Right now I am doing an emerge -ev system to see if this helps. emerge --info: Code: Portage 2.3.5 (python 2.7.12-final-0, default/linux/amd64/13.0/desktop/plasma, gcc-5.4.0, glibc-2.23-r3, 4.11.3-gentoo x86_64) ================================================================= System uname: Linux-4.11.3-gentoo-x86_64-Intel-R-_Core-TM-2_Duo_CPU_E8500_@_3.16GHz-with-gentoo-2.3 KiB Swap: 9767516 total, 9767516 free Timestamp of repository gentoo: Wed, 07 Jun 2017 16:00:01 +0000 sh bash 4.3_p48-r1 ld GNU ld (Gentoo 2.26.1 p1.0) 2.26.1 app-shells/bash: 4.3_p48-r1::gentoo dev-lang/perl: 5.24.1-r2::gentoo dev-lang/python: 2.7.12::gentoo, 3.4.5::gentoo dev-util/cmake: 3.7.2::gentoo dev-util/pkgconfig: 0.28-r2::gentoo sys-apps/baselayout: 2.3::gentoo sys-apps/openrc: 0.26.3::gentoo sys-apps/sandbox: 2.10-r3::gentoo sys-devel/autoconf: 2.13::gentoo, 2.69::gentoo sys-devel/automake: 1.11.6-r1::gentoo, 1.12.6::gentoo, 1.15-r2::gentoo sys-devel/binutils: 2.26.1::gentoo sys-devel/gcc: 5.4.0-r3::gentoo sys-devel/gcc-config: 1.7.3::gentoo sys-devel/libtool: 2.4.6-r3::gentoo sys-devel/make: 4.2.1::gentoo sys-kernel/linux-headers: 4.4::gentoo (virtual/os-headers) sys-libs/glibc: 2.23-r3::gentoo Repositories: gentoo location: /usr/portage sync-type: rsync sync-uri: rsync://rsync.gentoo.org/gentoo-portage priority: -1000 x-portage location: /usr/local/portage masters: gentoo priority: 0 ACCEPT_KEYWORDS="amd64" ACCEPT_LICENSE="* -@EULA" 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" FCFLAGS="-O2 -pipe" FEATURES="assume-digests binpkg-logs buildpkg candy config-protect-if-modified distlocks ebuild-locks fixlafiles merge-sync 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" GENTOO_MIRRORS="http://distfiles.gentoo.org" LANG="de_CH.UTF-8" LC_ALL="de_CH.UTF-8" LDFLAGS="-Wl,-O1 -Wl,--as-needed" MAKEOPTS="-j3" 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 cracklib crypt cups cxx d3d9 dbus declarative dri dri3 dts dvd dvdr emboss encode exif fam ffmpeg firefox flac fortran frei0r gdbm gif glamor gnutls gpm gtk iconv icu ipv6 jpeg kde kipi kwallet lcms ldap libnotify llvm lm_sensors mad mmx mmxext mng modules mp3 mp4 mpeg mtp multilib ncurses nls nptl ocr ogg openal opencl opengl openmax openmp osmesa pam pango pcre pdf phonon plasma png policykit ppds pulseaudio qml qt3support qt4 qt5 readline realtime s3tc scanner sdl seccomp semantic-desktop session spell spice sse sse2 sse3 ssh ssl ssse3 staging startup-notification svg tcpd theora tiff truetype udev udisks unicode upower usb uxa vaapi vdpau vhost-net vorbis vpx webrtc-aec widgets wxwidgets x264 xattr xcb xcomposite xinerama xml xscreensaver xv xvid zlib" ABI_X86="64 32" 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="kexi words flow plan sheets stage tables krita karbon braindump author" COLLECTD_PLUGINS="df interface irq load memory rrdtool swap syslog" CPU_FLAGS_X86="mmx mmxext smp sse sse2 sse3 sse4_1 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" INPUT_DEVICES="evdev" KERNEL="linux" L10N="de el en fr it tr" LCD_DEVICES="bayrad cfontz cfontz633 glk hd44780 lb216 lcdm001 mtxorb ncurses text" LIBREOFFICE_EXTENSIONS="presenter-console presenter-minimizer" LINGUAS="de de_DE el en fr fr_FR it tr" OFFICE_IMPLEMENTATION="libreoffice" PHP_TARGETS="php5-6" PYTHON_SINGLE_TARGET="python3_4" PYTHON_TARGETS="python2_7 python3_4" RUBY_TARGETS="ruby21 ruby22" SANE_BACKENDS="pixma" USERLAND="GNU" VIDEO_CARDS="amdgpu radeon radeonsi intel i965" XFCE_PLUGINS="clock power multiload-nandhp 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, PORTAGE_BUNZIP2_COMMAND, PORTAGE_COMPRESS, PORTAGE_COMPRESS_FLAGS, PORTAGE_RSYNC_EXTRA_OPTS, USE_PYTHON | Reinstalling sys-apps/shadow would make sure su has correct permissions. You have USE=pam though, so all bets are off. |
I can't copy files to USB2 or USB3 root or user. I install a usb3 card recently. Both USB2 and USB3 work. I can dd to USB2 and USB3 and USB3 is very fast. I followed the https://wiki.gentoo.org/wiki/USB/Guide Please throw me a bone. Code: /usr/sbin/lspci -v | grep USB 00:12.0 USB controller: Advanced Micro Devices, Inc. [AMD/ATI] SB7x0/SB8x0/SB9x0 USB OHCI0 Controller (prog-if 10 [OHCI]) Subsystem: Advanced Micro Devices, Inc. [AMD/ATI] SB7x0/SB8x0/SB9x0 USB OHCI0 Controller 00:12.2 USB controller: Advanced Micro Devices, Inc. [AMD/ATI] SB7x0/SB8x0/SB9x0 USB EHCI Controller (prog-if 20 [EHCI]) Subsystem: Advanced Micro Devices, Inc. [AMD/ATI] SB7x0/SB8x0/SB9x0 USB EHCI Controller 00:13.0 USB controller: Advanced Micro Devices, Inc. [AMD/ATI] SB7x0/SB8x0/SB9x0 USB OHCI0 Controller (prog-if 10 [OHCI]) Subsystem: Advanced Micro Devices, Inc. [AMD/ATI] SB7x0/SB8x0/SB9x0 USB OHCI0 Controller 00:13.2 USB controller: Advanced Micro Devices, Inc. [AMD/ATI] SB7x0/SB8x0/SB9x0 USB EHCI Controller (prog-if 20 [EHCI]) Subsystem: Advanced Micro Devices, Inc. [AMD/ATI] SB7x0/SB8x0/SB9x0 USB EHCI Controller 00:14.5 USB controller: Advanced Micro Devices, Inc. [AMD/ATI] SB7x0/SB8x0/SB9x0 USB OHCI2 Controller (prog-if 10 [OHCI]) Subsystem: Advanced Micro Devices, Inc. [AMD/ATI] SB7x0/SB8x0/SB9x0 USB OHCI2 Controller 00:16.0 USB controller: Advanced Micro Devices, Inc. [AMD/ATI] SB7x0/SB8x0/SB9x0 USB OHCI0 Controller (prog-if 10 [OHCI]) Subsystem: Advanced Micro Devices, Inc. [AMD/ATI] SB7x0/SB8x0/SB9x0 USB OHCI0 Controller 00:16.2 USB controller: Advanced Micro Devices, Inc. [AMD/ATI] SB7x0/SB8x0/SB9x0 USB EHCI Controller (prog-if 20 [EHCI]) Subsystem: Advanced Micro Devices, Inc. [AMD/ATI] SB7x0/SB8x0/SB9x0 USB EHCI Controller 03:00.0 USB controller: Fresco Logic FL1100 USB 3.0 Host Controller (rev 10) (prog-if 30 [XHCI]) Subsystem: Fresco Logic FL1100 USB 3.0 Host Controller ciclo usb # | cwc, Code: -t vfat vfat does not support *NIX permissions. Somehow, you need to fake the permissions at mount time. See man mount, the uid= and gid= options. Its seems like the autoblackmagic in Gnome isn't doing that. |
After a fresh reinstall of Gentoo, I am having some major problems with startx. lspci | grep NVIDIA Code: VGA compatible controller: NVIDIA Corporation G96 [GeForce GT 120] (rev a1) The following driver packages are installed along with xorg-server and xorg-x11: Code: x11-drivers/nvidia-drivers sys-firmware/nvidia-firmware x11-drivers/xf86-input-evdev x11-drivers/xf86-input-synaptics x11-proto/inputproto x11-misc/bumblebee x11-drivers/xf86-video-vesa x11-drivers/xf86-video-nv I generated the xorg.conf file using `sudo nvidia-xconfig` I compiled the kernel with all framebuffer and nvidia config items selected, with the exception of `nouveau` since I wish to use the basic nvidia driver. The following flag is in make.conf : Code: VIDEO_CARDS="nvidia" I've tried both nouveau and standard nvidia, but both cause the same error: https://paste.pound-python.org/show/HDP6T4rUIkdfdvgmYbeP/ Here is my /etc/X11/xorg.conf : https://paste.pound-python.org/show/x4mv3VqP3yhNZu4P5jqB/ I tried rebooting after nvidia-xconfig, with no success. My screen is an old Dell connected via the 'blue' cable to the graphics card. When I boot up the text on the screen is very large, which was not the case before my fresh reinstall, though I can't remember how I fixed this screen resolution error previously, and I'm uncertain if it is related to the screen detection error. Any help would be greatly appreciated. [Moderator edit: added [c ode] tags to preserve output layout. -Hu] | Did you look at the log yourself? Code: [ 366.872] (WW) NVIDIA(0): The NVIDIA GeForce GT 120 GPU installed in this system is [ 366.872] (WW) NVIDIA(0): supported through the NVIDIA 340.xx Legacy drivers. Please [ 366.872] (WW) NVIDIA(0): visit http://www.nvidia.com/object/unix.html for more [ 366.872] (WW) NVIDIA(0): information. The 381.22 NVIDIA driver will ignore this [ 366.872] (WW) NVIDIA(0): GPU. Continuing probe... |
Good afternoon, I'm in trouble in MATE, the same is freezing the screen, the menus work, the programs too, but I could not solve why it is freezing the screen, below the screenshot and my USE of my make.conf Screenshot of the screen: http://imgur.com/a/Zx8XV ############## # 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 more # Detailed example. CFLAGS = "- march = corei7 -O2 -pipe" # -ftree-vectorize $ {GRAPHITE} " CXXFLAGS = "$ {CFLAGS}" CHOST = "x86_64-pc-linux-gnu" LDFLAGS = "-Wl, -O1 -Wl, - as-needed" MAKEOPTS = "- j4" # These are the flags that were used in addition to what is provided by the # Profile used for building. ## USE ## GENTOO_BAD = "- kdeprefix -arts -qt3 -qt4 -bluetooth -consolekit" GENTOO_APP_SHELL = "vim-syntax symlink examples" Gentoo_MEDIA = "musicbrainz pulseaudio xine cddb alsa dvb dvd bluray network dvdread ipod audiofile dvdr dri mjpeg networkmanager" Gentoo_CODECS = "x264 x265 gsm lame mp3 ogg stream live open theora a52 win32codecs matroska xvid flac ffmpeg acc real mpeg latex" Gentoo_SYSTEM = "unicode gnutils nptl gcj udev logind acl dbus bash-competion lzo rar policykit bzip2 bidi wifi lm_sensors lm lahf_lm usb eee1394 perl python ipv4 doc jpeg mmx xvmc cpudetection v4l v4l2 fglrx equalizer vcd fpu vme de pse tsc msr pae mce cx8 apic sep mtrr Pge mca cmov pat pse36 clflush dts acpi mmx sse sse2 sse3 sse4_2 fxsr ss ht tm pbe syscal nx lm_sensors rdtscp constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf pni dtes64 monitor ds_cpl vmx est tm2 cx16 xtpr pdcm pcid popcnt ida arat dtherm tpr_shadow vnmi Flexpriority ept vpid cups gd staging d3d9 monkeys ncurses netapi nls opencl desktop pcap pipelight theads truetype udisks vaapi xml llvm systemd " Gentoo_FILESYS = "fat hfs jfs xfs ntfs reiserfs sysfs inotify" GENTOO_PRINT = "cups ppds foomatic-db gimpprint freetype xprint scanner" Gentoo_XSYS = "cairo X opengl png gif gtk xpm tiff xinerama aiglx svg gphoto2 dga lcd openexr jpg" Gentoo_DESKTOP = "libnotify rdesktop zeroconf visualization avahi startup-notification gtk3 themes" GENTOO_BROWSER = "nsplugin firefox mozdevelop xulrunner" Gentoo_COMMS = "jabber msn yahoo icq irc aim rss slp mail imap http2" USE = "GENTOO_BAD} $ {GENTOO_APP_SHELL} {GENTOO_MEDIA} {GENTOO_CODECS} {GENTOO_SYSTEM} {GENTOO_FILESYS} {GENTOO_PRINT} {GENTOO_XSYS} {GENTOO_DESKTOP} {GENTOO_BROWSER} {GENTOO_COMMS}" ACCEPT_LICENSE = "*" ## DEVICES ## INPUT_DEVICES = "evdev void synaptics" VIDEO_CARDS = "fbdev vesa mesa intel" LIRC_DEVICES = "audio audio_alsa serial" ## PORTAGE CONFIG ## PORTDIR = "/ usr / portage" DISTDIR = "$ {PORTDIR} / distfiles" PKGDIR = "$ {PORTDIR} / packages" ## Portage PORTAGE_ELOG_CLASSES = "warn error log" PORTAGE_ELOG_SYSTEM = "save" PORTAGE_NICENESS = "8" LINGUAS = "pt_BR.UTF-8 pt_BR.ISO8859-1 en_US.iso8859-1 en pt-br pt" ABI_X86 = "32 64" GRUB_PLATFORMS = "efi-64" #Plugins XFCE_PLUGINS = "brightness clock trash" ## Mirrors GENTOO_MIRRORS = "http://gentoo.gg3.net/ ftp://gg3.net/pub/linux/gentoo/" #################### # End of MAKE.CONF # #################### Thanks in advance. Marcelo Duarte Paranaíba-MS - Brazil code tags added for easier reading -- NeddySeagoon | Only some notes on your make.conf. Quote: GENTOO_BAD = "- kdeprefix -arts -qt3 -qt4 -bluetooth -consolekit" You have a space from '-' and kdeprefix, remove it. Code: USE = "GENTOO_BAD} $ {GENTOO_APP_SHELL} {GENTOO_MEDIA} {GENTOO_CODECS} {GENTOO_SYSTEM} {GENTOO_FILESYS} {GENTOO_PRINT} {GENTOO_XSYS} {GENTOO_DESKTOP} {GENTOO_BROWSER} {GENTOO_COMMS}" This line is wrong, the correct is Code: USE = "${GENTOO_BAD} ${GENTOO_APP_SHELL} ${GENTOO_MEDIA} ${GENTOO_CODECS} ${GENTOO_SYSTEM} ${GENTOO_FILESYS} ${GENTOO_PRINT} ${GENTOO_XSYS} ${GENTOO_DESKTOP} ${GENTOO_BROWSER} ${GENTOO_COMMS}" |
Hi all, I just finalized my basic Gentoo install and am about to add the graphical stuff. But yet I'm stuck while attempting to install xorg-server (following the "Xorg", "Xorg/Guide," and "radeon" wikis, i.e. kernel compilation and stuff). Since the Tux icon appears during boot, the gfx card works, I guess. My profile is plain "desktop" btw. IMO I'm struggling with two conflicts here, from which I don't know if they're related to each other. (1) So, for whatever reason I ran into "circular dependencies" when running Code: # emerge --ask x11-base/xorg-server ... * Error: circular dependencies: (dev-texlive/texlive-pstricks-2015:0/0::gentoo, ebuild scheduled for merge) depends on (dev-tex/pgf-3.0.1:0/0::gentoo, ebuild scheduled for merge) (runtime) (dev-tex/xcolor-2.11:0/0::gentoo, ebuild scheduled for merge) (runtime) (dev-texlive/texlive-pstricks-2015:0/0::gentoo, ebuild scheduled for merge) (buildtime) ... And the system would have liked to download 1.6G! – But of course it's "circular," these requirements alerts won't stop . The latest one is: Code: It might be possible to break this cycle by applying the following change: - dev-tex/xcolor-2.11 (Change USE: -doc) (I mean, what does at least all the TeX stuff has to do with X anyway?) (2) Further there's some USE flag problem, as there were a couple of unmet requirements before which I was able to partially solve be adding the required flags on command line or echoing into /etc/portage/package.use (e.g. python stuff). And when I enter the following it demands some weird python stuff for ebuilds or installed packages: Code: # emerge --ask --changed-use --deep @world These are the packages that would be merged, in order: Calculating dependencies... done! !!! The ebuild selected to satisfy ">=dev-libs/gobject-introspection-0.9.3:=" has unmet requirements. ... The following REQUIRED_USE flag constraints are unsatisfied: python_single_target_python3_4? ( python_targets_python3_4 ) (dependency required by "x11-libs/gtk+-2.24.31-r1::gentoo[introspection]" [ebuild]) . . . (dependency required by "sys-apps/hwinfo-21.4::gentoo" [installed]) (dependency required by "@selected" [set]) (dependency required by "@world" [argument]) Probably I installed something that needed (a version of) python , which I flagged globally then. Well, dev-lang/python-3.4.5 is already installed. And I read the python and python targets wikis, and also this thread – but that wouldn't make me much wiser. Changing the global python flags in /etc/portage/make.conf from Code: PYTHON_TARGETS="python2_7 (-pypy)" to Code: PYTHON_SINGLE_TARGET="python3_4" PYTHON_TARGETS="python2_7 python3_4 (-pypy)" would cause an even larger download and another circular dependency (i.e. with the dev-python/Babel-2.3.4:0/0::gentoo ebuild) So what am I supposed to do? | cambrian wrote: ](I mean, what does at least all the TeX stuff has to do with X anyway?) Post full emerge output, probably some use flag (use also -t option with emerge)? (2) comment use flag that you added in make.conf and then post your emerge --info |
I installed ibus for Chinese input. Here is my .xinitrc Code: phoenixstareclipse@PhoenixStarEclipse ~ $ cat .xinitrc #! /bin/bash export GTK_IM_MODULE=ibus export XMODIFIERS="@im=ibus" export QT_IM_MODULE=ibus ibus-daemon -drx ./shadowsocks.sh & exec startxfce4 There is something wrong with my ibus. Everytime I type startx, the ibus-daemon is activated and is able to be used in most of the applications, such as gedit and sakura terminal. However, I can't use it in Chromium. But after I kill the ibus-daemon and restart it by typing Code: phoenixstareclipse@PhoenixStarEclipse ~ $ killall ibus-daemon phoenixstareclipse@PhoenixStarEclipse ~ $ ibus-daemon -drx -------------------- In addition I can also correct this problem by typing Code: source .xinitrc . -------------------- I am able to use ibus in chromium. How can I fix this issue? | It seems that if I launch ibus-daemon after xfce finished startup it will work correctly,so set ibus-daemon -drx autostart in Applications --> settings --> Session and startup and the problem will be solved. The solution to all WMs are simular. |
Hi! Today I have rebooted my computer and figured out that slim doesn't show login screen. This week I have upgraded few packages, but non of them for my opinion are needed for slim. Code: dev-libs/vala-common dev-libs/libunistring virtual/perl-File-Path dev-perl/XML-SAX-Base dev-perl/Archive-Zip media-libs/freetype net-dns/libidn2 media-libs/libzen net-vpn/openvpn net-dns/bind-tools net-libs/gnutls media-libs/libmediainfo dev-lang/vala:0.34 net-mail/mailutils net-libs/libvncserver dev-qt/qtcore:4 dev-qt/qttranslations:4 dev-qt/qtscript:4 dev-qt/qtgui:4 dev-qt/qtsql:4 dev-qt/qt3support dev-qt/qtxmlpatterns:4 dev-qt/qttest:4 dev-qt/qtdbus:4 dev-qt/qtopengl:4 dev-qt/qtsvg:4 dev-qt/qtwebkit:4 x11-libs/gtk+:3 app-crypt/gnupg net-analyzer/wireshark www-client/firefox media-video/mediainfo app-emulation/wine app-emulation/winetricks sys-apps/openrc app-eselect/eselect-postgresql dev-db/postgresql:9.5 cat /var/log/slim.log slim: waiting for X server to shut down slim: waiting for X server to begin accepting connections. I have installed lightdm. It shows login screen. Also it is possible to run startx from console. | You mentioned lightdm, have you looked at the setting for the default display manager? It is possible that one of your installations may have written over that configuration file. Are you using which init system, and then might be able tonsirwvt you to the right setting. If you are using openrc then it is the configuration for xdm and the setting you want is Code: DISPLAYMANAGER="slim" In a sense, since slim runs itself as a dm for managing the login to the X session of your choice, you can first make sure slim itself is loaded before configuring it further for use with another window manager or DE. Let me know how that seems to change things, it is possible. |
Hello together, unfortunately I can't configure my HDMI connected monitor to be right of my DVI connected Monitor. The HDMI monitor is always left of the other monitor. /etc/X11/xorg.conf: Code: Section "InputDevice" Identifier "Mouse0" Driver "mouse" Option "Protocol" Option "Device" "/dev/input/mice" Option "Emulate3Buttons" "no" Option "ZAxisMapping" "4 5" EndSection Section "InputDevice" Identifier "Keyboard0" Driver "kbd" EndSection Section "Device" Identifier "Device0" Driver "nvidia" VendorName "NVIDIA Corporation" BoardName "GeForce GTX 1070" EndSection Section "Monitor" Identifier "DVI-D-0" ModelName "Philips PHL 242G5" Option "DPMS" Option "Primary" "true" Option "PreferredMode" "1920x1080_144" HorizSync 30.0 - 160.0 VertRefresh 50.0 - 146.0 EndSection Section "Monitor" Identifier "HDMI-0" ModelName "Philips PHL 242G5" Option "DPMS" Option "PreferredMode" "1920x1080_144" HorizSync 30.0 - 160.0 VertRefresh 50.0 - 146.0 Option "RightOf" "DVI-D-0" EndSection Section "Screen" Identifier "Screen0" Device "Device0" Monitor "HDMI-0" DefaultDepth 24 Option "Stereo" "0" #Option "nvidiaXineramaInfoOrder" "DFP-0" Option "SLI" "Off" Option "MultiGPU" "Off" Option "BaseMosaic" "off" SubSection "Display" Depth 24 EndSubSection EndSection /var/log/Xorg.0.log: https://paste.pound-python.org/show/mubU06dUroI24OKbuvO8/ I don't want to switch the monitors physically ... I want to understand Thanks in advance, best | Code: Option "TwinViewOrientation" "RightOf" "DFP-0" It should move hdmi monitor to the right of the other one Actually put that in Section "Screen" |
Hi, After an update into Plasma 5 I cannot mount eg. sd-card in my card reader Quote: Could not mount the following device... before that I had a question for a root password and I could use it. 5 years ago I had similair problem and the sollution was to manually set the file: Code: /usr/share/polkit-1/actions/org.freedesktop.udisks.policy Before I will do the same I have a question - is it possible to fix it in different way? | Please check your consolekit setup. Please check if you are part of the users group. |
hi all, yesterday I realized that I'm not able anymore to browse my network or to insert a specific location (ie: smb://server/dir ). I always have the "smb invalid protocol" message from dolphin. Is there something new I've missed? At the beginning of this week it worked ... This is my USE variable in make.conf : Code: USE="ads alsa avahi bluetooth cdr cifs dvd gtk hal java java6 kde lisa qt3 qt4 samba sambafs xcb xcomposite xinerama zeroconf -gnome -ipv6" I've tried to recompile kde-base/kdebase-kioslaves and kde-base/dolphin without success, any suggestions? | That's very strange because I had to recompile kdebase-kioslaves with USE=samba and then I can see samba shares in dolphin I guess you can triple check that kioslaves was built with samba useflag on. |
Hi, Since I have moved into Plasma 5 (beginning of February 2016) I cannot run Plasma 5 with Nvidia Optimus (as I can only use Intel). With Nvidia I have infamous black screen. I have tested many xorg-servers, nvidia & intel drivers (older & newer) - nothing works I posted a bug Xorg buglist a month ago - no answer: https://bugs.freedesktop.org/show_bug.cgi?id=94577 I posted a bug on Nvidia list a month ago - no answer: https://devtalk.nvidia.com/default/topic/928743/cannot-start-x-from-february-2016-nvidia-optimus/ I have consolekit with runleveldefault: https://forums.gentoo.org/viewtopic-t-1039692-highlight-.html The only error I have looks like Gentoo related (no other Linux distros had such error): Code: (EE) modeset(G0): failed to set mode: No space left on device | It looks like a problem with your configuration... |
My desktop manager is enlightenment 16 (enlightenment-1.0.17) and I have current (not unstable, ~amd64) qt libraries: (qdtcore-4.8.6-r2 and 5.6.2-r1). How do I set the QT application style that should be used if there is not a settings option? Ex: K3b has setting -> themes that works well. However, fontmatrix, which I just recompiled from source has some really dark backgrounds and text. I tried running systemsetting5, but under Apperance there is only one selection "Application Style" which brings up "Widget Style of GNOME/GTK Applications" which does not help with QT based applications. | For Qt 4 there's qtconfig-qt4 . For Qt 5 there's qt5ct . |
So the other day I was reading up on wayland, and decided to give it a shot. I added the waylamd USE flag, and ran emerge -uDN @world. However after reboot the screen stayed black, trying to startx resulted in just a black screen and the following errors: Code: libGL error : unable to load driver r600_dri.so libGL error: driver pointer missing libGL error: failed to load driver libGL error: unable to load driver swrast_dri.so libGL error: failed to loaf driver swrast Unrecognized opengl version Unrecognized opengl version After installing weston aswell, and elogind (as I read that it was required to make sddm work with wayland). Weston-launch also failed with similar error messages, it also failed to load r600. Giving up on trying to get wayland to work for the moment, I reverted all the changes I made. Yet the weird thing is that after rebuilding, x still fails to start with the same error message, how can this be? How is it that this driver pointer is still missing, and how do I get it back? | Sadly, that didn't work. I also checked /var/log/messages for any additional output, but it didn't show anything out of the ordinary. Also, here is my make.conf: https://bpaste.net/show/5918da83f273 EDIT: It seems that x does start when eselect mesa 64/32 bit software renderer is set to classic instead of gallium, it is however much slower and kwin crashes immediatly with a seg fault. |
Failed to emerge kde-plasma/plasma-desktop-5.8.6, the log file below /var/tmp/portage/kde-plasma/plasma-desktop-5.8.6/temp/build.log indicates following error: /usr/lib64/libharfbuzz.so.0: undefined reference to `FT_Get_Var_Blend_Coordinates' collect2: error: ld returned 1 exit status make[2]: *** [kcms/kfontinst/dbus/CMakeFiles/fontinst_helper.dir/build.make:231: kcms/kfontinst/dbus/fontinst_helper] Error 1 Can anyone help? Thanks. emerge --info '=kde-plasma/plasma-desktop-5.8.6::gentoo gives the following output: --- Invalid atom in /etc/portage/package.use: dev-libs/wayland-1.7.0 --- Invalid atom in /etc/portage/package.use: media-libs/mesa-11.0.6 --- Invalid atom in /etc/portage/package.license: app-arch/rar-5.3.0 Portage 2.3.5 (python 3.4.5-final-0, default/linux/amd64/13.0/desktop/plasma, gcc-4.9.4, glibc-2.23-r3, 4.4.6-gentoo x86_64) ================================================================= System Settings ================================================================= System uname: Linux-4.4.6-gentoo-x86_64-Intel-R-_Xeon-R-_CPU_E5-2650_0_@_2.00GHz-with-gentoo-2.3 KiB Mem: 16414124 total, 6651360 free KiB Swap: 4194300 total, 4165196 free Timestamp of repository gentoo: Tue, 16 May 2017 03:30:01 +0000 sh bash 4.3_p48-r1 ld GNU ld (Gentoo 2.25.1 p1.1) 2.25.1 app-shells/bash: 4.3_p48-r1::gentoo dev-java/java-config: 2.2.0-r3::gentoo dev-lang/perl: 5.24.1-r1::gentoo dev-lang/python: 2.7.12::gentoo, 3.4.5::gentoo dev-util/cmake: 3.7.2::gentoo dev-util/pkgconfig: 0.28-r2::gentoo sys-apps/baselayout: 2.3::gentoo sys-apps/openrc: 0.24.2::gentoo sys-apps/sandbox: 2.10-r3::gentoo sys-devel/autoconf: 2.13::gentoo, 2.69::gentoo sys-devel/automake: 1.11.6-r1::gentoo, 1.14.1::gentoo, 1.15-r2::gentoo sys-devel/binutils: 2.25.1-r1::gentoo, 2.26.1::gentoo sys-devel/gcc: 4.8.5::gentoo, 4.9.3::gentoo, 4.9.4::gentoo, 5.4.0-r3::gentoo sys-devel/gcc-config: 1.7.3::gentoo sys-devel/libtool: 2.4.6-r3::gentoo sys-devel/make: 4.2.1::gentoo sys-kernel/linux-headers: 4.4::gentoo (virtual/os-headers) sys-libs/glibc: 2.23-r3::gentoo Repositories: gentoo location: /usr/portage sync-type: rsync sync-uri: rsync://rsync.gentoo.org/gentoo-portage priority: -1000 ACCEPT_KEYWORDS="amd64" ACCEPT_LICENSE="* -@EULA" CBUILD="x86_64-pc-linux-gnu" CFLAGS="-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 /etc/texmf/language.dat.d /etc/texmf/language.def.d /etc/texmf/updmap.d /etc/texmf/web2c" CXXFLAGS="-O2 -pipe" DISTDIR="/usr/portage/distfiles" FCFLAGS="-O2 -pipe" FEATURES="assume-digests binpkg-logs config-protect-if-modified distlocks ebuild-locks fixlafiles merge-sync 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" GENTOO_MIRRORS="http://gentoo.cites.uiuc.edu/pub/gentoo/" LDFLAGS="-Wl,-O1 -Wl,--as-needed" MAKEOPTS="-j17" PKGDIR="/usr/portage/packages" PORTAGE_CONFIGROOT="/" PORTAGE_RSYNC_OPTS="--recursive --links --safe-links --perms --times --omit-dir-times --compress --force --whole-file --delete --stats --human-readable --timeout=180 --exclude=/distfiles --exclude=/local --exclude=/packages --exclude=/.git" PORTAGE_TMPDIR="/var/tmp" USE="X a52 aac acl acpi alsa amd64 berkdb bindist bluetooth branding bzip2 cairo cdda cdr cli consolekit corefonts cracklib crypt cups cxx dbus declarative dri dts dvd dvdr emboss encode exif fam firefox flac fortran gdbm gif glamor gpm gtk iconv ipv6 jpeg kde kipi kwallet lcms ldap libnotify mad mmx mng modules mp3 mp4 mpeg multilib ncurses nls nptl ogg opengl openmp pam pango pcre pdf phonon plasma png policykit ppds qml qt3support qt4 qt5 readline sdl seccomp semantic-desktop session spell sse sse2 ssl startup-notification svg tcpd tiff truetype udev udisks unicode upower usb vorbis widgets wxwidgets x264 xattr xcb xcomposite xinerama xml xscreensaver xv xvid zlib" ABI_X86="64" 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="kexi words flow plan sheets stage tables krita karbon braindump author" 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="evdev" KERNEL="linux" LCD_DEVICES="bayrad cfontz cfontz633 glk hd44780 lb216 lcdm001 mtxorb ncurses text" LIBREOFFICE_EXTENSIONS="presenter-console presenter-minimizer" OFFICE_IMPLEMENTATION="libreoffice" PHP_TARGETS="php5-6" PYTHON_SINGLE_TARGET="python3_4" PYTHON_TARGETS="python2_7 python3_4" RUBY_TARGETS="ruby21 ruby22" USERLAND="GNU" VIDEO_CARDS="nvidia" XTABLES_ADDONS="quota2 psd pknock lscan length2 ipv4options ipset ipp2p iface geoip fuzzy condition tee tarpit sysrq steal rawnat logmark ipmark dhcpmac delude chaos account" Unset: CC, CPPFLAGS, CTARGET, CXX, EMERGE_DEFAULT_OPTS, INSTALL_MASK, LC_ALL, PORTAGE_BUNZIP2_COMMAND, PORTAGE_COMPRESS, PORTAGE_COMPRESS_FLAGS, PORTAGE_RSYNC_EXTRA_OPTS, USE_PYTHON | You can post full build.log with wgetpaste ? Also post output of this command Code: $ emerge -pvq freetype harfbuzz |
So once again Apple is messing with people with IOS 10 and broke USB cable mounting. Google led me to think the problem was that app-pda/libimobiledevice needed to be updated, but the upstream author hasn't made a new release for ages. I made my own live ebuild for app-pda/libimobiledevice that uses the latest from github, and now I can once again mount the iphone (using ifuse) using the commands from the WIKI: https://wiki.gentoo.org/wiki/Apple_iPod,_iPad,_iPhone However, the "camera" plugin in dolphin is still not able to access the pictures like it used to do before IOS 10. The steps I do: 1) Connect iphone using USB cable 2) Device notifier shows a camera is available 3) I click on the camera in the notifier which opens dolphin pointing to the "camera:/" location. 4) In dolphin one folder is shown: "Apple iPhone 5 (PTP mode)". 5) I open it and the phone displays the "Trust this computer" dialog. I select "Trust". 6) I should now see the DCIM folder in dolphin but instead I get "store_feedface" which is an empty folder. The empty "store_feedface" folder is what I used to get when I hadn't selected "trust computer" on the phone, but now I always get it even though I told the phone to trust. The interesting part is that I can mount and access the phone data (including pictures in the DCIM folder) using ifuse. But why can't dolphin access it? I guess where I'm stuck right now is that I can't find any info on what the camera protocol plugin in dolphin does and what underlying libraries/packages it uses. I thought it relied on libimobiledevice, but I guess not since it's not working? | Hello. Would it be possible to share your ebuild ? I'm facing the same issue : no longer possible to mount my iPhone... And I'm far from beeing an expert in ebuild hacking ! Thanks ! |
Yesterday, I got the update from qt-4.8.6 tot qt-4.8.7 (on a mosly stable kde5 box). A first cosmetic effect is that the kde4 applications do not use the same theme anymore as the kde5 apps. A second effect is that kmail (kde4 application) cannot access my mail anymore; this may be an akonadi issue. Is anyone seeing issues as well? In any case, what can I try to fix stuff? (revdep-rebuild doesn't see the need to re-emerge the kde4 applications, which makes sense, as the api should not have changed.) | See here: https://forums.gentoo.org/viewtopic-t-1063730-start-0-postdays-0-postorder-asc-highlight-.html This probably has something to do with Qt4 plugins, which have to be rebuilt against the new version of dev-qt/qtcore. |
For the past week my ancient Nvidia GeForce 8600 GT graphics card using nvidia-drivers-340.98 has frozen once per boot. This last freeze was the most serious and didn't recover: I had to hard reboot. Here are the NVRM messages in /var/log/messages : Code: Oct 19 18:30:15 localhost kernel: NVRM: GPU at PCI:0000:01:00: GPU-9c0eedb0-fcaa-d6b7-691a-b3598b871b17 Oct 19 18:30:15 localhost kernel: NVRM: Xid (PCI:0000:01:00): 69, Class Error: ChId 000c, Class 0000502d, Offset 00000250, Data ffffffff, ErrorCode 0000000c Oct 19 18:30:15 localhost kernel: NVRM: Xid (PCI:0000:01:00): 69, Class Error: ChId 000c, Class 0000502d, Offset 00000250, Data ffffffff, ErrorCode 0000000c Oct 19 18:30:16 localhost kernel: NVRM: Xid (PCI:0000:01:00): 13, Graphics Exception: ChID 000c, Class 00008297, Offset 00000e08, Data 04380000 Oct 19 18:30:16 localhost kernel: NVRM: Xid (PCI:0000:01:00): 69, Class Error: ChId 000e, Class 0000502d, Offset 00000250, Data ffffffff, ErrorCode 0000000c Oct 19 18:30:17 localhost kernel: NVRM: Xid (PCI:0000:01:00): 13, Graphics Exception: ChID 000c, Class 00008297, Offset 00000e08, Data 04380000 Oct 19 18:30:17 localhost kernel: NVRM: Xid (PCI:0000:01:00): 69, Class Error: ChId 000c, Class 0000502d, Offset 00000250, Data ffffffff, ErrorCode 0000000c Oct 19 18:30:18 localhost kernel: NVRM: Xid (PCI:0000:01:00): 13, Graphics Exception: ChID 000c, Class 00008297, Offset 00000e08, Data 04380000 Oct 19 18:30:44 localhost kernel: NVRM: Xid (PCI:0000:01:00): 69, Class Error: ChId 000e, Class 0000502d, Offset 00000250, Data ffffffff, ErrorCode 0000000c Oct 19 18:30:45 localhost kernel: NVRM: Xid (PCI:0000:01:00): 8, Channel 00000007 Oct 19 18:30:47 localhost kernel: NVRM: os_schedule: Attempted to yield the CPU while in atomic or interrupt context Oct 19 18:30:49 localhost kernel: NVRM: os_schedule: Attempted to yield the CPU while in atomic or interrupt context Oct 19 18:30:49 localhost kernel: NVRM: GPU at 0000:01:00.0 has fallen off the bus. Any debugging hints will be gratefully received. In particular, I'd like to know if I need a new graphics card. [SOLVED] I had an extra, identical video card but this one produced the same freezes and NVRM messages as the old one. In fact, I'm running VMware and my vmware.log complained of a bug in the 340.98 drivers and strongly suggested that I upgrade to newer drivers! So, I conclude that the NVRM messages listed above are due to buggy drivers rather than buggy hardware (as suggested by Hu, below). I bought a newer card which uses the latest drivers, 375.26, and have had no problems nor NVRM messages for three months. [/SOLVED] | As I read the eix output, that is an odd choice of version for x11-drivers/nvidia-drivers . It is marked as testing on both x86 and amd64, but there are newer stable and testing versions available. I suggest upgrading to the latest stable or testing version (as appropriate for your system) to see if the problem has been fixed. Before replacing the card, I would also try using the open source drivers. |
Hello has anyone else noticed a problem where upon boot sddm will display briefly then the screen will be black and flicker a bit and get stuck? Switching a virtual terminal works eventually, otherwise you can't do anything. I also tried disabling sddm and using startx but KDE errors out. Starting fluxbox manually with startx works though so it seems to be a KDE related problem and not X. Using nouveau and systemd if that matters. Nothing obvious stood out in the journal but I will try to post some more log output later. I just wanted to see if this was only me having the problem. I've made no other changes other than system updates but it's been about three weeks since I last updated. | sddm is not a KDE product, if this issue is happening before you even log in to Plasma session this is completely unrelated. You can start Plasma-5 via startx as well. |
Dear all, on my htpc (primarily running mythtv) I also have several game emulators installed. One of them is sdlmame, which worked well for quite a while. However, it has been a few months since I last used it. In the meanwhile I upgraded the hardware from an Ivy Bridge processor to a new Skylake processor. (Always using the integrated GPU) Prozessor: Intel(R) Core(TM) i3-6100T CPU @ 3.20GHz Board: MSI H170M PRO-VDH (MS-7982) VGA compatible controller: Intel Corporation HD Graphics 530 (rev 06) Now when I try to start sdlmame, the following error message shows up: Code: X Error of failed request: BadMatch (invalid parameter attributes) Major opcode of failed request: 42 (X_SetInputFocus) Serial number of failed request: 169 Current serial number in output stream: 170 After looking into the source code of sdlmame I can say that this error message is the result of functioncall SDL_CreateWindow. OK, to simplify things I decided to test this SDL function separately as described in the offical libsdl wiki. [1] But also the shown code example in the wiki produces the exactly same error message on my htpc. So I upgraded xorg-server, mesa, libdrm and libsdl2 to the latest versions available in testing branch: Code: x11-libs/libdrm-2.4.80::gentoo USE="-libkms -static-libs -valgrind" ABI_X86="32 (64) (-x32)" VIDEO_CARDS="intel -amdgpu (-exynos) (-freedreno) -nouveau (-omap) -radeon (-tegra) (-vc4) (-vivante) -vmware" media-libs/mesa-17.1.0::gentoo USE="bindist classic dri3 egl gallium gbm llvm nptl vaapi -d3d9 -debug -gles1 -gles2 -opencl -openmax -osmesa -pax_kernel -pic (-selinux) -unwind -valgrind -vdpau -vulkan -wayland -xa -xvmc" ABI_X86="32 (64) (-x32)" VIDEO_CARDS="i965 intel (-freedreno) -i915 -imx -nouveau -r100 -r200 -r300 -r600 -radeon -radeonsi (-vc4) (-vivante) -vmware" x11-base/xorg-drivers-1.19::gentoo INPUT_DEVICES="evdev keyboard mouse -acecad -aiptek -elographics -fpit -hyperpen -joystick -libinput -mutouch -penmount -synaptics -tslib -vmmouse -void -wacom" VIDEO_CARDS="i965 intel -amdgpu -apm -ark -ast -chips -cirrus -dummy -epson -fbdev (-fglrx) (-freedreno) (-geode) -glint -i128 (-i740) -i915 -mach64 -mga -neomagic (-newport) -nouveau -nv -nvidia (-omap) -qxl -r128 -radeon -radeonsi -rendition -s3 -s3virge -savage -siliconmotion -sis -sisusb (-sunbw2) (-suncg14) (-suncg3) (-suncg6) (-sunffb) (-sunleo) (-suntcx) -tdfx (-tegra) -tga -trident -tseng -vesa -via -virtualbox -vmware (-voodoo)" x11-base/xorg-server-1.19.3:0/1.19.3::gentoo USE="glamor suid udev xorg -debug -dmx -doc -ipv6 -kdrive -libressl -minimal (-selinux) -static-libs -systemd -tslib -unwind -wayland -xephyr -xnest -xvfb" media-libs/libsdl2-2.0.5::gentoo USE="X alsa dbus haptic joystick opengl sound threads udev video (-altivec) (-custom-cflags) (-fusionsound) -gles -nas -oss -pulseaudio -static-libs -tslib -wayland -xinerama -xscreensaver" ABI_X86="(64) -32 (-x32)" CPU_FLAGS_X86="mmx sse sse2 -3dnow" But unfortunately this didn't solve the issue. I also tested switching the video driver used by xorg-server from modesetting (provided by x11-base/xorg-server itself) to intel (provided x11-drivers/xf86-video-intel). But as this also didn't solve the problem, I switched back to modesetting. I'm using evilwm as window manager. I'm running out of ideas. What else could I try to get rid of this problem or at least get closer to the root cause? Every suggestion is appreciated! Thanks a lot! Kind regards Leon [1] https://wiki.libsdl.org/SDL_CreateWindow | Just also upgraded x11-wm/evilwm from version 1.0.1 to the latest available version 1.1.1 in testing branch and that solved the problem. I'm pretty sure I already tried this in the beginning but revert back before upgrading xorg-server, mesa, libdrm and libsdl2. |
Hi all, I'm really new to gentoo, I have used it today a lot and it works fine, I was installing a bunch of things and all. I rebooted the system and now it won't boot into my de, I remember when I rebooted I used init 6 which was probably a really stupid move but it worked always fine when I wasn't in my desktop environment. Now when I do startx, it comes up with "cinnamon just crashed you are currently running in fallback mode" and I cannot move my mouse. Did I totally break my desktop environment? It would be a shame to delete everything since I spent so long installing everything. Pic of what happens when I try to exit, sorry had to take it from my phone https://puu.sh/vCIev/b6edcae846.png Any help would be apperciated. | Try to rebuild spidermonkey and cjs Code: # emerge -1 spidermonkey:24 cjs |
Hi all, I've been having a problem getting mate-terminal to run. Even thought I have the latest version available for ~amd64 (mate-terminal-1.16.1-r2), mate-terminal seems to be looking for what should be ancient libraries, and when it can't find them, refuses to start. For instance: Code: djhyland@araucaria ~ $ mate-terminal mate-terminal: error while loading shared libraries: libvte.so.9: cannot open shared object file: No such file or directory Obviously, no current builds in the Portage tree provide such an old library. In what is at best a foolish move, I downloaded a RHEL6-era .rpm that provides the library in question, extracted the libvte.so.9* files, and moved them to my /usr/lib64/ directory. (Don't worry, I backed up my computer before doing so, and I removed them afterwards.) When I tried running mate-terminal again, I got a similar message, only this time it was looking for libmateconf-2.so.4. After downloading two more .rpms (for libmateconf-2.so.4 and libMateCORBA-2.so.0), I no longer got a shared libraries error, but this instead: Code: djhyland@araucaria ~ $ mate-terminal Failed to summon the MateConf demon; exiting. Failed to contact configuration server; some possible causes are that you need to enable TCP/IP networking for MateCORBA, or you have stale NFS locks due to a system crash. See http://wiki.mate-desktop.org/docs:mate-conf for information. (Details - 1: GetIOR failed: GDBus.Error:org.freedesktop.DBus.Error.ServiceUnknown: The name org.mate.MateConf was not provided by any .service files) As I've found, MateConf is no longer a part of the current versions of the Mate desktop, and that it was dropped in Mate 1.6. (The link in the error message is no help, it just describes what MateConf was.) Mate-terminal shouldn't need this package to start, nor should it need any of the far-out-of-date libraries that I hacked into my system. I have been running Mate since the earliest days of the project, starting with version 1.2 or so and updating to the current version, but these old requirements should have disappeared during the updates. As far as I can tell, mate-terminal is the only application this affects; the rest of my Mate programs work fine. Really, this is more of a nagging frustration than a real inconvenience: all of the other terminal emulators I've tried work fine and serve well for my needs. It's just a problem I've been attempting to solve from time to time through the years but have never actually solved. Other than the ill-advised .rpm method, I've tried re-emerging all of the Mate components (including using the -e and the --noconfmem options) and deleting all the mate-terminal configuration files I can find on my system, but nothing's fixed it yet. Is there something obvious I'm missing? Any ideas are welcome, and thanks in advance. | Normally this is what Code: # revdep-rebuild # in app-portage/gentoolkit is meant to try to fix. However recent versions of portage should not have let this break... which is quite odd. So you haven't tried to re-emerge x11-terms/mate-terminal? Also make sure you're running the system installed copy and not in /usr/local/bin or something else you may have copied binaries to? Code: $ which mate-terminal You might also want to re-merge Code: # emerge -1 x11-libs/vte as well. Particularly look at vte-0.29.2-r208 since that still seems to provide libvte.so.9. |
I followed this wiki: https://wiki.gentoo.org/wiki/Systemd/Installing_Gnome3_from_scratch However I get this error after trying to start gdm: "Failed to connect to bus no such file or directory..." In addition to what has in that wiki I also installed: x11-base/xorg-server startx also not starting and give an error. My video card is radeon. Do not know if it is relevant but according https://wiki.gentoo.org/wiki/Xorg/Guide need to: Code: [*] Enable modesetting on radeon by default but there is no such option in genkernel. Due to have no GUI it is difficult to attach here log files, but if it is needed please let me know and I will do it with wget etc... It was long time since last installing so I probably missed something... | emerge wgetpaste for easy file posting from the commandline, post the url's it returns here. and/or use system rescue cd/usb booted to xfce4 GUI and a chroot to have a browser in the sysresc system plus terminal access in the chroot |
Hello Gentoo-experts. Yesterday I updated some qt-ebuilds: Code: 1495119845: >>> emerge (1 of 17) dev-qt/qtcore-4.8.7-r2 to / 1495120151: ::: completed emerge (1 of 17) dev-qt/qtcore-4.8.7-r2 to / 1495120151: >>> emerge (2 of 17) dev-qt/qttranslations-4.8.7 to / 1495120165: ::: completed emerge (2 of 17) dev-qt/qttranslations-4.8.7 to / 1495120165: >>> emerge (3 of 17) dev-qt/qtscript-4.8.7 to / 1495120235: ::: completed emerge (3 of 17) dev-qt/qtscript-4.8.7 to / 1495120235: >>> emerge (4 of 17) dev-qt/qtgui-4.8.7 to / 1495120390: ::: completed emerge (4 of 17) dev-qt/qtgui-4.8.7 to / 1495120390: >>> emerge (5 of 17) dev-qt/qtdbus-4.8.7 to / 1495120439: ::: completed emerge (5 of 17) dev-qt/qtdbus-4.8.7 to / 1495120439: >>> emerge (6 of 17) dev-qt/qtsvg-4.8.7 to / 1495120486: ::: completed emerge (6 of 17) dev-qt/qtsvg-4.8.7 to / 1495120486: >>> emerge (7 of 17) dev-qt/qtopengl-4.8.7 to / 1495120536: ::: completed emerge (7 of 17) dev-qt/qtopengl-4.8.7 to / 1495120536: >>> emerge (8 of 17) dev-qt/qtxmlpatterns-4.8.7 to / 1495120626: ::: completed emerge (8 of 17) dev-qt/qtxmlpatterns-4.8.7 to / 1495120626: >>> emerge (9 of 17) dev-qt/qttest-4.8.7 to / 1495120671: ::: completed emerge (9 of 17) dev-qt/qttest-4.8.7 to / 1495120671: >>> emerge (10 of 17) dev-qt/qtwebkit-4.8.7 to / 1495121224: ::: completed emerge (10 of 17) dev-qt/qtwebkit-4.8.7 to / 1495121224: >>> emerge (11 of 17) dev-qt/qtmultimedia-4.8.7 to / 1495121270: ::: completed emerge (11 of 17) dev-qt/qtmultimedia-4.8.7 to / 1495121270: >>> emerge (12 of 17) dev-qt/qtsql-4.8.7-r1 to / 1495121316: ::: completed emerge (12 of 17) dev-qt/qtsql-4.8.7-r1 to / 1495121316: >>> emerge (13 of 17) dev-qt/qt3support-4.8.7 to / 1495121395: ::: completed emerge (13 of 17) dev-qt/qt3support-4.8.7 to / 1495121395: >>> emerge (14 of 17) dev-qt/qtdeclarative-4.8.7 to / 1495121487: ::: completed emerge (14 of 17) dev-qt/qtdeclarative-4.8.7 to / 1495121487: >>> emerge (15 of 17) dev-qt/designer-4.8.7 to / 1495121608: ::: completed emerge (15 of 17) dev-qt/designer-4.8.7 to / 1495121608: >>> emerge (16 of 17) www-client/firefox-52.1.0-r1 to / 1495122535: ::: completed emerge (16 of 17) www-client/firefox-52.1.0-r1 to / 1495122535: >>> emerge (17 of 17) net-analyzer/wireshark-2.2.6 to / 1495122839: ::: completed emerge (17 of 17) net-analyzer/wireshark-2.2.6 to / Now all kde4 applications like juk or kmail have an old windows style, not the breeze theme anymore. It seems to be the qt4 default theme. I tried to set it in Plasma-desktop again, reemerge kdelibs, no luck. Any ideas, a place to look? Thank you for your help. | Package kde-plasma/breeze have active qt4 use flag? |
Hello, I recently observed that switching to console from kde plasma does not work. Is this a known thing? How can I re-enable this? Thanks in advance for your thughts. Code: emerge --info Portage 2.3.3 (python 2.7.12-final-0, default/linux/amd64/13.0/desktop/plasma, gcc-4.9.4, glibc-2.23-r3, 4.10.8-gentoo x86_64) ================================================================= System uname: Linux-4.10.8-gentoo-x86_64-Intel-R-_Core-TM-2_Duo_CPU_E8500_@_3.16GHz-with-gentoo-2.3 KiB Swap: 9767516 total, 9767516 free Timestamp of repository gentoo: Sun, 09 Apr 2017 19:30:01 +0000 sh bash 4.3_p48-r1 ld GNU ld (Gentoo 2.26.1 p1.0) 2.26.1 app-shells/bash: 4.3_p48-r1::gentoo dev-lang/perl: 5.22.3_rc4::gentoo dev-lang/python: 2.7.12::gentoo, 3.4.5::gentoo dev-util/cmake: 3.7.2::gentoo dev-util/pkgconfig: 0.28-r2::gentoo sys-apps/baselayout: 2.3::gentoo sys-apps/openrc: 0.23.2::gentoo sys-apps/sandbox: 2.10-r3::gentoo sys-devel/autoconf: 2.13::gentoo, 2.69::gentoo sys-devel/automake: 1.11.6-r1::gentoo, 1.12.6::gentoo, 1.15::gentoo sys-devel/binutils: 2.26.1::gentoo sys-devel/gcc: 4.9.4::gentoo sys-devel/gcc-config: 1.7.3::gentoo sys-devel/libtool: 2.4.6-r3::gentoo sys-devel/make: 4.2.1::gentoo sys-kernel/linux-headers: 4.4::gentoo (virtual/os-headers) sys-libs/glibc: 2.23-r3::gentoo Repositories: gentoo location: /usr/portage sync-type: rsync sync-uri: rsync://rsync.gentoo.org/gentoo-portage priority: -1000 x-portage location: /usr/local/portage masters: gentoo priority: 0 ACCEPT_KEYWORDS="amd64" ACCEPT_LICENSE="* -@EULA" 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" FCFLAGS="-O2 -pipe" FEATURES="assume-digests binpkg-logs buildpkg candy config-protect-if-modified distlocks ebuild-locks fixlafiles merge-sync 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" GENTOO_MIRRORS="http://distfiles.gentoo.org" LANG="de_CH.UTF-8" LC_ALL="de_CH.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 alsa amd64 berkdb bluetooth branding bzip2 cairo cdda cdr cli consolekit cracklib crypt cups cxx d3d9 dbus declarative dri dri3 dts dvd dvdr emboss encode exif fam ffmpeg firefox flac fortran frei0r gdbm gif glamor gnutls gpm gtk iconv icu ipv6 jpeg kde kipi kwallet lcms ldap libnotify llvm lm_sensors mad mmx mmxext mng modules mp3 mp4 mpeg multilib ncurses nls nptl ocr ogg openal opencl opengl openmax openmp osmesa pam pango pcre pdf phonon plasma png policykit ppds pulseaudio qml qt3support qt4 qt5 readline realtime s3tc scanner sdl seccomp semantic-desktop session spell spice sse sse2 sse3 ssh ssl ssse3 staging startup-notification svg tcpd theora tiff truetype udev udisks unicode upower usb uxa vaapi vdpau vhost-net vorbis vpx webrtc-aec widgets wxwidgets x264 xattr xcb xcomposite xinerama xml xscreensaver xv xvid zlib" ABI_X86="64 32" 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="kexi words flow plan sheets stage tables krita karbon braindump author" COLLECTD_PLUGINS="df interface irq load memory rrdtool swap syslog" CPU_FLAGS_X86="mmx mmxext smp sse sse2 sse3 sse4_1 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" INPUT_DEVICES="evdev" KERNEL="linux" L10N="de el en fr it tr" LCD_DEVICES="bayrad cfontz cfontz633 glk hd44780 lb216 lcdm001 mtxorb ncurses text" LIBREOFFICE_EXTENSIONS="presenter-console presenter-minimizer" LINGUAS="de de_DE el en fr fr_FR it tr" OFFICE_IMPLEMENTATION="libreoffice" PHP_TARGETS="php5-6" PYTHON_SINGLE_TARGET="python2_7" PYTHON_TARGETS="python2_7 python3_4" RUBY_TARGETS="ruby21" SANE_BACKENDS="pixma" USERLAND="GNU" VIDEO_CARDS="amdgpu radeon radeonsi intel i965" XFCE_PLUGINS="clock power multiload-nandhp 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, PORTAGE_BUNZIP2_COMMAND, PORTAGE_COMPRESS, PORTAGE_COMPRESS_FLAGS, PORTAGE_RSYNC_EXTRA_OPTS, USE_PYTHON | Do you use systemd or OpenRC? Have you checked that your /etc/inittab is ok? Or, in case of systemd, have you enabled required services and cofigures logind.conf? Also does anything happen when you try to switch? |
Hi, I emerged x11-base/xorg-server, but apparently I did something wrong because it didn't install. When I run startx I get: Code: xauth: file /home/username/ .servaerauth.27889 does not exist /etc/X11/xinit/xserverrc: line 3: /usr/bin/X: No such file or directory xinit: giving up xinit: unable to connect to X server: Connection refused xinit: server error In the kernel, I enabled: evdev support for framebuffer devices (disabling all the sub items) framebuffer console support nouveau Then I rebuilt and rebooted. Updated /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. CFLAGS="-march=native -O2 -pipe" CXXFLAGS="${CFLAGS}" MAKEOPTS="-j2" # 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="bindist" CPU_FLAGS_X86="mmx sse sse2" PORTDIR="/usr/portage" DISTDIR="${PORTDIR}/distfiles" PKGDIR="${PORTDIR}/packages" # X Windows Configurations # (For nVidia cards) VIDEO_CARDS="nouveau" # (For mouse & keyboard support) INPUT_DEVICES="evdev synaptics" Also, is there anyway to unmerge the package? I tried Code: root #emerge -cav www-client/firefox Code: root #emerge -C www-client/firefox But both output: Code: Couldn't find 'x11-base/xorg-server' to unmerge. Problem is I cant emerge the package again as portage says it can't find it since I originally emerged it. Thank You and Best Regards | EugeneTheJeep wrote: no swap because I couldn't find any consensus on what the swap should be set to (a lot of people post not having any swap) How much more ram do I need to add? The machine only has 4GB total. Other posters addressed your immediate questions. Most people who talk about not having swap have plenty of system RAM available. As a first approximation, "plenty" would be at least as much as you could get from a single mid-range RAM stick (or several cheap ones) on the market at the time in question. A VM running with only 1G would not be a big issue using software from back when 2G-4G was considered top end, especially if you reduced the memory pressure by not using parallel jobs. Modern systems can come with 8G-16G easily, and software has unfortunately grown to fill some of that space (especially if we add in the memory pressure of parallel jobs). Adding some swap only costs you a little bit of disk space, and can save you from some very unpleasant out-of-memory events if you push the system a little farther than its available RAM can accommodate. You can also reduce memory pressure (in some cases) by reducing the number of parallel jobs. |
Hi, I experience nasty screen flicker since the emerge of gnome 3.22 a few weeks ago. To date, I did not find out whats wrong. It seems that the shell, gnome terminal and firefox are more hurt than for instance chromium Code: # emerge --info !!! Invalid PORTDIR_OVERLAY (not a dir): '/var/lib/layman/palemoon' Portage 2.3.3 (python 3.4.5-final-0, default/linux/amd64/13.0/desktop/gnome/systemd, gcc-4.9.4, glibc-2.23-r3, 4.9.16-gentoo x86_64) ================================================================= System uname: Linux-4.9.16-gentoo-x86_64-AMD_Athlon-tm-_II_X4_630_Processor-with-gentoo-2.3 KiB Mem: 12302464 total, 6704824 free KiB Swap: 0 total, 0 free Timestamp of repository gentoo: Fri, 14 Apr 2017 08:42:21 +0000 sh bash 4.3_p48-r1 ld GNU ld (Gentoo 2.26.1 p1.0) 2.26.1 distcc 3.2rc1 x86_64-pc-linux-gnu [disabled] app-shells/bash: 4.3_p48-r1::gentoo dev-java/java-config: 2.2.0-r3::gentoo dev-lang/perl: 5.22.3_rc4::gentoo dev-lang/python: 2.7.12::gentoo, 3.4.5::gentoo dev-util/cmake: 3.7.2::gentoo dev-util/pkgconfig: 0.28-r2::gentoo sys-apps/baselayout: 2.3::gentoo sys-apps/openrc: 0.23.2::gentoo sys-apps/sandbox: 2.10-r3::gentoo sys-devel/autoconf: 2.13::gentoo, 2.69::gentoo sys-devel/automake: 1.11.6-r1::gentoo, 1.13.4::gentoo, 1.15::gentoo sys-devel/binutils: 2.26.1::gentoo sys-devel/gcc: 4.9.4::gentoo sys-devel/gcc-config: 1.7.3::gentoo sys-devel/libtool: 2.4.6-r3::gentoo sys-devel/make: 4.2.1::gentoo sys-kernel/linux-headers: 4.4::gentoo (virtual/os-headers) sys-libs/glibc: 2.23-r3::gentoo Repositories: gentoo location: /usr/portage sync-type: git sync-uri: https://github.com/gentoo-mirror/gentoo priority: -1000 Rudis location: /usr/local/portage/overlay masters: gentoo priority: 0 brother-overlay location: /usr/local/overlay/brother-overlay sync-type: git sync-uri: git://github.com/stefan-langenmaier/brother-overlay.git masters: gentoo eva location: /var/lib/layman/eva masters: gentoo priority: 50 mrueg location: /var/lib/layman/mrueg 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="* -@EULA" CBUILD="x86_64-pc-linux-gnu" CFLAGS="-O2 -march=native -pipe -fomit-frame-pointer" 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/chromium/policies/managed/chrome-gnome-shell.json /etc/dconf /etc/env.d /etc/fonts/fonts.conf /etc/gconf /etc/gentoo-release /etc/opt/chrome/policies/managed/chrome-gnome-shell.json /etc/php/apache2-php7.0/ext-active/ /etc/php/cgi-php7.0/ext-active/ /etc/php/cli-php7.0/ext-active/ /etc/revdep-rebuild /etc/sandbox.d /etc/terminfo /etc/texmf/language.dat.d /etc/texmf/language.def.d /etc/texmf/updmap.d /etc/texmf/web2c" CXXFLAGS="-O2 -march=native -pipe -fomit-frame-pointer" DISTDIR="/usr/portage/distfiles" FCFLAGS="-O2 -pipe" FEATURES="assume-digests binpkg-logs config-protect-if-modified distlocks ebuild-locks fixlafiles merge-sync 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" GENTOO_MIRRORS="http://mirror.netcologne.de/gentoo/" LANG="de_DE.utf8" 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="(-selinux) 3dnow 3dnowext 3dnowprefetch X a52 aac abm acl acpi alsa amd64 apache2 apic berkdb bluetooth branding bzip2 cairo cdda cdr clflush cli cmov cmp_legacy colord constant_tsc cr8_legacy cracklib crypt cups cx16 cx8 cxx dbus de dri dts dvd dvdr eds egl emboss encode evo exif extapic extd_apicid fam ffh264vdpau ffmpeg firefox flac fortran fpu fxsr fxsr_opt gdbm gif glamor gles gnome gnome-keyring gnome-online-accounts gpm gstreamer gtk gtk3 ht hw_pstate ibs iconv icu introspection ipv6 jpeg lahf_lm lbrv lcms libnotify libsamplerate libsecret lm lm_sensors mad mca mce minizip misalignsse mmx mmxext mng modules monitor mono mp3 mp4 mpeg msr mtrr multilib mysql nautilus ncurses nls nonstop_tsc nopl npt nptl nrip_save nx ogg opengl openmp osvw pae pam pango pat pcre pdf pdpe1gb pge php pipe png policykit popcnt ppds pse pse36 pulseaudio python qt3support qt4 rdtscp readline rep_good sdl seccomp sep session skinit spell sse sse2 sse3 sse4a ssl startup-notification svg svm svm_lock syscall systemd tcpd telepathy threads thunderbird tiff tracker truetype tsc udev udisks unicode upower usb vaapi vala vdpau vme vmmcall vorbis wayland wdt weston winbind wxwidgets x264 xattr xcb xml xv xvid xvmc zlib" ABI_X86="64 32" ALSA_CARDS="rme96" 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="kexi words flow plan sheets stage tables krita karbon braindump author" COLLECTD_PLUGINS="df interface irq load memory rrdtool swap syslog" CPU_FLAGS_X86="3dnow 3dnowext mmx mmxext popcnt sse sse2 sse3 sse4a" 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="evdev wacom" KERNEL="linux" L10N="de" LCD_DEVICES="bayrad cfontz cfontz633 glk hd44780 lb216 lcdm001 mtxorb ncurses text" LIBREOFFICE_EXTENSIONS="presenter-console presenter-minimizer" LINGUAS="de" OFFICE_IMPLEMENTATION="libreoffice" PYTHON_SINGLE_TARGET="python2_7" PYTHON_TARGETS="python2_7 python3_4" QEMU_SOFTMMU_TARGETS="i386" QEMU_USER_TARGETS="i386" RUBY_TARGETS="ruby21" USERLAND="GNU" VIDEO_CARDS="nvidia nouveau" 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_BUNZIP2_COMMAND, PORTAGE_COMPRESS, PORTAGE_COMPRESS_FLAGS, PORTAGE_RSYNC_EXTRA_OPTS, USE_PYTHON I have nvidia-drivers enabled: /usr/portage/x11-drivers/nvidia-drivers/nvidia-drivers-378.13.ebuild I have no idea what could possibly be wrong... R. | Xorg.0.log yields nothing: Code: cat /var/log/Xorg.0.log [ 19.833] (--) Log file renamed from "/var/log/Xorg.pid-1320.log" to "/var/log/Xorg.0.log" [ 19.833] X.Org X Server 1.19.2 Release Date: 2017-03-02 [ 19.834] X Protocol Version 11, Revision 0 [ 19.834] Build Operating System: Linux 4.9.6-gentoo-r1 x86_64 Gentoo [ 19.834] Current Operating System: Linux eg-server 4.9.16-gentoo #1 SMP Fri Apr 14 16:35:11 CEST 2017 x86_64 [ 19.834] Kernel command line: BOOT_IMAGE=/vmlinuz-4.9.16-gentoo root=UUID=daa21940-c704-4c28-a58a-0de829b635cc ro root=PARTUUID=00023e5c-02 ro init=/usr/lib/systemd/systemd modprobe.blacklist=nouveau systemd.setenv=GPUMOD=nvidia [ 19.834] Build Date: 16 March 2017 10:46:22AM [ 19.834] [ 19.834] Current version of pixman: 0.34.0 [ 19.834] Before reporting problems, check http://wiki.x.org to make sure that you have the latest version. [ 19.834] Markers: (--) probed, (**) from config file, (==) default setting, (++) from command line, (!!) notice, (II) informational, (WW) warning, (EE) error, (NI) not implemented, (??) unknown. [ 19.834] (==) Log file: "/var/log/Xorg.0.log", Time: Fri Apr 14 18:27:00 2017 [ 19.835] (==) Using config directory: "/etc/X11/xorg.conf.d" [ 19.835] (==) Using system config directory "/usr/share/X11/xorg.conf.d" [ 19.837] (==) No Layout section. Using the first Screen section. [ 19.837] (==) No screen section available. Using defaults. [ 19.837] (**) |-->Screen "Default Screen Section" (0) [ 19.837] (**) | |-->Monitor "<default monitor>" [ 19.837] (==) No device specified for screen "Default Screen Section". Using the first device section listed. [ 19.837] (**) | |-->Device "Device0" [ 19.837] (==) No monitor specified for screen "Default Screen Section". Using a default monitor configuration. [ 19.838] (==) Automatically adding devices [ 19.838] (==) Automatically enabling devices [ 19.838] (==) Automatically adding GPU devices [ 19.838] (==) Max clients allowed: 256, resource mask: 0x1fffff [ 19.840] (WW) The directory "/usr/share/fonts/TTF/" does not exist. [ 19.840] Entry deleted from font path. [ 19.840] (WW) The directory "/usr/share/fonts/OTF/" does not exist. [ 19.840] Entry deleted from font path. [ 19.840] (WW) The directory "/usr/share/fonts/Type1/" does not exist. [ 19.840] Entry deleted from font path. [ 19.840] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/100dpi/". [ 19.840] Entry deleted from font path. [ 19.840] (Run 'mkfontdir' on "/usr/share/fonts/100dpi/"). [ 19.841] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/75dpi/". [ 19.841] Entry deleted from font path. [ 19.841] (Run 'mkfontdir' on "/usr/share/fonts/75dpi/"). [ 19.841] (==) FontPath set to: /usr/share/fonts/misc/ [ 19.841] (**) ModulePath set to "/usr/lib64/opengl/nvidia,/usr/lib64/xorg/modules" [ 19.841] (II) The server relies on udev to provide the list of input devices. If no devices become available, reconfigure udev or disable AutoAddDevices. [ 19.841] (II) Loader magic: 0x81ed80 [ 19.841] (II) Module ABI versions: [ 19.841] X.Org ANSI C Emulation: 0.4 [ 19.841] X.Org Video Driver: 23.0 [ 19.841] X.Org XInput driver : 24.1 [ 19.841] X.Org Server Extension : 10.0 [ 19.842] (++) using VT number 7 [ 19.843] (II) systemd-logind: took control of session /org/freedesktop/login1/session/c2 [ 19.843] (II) xfree86: Adding drm device (/dev/dri/card0) [ 19.844] (II) systemd-logind: got fd for /dev/dri/card0 226:0 fd 11 paused 0 [ 19.845] (--) PCI:*(0:1:0:0) 10de:1040:0000:0000 rev 161, Mem @ 0xfb000000/16777216, 0xd8000000/134217728, 0xd6000000/33554432, I/O @ 0x0000dc00/128, BIOS @ 0x????????/131072 [ 19.845] (II) LoadModule: "glx" [ 19.846] (II) Loading /usr/lib64/opengl/nvidia/extensions/libglx.so [ 19.925] (II) Module glx: vendor="NVIDIA Corporation" [ 19.925] compiled for 4.0.2, module version = 1.0.0 [ 19.925] Module class: X.Org Server Extension [ 19.927] (II) NVIDIA GLX Module 378.13 Tue Feb 7 18:25:34 PST 2017 [ 19.928] (II) LoadModule: "nvidia" [ 19.931] (II) Loading /usr/lib64/xorg/modules/drivers/nvidia_drv.so [ 19.941] (II) Module nvidia: vendor="NVIDIA Corporation" [ 19.941] compiled for 4.0.2, module version = 1.0.0 [ 19.941] Module class: X.Org Video Driver [ 19.942] (II) NVIDIA dlloader X Driver 378.13 Tue Feb 7 18:01:51 PST 2017 [ 19.942] (II) NVIDIA Unified Driver for all Supported NVIDIA GPUs [ 19.942] (II) systemd-logind: releasing fd for 226:0 [ 19.944] (II) Loading sub module "fb" [ 19.944] (II) LoadModule: "fb" [ 19.944] (II) Loading /usr/lib64/xorg/modules/libfb.so [ 19.946] (II) Module fb: vendor="X.Org Foundation" [ 19.946] compiled for 1.19.2, module version = 1.0.0 [ 19.946] ABI class: X.Org ANSI C Emulation, version 0.4 [ 19.946] (II) Loading sub module "wfb" [ 19.946] (II) LoadModule: "wfb" [ 19.946] (II) Loading /usr/lib64/xorg/modules/libwfb.so [ 19.948] (II) Module wfb: vendor="X.Org Foundation" [ 19.948] compiled for 1.19.2, module version = 1.0.0 [ 19.948] ABI class: X.Org ANSI C Emulation, version 0.4 [ 19.948] (II) Loading sub module "ramdac" [ 19.948] (II) LoadModule: "ramdac" [ 19.948] (II) Module "ramdac" already built-in [ 19.951] (II) NVIDIA(0): Creating default Display subsection in Screen section "Default Screen Section" for depth/fbbpp 24/32 [ 19.951] (==) NVIDIA(0): Depth 24, (==) framebuffer bpp 32 [ 19.951] (==) NVIDIA(0): RGB weight 888 [ 19.951] (==) NVIDIA(0): Default visual is TrueColor [ 19.951] (==) NVIDIA(0): Using gamma correction (1.0, 1.0, 1.0) [ 19.952] (**) NVIDIA(0): Option "NoLogo" "True" [ 19.952] (**) NVIDIA(0): Enabling 2D acceleration [ 20.403] (--) NVIDIA(0): Valid display device(s) on GPU-0 at PCI:1:0:0 [ 20.403] (--) NVIDIA(0): CRT-0 [ 20.403] (--) NVIDIA(0): CRT-1 [ 20.403] (--) NVIDIA(0): DFP-0 (boot) [ 20.403] (--) NVIDIA(0): DFP-1 [ 20.404] (II) NVIDIA(0): NVIDIA GPU GeForce GT 520 (GF119) at PCI:1:0:0 (GPU-0) [ 20.404] (--) NVIDIA(0): Memory: 1048576 kBytes [ 20.404] (--) NVIDIA(0): VideoBIOS: 75.19.1b.00.00 [ 20.404] (II) NVIDIA(0): Detected PCI Express Link width: 16X [ 20.420] (--) NVIDIA(GPU-0): CRT-0: disconnected [ 20.420] (--) NVIDIA(GPU-0): CRT-0: 400.0 MHz maximum pixel clock [ 20.420] (--) NVIDIA(GPU-0): [ 20.421] (--) NVIDIA(GPU-0): CRT-1: disconnected [ 20.421] (--) NVIDIA(GPU-0): CRT-1: 400.0 MHz maximum pixel clock [ 20.421] (--) NVIDIA(GPU-0): [ 20.453] (--) NVIDIA(GPU-0): ProView/EMC/PTS (DFP-0): connected [ 20.453] (--) NVIDIA(GPU-0): ProView/EMC/PTS (DFP-0): Internal TMDS [ 20.453] (--) NVIDIA(GPU-0): ProView/EMC/PTS (DFP-0): 330.0 MHz maximum pixel clock [ 20.453] (--) NVIDIA(GPU-0): [ 20.453] (--) NVIDIA(GPU-0): DFP-1: disconnected [ 20.453] (--) NVIDIA(GPU-0): DFP-1: Internal TMDS [ 20.453] (--) NVIDIA(GPU-0): DFP-1: 165.0 MHz maximum pixel clock [ 20.453] (--) NVIDIA(GPU-0): [ 20.455] (==) NVIDIA(0): [ 20.455] (==) NVIDIA(0): No modes were requested; the default mode "nvidia-auto-select" [ 20.455] (==) NVIDIA(0): will be used as the requested mode. [ 20.455] (==) NVIDIA(0): [ 20.456] (II) NVIDIA(0): Validated MetaModes: [ 20.456] (II) NVIDIA(0): "DFP-0:nvidia-auto-select" [ 20.456] (II) NVIDIA(0): Virtual screen size determined to be 1680 x 1050 [ 20.472] (--) NVIDIA(0): DPI set to (90, 88); computed from "UseEdidDpi" X config [ 20.472] (--) NVIDIA(0): option [ 20.472] (--) Depth 24 pixmap format is 32 bpp [ 20.472] (II) NVIDIA: Using 12288.00 MB of virtual memory for indirect memory [ 20.472] (II) NVIDIA: access. [ 20.474] (II) NVIDIA(0): ACPI: failed to connect to the ACPI event daemon; the daemon [ 20.474] (II) NVIDIA(0): may not be running or the "AcpidSocketPath" X [ 20.474] (II) NVIDIA(0): configuration option may not be set correctly. When the [ 20.474] (II) NVIDIA(0): ACPI event daemon is available, the NVIDIA X driver will [ 20.474] (II) NVIDIA(0): try to use it to receive ACPI event notifications. For [ 20.474] (II) NVIDIA(0): details, please see the "ConnectToAcpid" and [ 20.474] (II) NVIDIA(0): "AcpidSocketPath" X configuration options in Appendix B: X [ 20.474] (II) NVIDIA(0): Config Options in the README. [ 20.491] (II) NVIDIA(0): Setting mode "DFP-0:nvidia-auto-select" [ 20.533] (==) NVIDIA(0): Disabling shared memory pixmaps [ 20.533] (==) NVIDIA(0): Backing store enabled [ 20.533] (==) NVIDIA(0): Silken mouse enabled [ 20.535] (==) NVIDIA(0): DPMS enabled [ 20.535] (II) Loading sub module "dri2" [ 20.535] (II) LoadModule: "dri2" [ 20.535] (II) Module "dri2" already built-in [ 20.535] (II) NVIDIA(0): [DRI2] Setup complete [ 20.535] (II) NVIDIA(0): [DRI2] VDPAU driver: nvidia [ 20.535] (--) RandR disabled [ 20.537] (II) Initializing extension GLX [ 20.537] (II) Indirect GLX disabled. [ 20.613] (II) config/udev: Adding input device Power Button (/dev/input/event1) [ 20.613] (**) Power Button: Applying InputClass "evdev keyboard catchall" [ 20.613] (**) Power Button: Applying InputClass "system-keyboard" [ 20.613] (II) LoadModule: "evdev" [ 20.614] (II) Loading /usr/lib64/xorg/modules/input/evdev_drv.so [ 20.615] (II) Module evdev: vendor="X.Org Foundation" [ 20.615] compiled for 1.19.2, module version = 2.10.5 [ 20.615] Module class: X.Org XInput Driver [ 20.615] ABI class: X.Org XInput driver, version 24.1 [ 20.615] (II) Using input driver 'evdev' for 'Power Button' [ 20.616] (II) systemd-logind: got fd for /dev/input/event1 13:65 fd 36 paused 0 [ 20.616] (**) Power Button: always reports core events [ 20.616] (**) evdev: Power Button: Device: "/dev/input/event1" [ 20.616] (--) evdev: Power Button: Vendor 0 Product 0x1 [ 20.616] (--) evdev: Power Button: Found keys [ 20.616] (II) evdev: Power Button: Configuring as keyboard [ 20.616] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input1/event1" [ 20.616] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6) [ 20.616] (**) Option "xkb_rules" "evdev" [ 20.616] (**) Option "xkb_model" "pc105" [ 20.616] (**) Option "xkb_layout" "de" [ 20.616] (**) Option "xkb_variant" "nodeadkeys" [ 20.616] (**) Option "xkb_options" "terminate:ctrl_alt_bksp" [ 20.645] (II) config/udev: Adding input device Power Button (/dev/input/event0) [ 20.645] (**) Power Button: Applying InputClass "evdev keyboard catchall" [ 20.645] (**) Power Button: Applying InputClass "system-keyboard" [ 20.645] (II) Using input driver 'evdev' for 'Power Button' [ 20.645] (II) systemd-logind: got fd for /dev/input/event0 13:64 fd 37 paused 0 [ 20.646] (**) Power Button: always reports core events [ 20.646] (**) evdev: Power Button: Device: "/dev/input/event0" [ 20.646] (--) evdev: Power Button: Vendor 0 Product 0x1 [ 20.646] (--) evdev: Power Button: Found keys [ 20.646] (II) evdev: Power Button: Configuring as keyboard [ 20.646] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0/event0" [ 20.646] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 7) [ 20.646] (**) Option "xkb_rules" "evdev" [ 20.646] (**) Option "xkb_model" "pc105" [ 20.646] (**) Option "xkb_layout" "de" [ 20.646] (**) Option "xkb_variant" "nodeadkeys" [ 20.646] (**) Option "xkb_options" "terminate:ctrl_alt_bksp" [ 20.646] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=3 (/dev/input/event13) [ 20.646] (II) No input driver specified, ignoring this device. [ 20.646] (II) This device may have been added with another device file. [ 20.647] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=7 (/dev/input/event14) [ 20.647] (II) No input driver specified, ignoring this device. [ 20.647] (II) This device may have been added with another device file. [ 20.647] (II) config/udev: Adding input device Logitech USB Laser Mouse (/dev/input/event3) [ 20.647] (**) Logitech USB Laser Mouse: Applying InputClass "evdev pointer catchall" [ 20.647] (II) Using input driver 'evdev' for 'Logitech USB Laser Mouse' [ 20.700] (II) systemd-logind: got fd for /dev/input/event3 13:67 fd 38 paused 0 [ 20.700] (**) Logitech USB Laser Mouse: always reports core events [ 20.700] (**) evdev: Logitech USB Laser Mouse: Device: "/dev/input/event3" [ 20.700] (--) evdev: Logitech USB Laser Mouse: Vendor 0x46d Product 0xc062 [ 20.700] (--) evdev: Logitech USB Laser Mouse: Found 12 mouse buttons [ 20.700] (--) evdev: Logitech USB Laser Mouse: Found scroll wheel(s) [ 20.700] (--) evdev: Logitech USB Laser Mouse: Found relative axes [ 20.700] (--) evdev: Logitech USB Laser Mouse: Found x and y relative axes [ 20.700] (II) evdev: Logitech USB Laser Mouse: Configuring as mouse [ 20.700] (II) evdev: Logitech USB Laser Mouse: Adding scrollwheel support [ 20.700] (**) evdev: Logitech USB Laser Mouse: YAxisMapping: buttons 4 and 5 [ 20.700] (**) evdev: Logitech USB Laser Mouse: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200 [ 20.700] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:12.0/usb3/3-2/3-2:1.0/0003:046D:C062.0001/input/input3/event3" [ 20.700] (II) XINPUT: Adding extended input device "Logitech USB Laser Mouse" (type: MOUSE, id 8) [ 20.700] (II) evdev: Logitech USB Laser Mouse: initialized for relative axes. [ 20.700] (**) Logitech USB Laser Mouse: (accel) keeping acceleration scheme 1 [ 20.700] (**) Logitech USB Laser Mouse: (accel) acceleration profile 0 [ 20.700] (**) Logitech USB Laser Mouse: (accel) acceleration factor: 2.000 [ 20.700] (**) Logitech USB Laser Mouse: (accel) acceleration threshold: 4 [ 20.701] (II) config/udev: Adding input device Logitech USB Laser Mouse (/dev/input/mouse0) [ 20.701] (II) No input driver specified, ignoring this device. [ 20.701] (II) This device may have been added with another device file. [ 20.701] (II) config/udev: Adding input device HDA ATI SB Line Out CLFE (/dev/input/event10) [ 20.701] (II) No input driver specified, ignoring this device. [ 20.701] (II) This device may have been added with another device file. [ 20.701] (II) config/udev: Adding input device HDA ATI SB Line Out Side (/dev/input/event11) [ 20.701] (II) No input driver specified, ignoring this device. [ 20.701] (II) This device may have been added with another device file. [ 20.702] (II) config/udev: Adding input device HDA ATI SB Front Headphone (/dev/input/event12) [ 20.702] (II) No input driver specified, ignoring this device. [ 20.702] (II) This device may have been added with another device file. [ 20.702] (II) config/udev: Adding input device HDA ATI SB Rear Mic (/dev/input/event5) [ 20.702] (II) No input driver specified, ignoring this device. [ 20.702] (II) This device may have been added with another device file. [ 20.702] (II) config/udev: Adding input device HDA ATI SB Front Mic (/dev/input/event6) [ 20.702] (II) No input driver specified, ignoring this device. [ 20.702] (II) This device may have been added with another device file. [ 20.702] (II) config/udev: Adding input device HDA ATI SB Line (/dev/input/event7) [ 20.702] (II) No input driver specified, ignoring this device. [ 20.702] (II) This device may have been added with another device file. [ 20.702] (II) config/udev: Adding input device HDA ATI SB Line Out Front (/dev/input/event8) [ 20.702] (II) No input driver specified, ignoring this device. [ 20.702] (II) This device may have been added with another device file. [ 20.703] (II) config/udev: Adding input device HDA ATI SB Line Out Surround (/dev/input/event9) [ 20.703] (II) No input driver specified, ignoring this device. [ 20.703] (II) This device may have been added with another device file. [ 20.703] (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event2) [ 20.703] (**) AT Translated Set 2 keyboard: Applying InputClass "evdev keyboard catchall" [ 20.703] (**) AT Translated Set 2 keyboard: Applying InputClass "system-keyboard" [ 20.703] (II) Using input driver 'evdev' for 'AT Translated Set 2 keyboard' [ 20.704] (II) systemd-logind: got fd for /dev/input/event2 13:66 fd 39 paused 0 [ 20.704] (**) AT Translated Set 2 keyboard: always reports core events [ 20.704] (**) evdev: AT Translated Set 2 keyboard: Device: "/dev/input/event2" [ 20.704] (--) evdev: AT Translated Set 2 keyboard: Vendor 0x1 Product 0x1 [ 20.704] (--) evdev: AT Translated Set 2 keyboard: Found keys [ 20.704] (II) evdev: AT Translated Set 2 keyboard: Configuring as keyboard [ 20.704] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio0/input/input2/event2" [ 20.704] (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD, id 9) [ 20.704] (**) Option "xkb_rules" "evdev" [ 20.704] (**) Option "xkb_model" "pc105" [ 20.704] (**) Option "xkb_layout" "de" [ 20.704] (**) Option "xkb_variant" "nodeadkeys" [ 20.704] (**) Option "xkb_options" "terminate:ctrl_alt_bksp" [ 20.704] (II) config/udev: Adding input device PC Speaker (/dev/input/event4) [ 20.704] (II) No input driver specified, ignoring this device. [ 20.704] (II) This device may have been added with another device file. [ 21.067] (--) NVIDIA(GPU-0): CRT-0: disconnected [ 21.067] (--) NVIDIA(GPU-0): CRT-0: 400.0 MHz maximum pixel clock [ 21.067] (--) NVIDIA(GPU-0): [ 21.068] (--) NVIDIA(GPU-0): CRT-1: disconnected [ 21.068] (--) NVIDIA(GPU-0): CRT-1: 400.0 MHz maximum pixel clock [ 21.068] (--) NVIDIA(GPU-0): [ 21.100] (--) NVIDIA(GPU-0): ProView/EMC/PTS (DFP-0): connected [ 21.100] (--) NVIDIA(GPU-0): ProView/EMC/PTS (DFP-0): Internal TMDS [ 21.100] (--) NVIDIA(GPU-0): ProView/EMC/PTS (DFP-0): 330.0 MHz maximum pixel clock [ 21.100] (--) NVIDIA(GPU-0): [ 21.100] (--) NVIDIA(GPU-0): DFP-1: disconnected [ 21.100] (--) NVIDIA(GPU-0): DFP-1: Internal TMDS [ 21.100] (--) NVIDIA(GPU-0): DFP-1: 165.0 MHz maximum pixel clock [ 21.100] (--) NVIDIA(GPU-0): [ 23.910] (--) NVIDIA(GPU-0): CRT-0: disconnected [ 23.910] (--) NVIDIA(GPU-0): CRT-0: 400.0 MHz maximum pixel clock [ 23.910] (--) NVIDIA(GPU-0): [ 23.911] (--) NVIDIA(GPU-0): CRT-1: disconnected [ 23.911] (--) NVIDIA(GPU-0): CRT-1: 400.0 MHz maximum pixel clock [ 23.911] (--) NVIDIA(GPU-0): [ 23.942] (--) NVIDIA(GPU-0): ProView/EMC/PTS (DFP-0): connected [ 23.942] (--) NVIDIA(GPU-0): ProView/EMC/PTS (DFP-0): Internal TMDS [ 23.942] (--) NVIDIA(GPU-0): ProView/EMC/PTS (DFP-0): 330.0 MHz maximum pixel clock [ 23.942] (--) NVIDIA(GPU-0): [ 23.943] (--) NVIDIA(GPU-0): DFP-1: disconnected [ 23.943] (--) NVIDIA(GPU-0): DFP-1: Internal TMDS [ 23.943] (--) NVIDIA(GPU-0): DFP-1: 165.0 MHz maximum pixel clock [ 23.943] (--) NVIDIA(GPU-0): [ 30.828] (II) systemd-logind: got pause for 13:64 [ 30.828] (II) systemd-logind: got pause for 13:66 [ 30.828] (II) systemd-logind: got pause for 13:67 [ 30.828] (II) systemd-logind: got pause for 13:65 |
Hi. I run a 3 monitor setup from an intel nuc NUC6i7KYK. KDE plasma ca v5.8 detects and handles all monitors nicely. How to make kde stop/pause detecting changes in the monitor setup? E.g. if I temporarily turn off one or more of the monitors I don't want it to rearrange my desktop. I don't mind that all windows on the "off" monitors will be unavailable while it's off. How to turn the automatic detection back on or unpause? monitor 1: 1600x1200 via hdmi > dvi converter cable monitor 2: 2160x3840 via mdp (portrait) monitor 3: 1024x768 via thunderbolt 3 usb-c > dvi converter plug The thunderbolt 3 > dvi converter plug actually already fools the detection system to report the 1024x768 projector as always "on". But if I turn off either of the other two monitors the change will be detected and KDE will try to rearrange the desktop leading to all kinds of things I don't like. I usually keep most windows strictly to one monitor or the other and it would be good to be able to simply turn off the monitor I don't need for a while (often hours or days depending on work tasks). | My opinion: You should set up a xorg.conf with a static setup of the screens. with these contents: left of main, resolution @ VFREQ main screen, resolution @ VFREQ right of main, resolution @ VFREQ -- Not sure how KDE influences the behaviour of X. |
Hi! I have already spent a long time on trying to solve this issue, my problem is the following: Code: /etc/init.d/xdm start gives a black screen which is flickering occasionally (some white/red horizontal stripes) Code: startx also shows a black screen. After 10 flickers, the XSession starts to load and I sometimes get to my desktop startx only worked after increasing two configurations of kdm (don't exactly remember the file right now): ServerAttempts from 1 to 3 ServerTimeout from 15 to 30 I am running amd64 with gentoo-sources 2.6.28-r5 and an ATI Radeon 1800 XT. I have the keyworded kde4 from portage. I already tried other versions of xorg-server, ati-drivers and reinstalled everything. The strange thing is that there are no errors in Xorg.0.log nor in kdm.log. Even stranger is the fact that the same setup worked fine a few weeks ago. As soon as I identified xdm not working properly, I checked emerge.log without success. here is my xorg.conf: http://pastebin.com/m43867f69 a log of a successful startx call: http://pastebin.com/m3f875b0f a log of an unsuccessful startx call: http://pastebin.com/m7cb52373 Feel free to ask for emerge --info or whatever you think might be of importance Thanks in advance! | hi, Are the monitor settings correct? vsync, hsync? Is the vesa driver with 60 hz vsync working? Try this. If this does then something with vsync or your binary driver is wrong! |
Hello, I have a recent installation of Gentoo which is configure with the "default/linux/amd64/13.0/desktop/plasma/systemd" profil. I wished use 'sddm' as display manager but I have a problem with it... When my computer start, sddm start also and the login panel is well displayed on my monitor. But all the graphic compoent of sddm is "too big": I feel that sddm appears in a resolution of 640x480. Graphic card : Nvidia GeForce GT 610 Driver : nvidia propriatary - 378.13 I have searched and tested a lot configuration but nothing works. Test 1 - file /etc/sddm.conf > Section [X11] : Code: ServerArguments=-nolisten tcp -dpi 94 Test 2 - file /etc/sddm.conf > Section [X11] : Code: ServerArguments=-nolisten tcp -dpi 96 Test 3 - file /etc/sddm.conf > Section [X11] : Code: ServerArguments=-nolisten tcp -dpi 384 Test 4 - creation of the file /etc/X11/xorg.conf with nvidia-xconfig : Code: # cat /etc/X11/xorg.conf # nvidia-xconfig: X configuration file generated by nvidia-xconfig # nvidia-xconfig: version 361.28 (buildmeister@swio-display-x64-rhel04-04) Wed Feb 3 16:27:53 PST 2016 Section "ServerLayout" Identifier "Layout0" Screen 0 "Screen0" InputDevice "Keyboard0" "CoreKeyboard" InputDevice "Mouse0" "CorePointer" EndSection Section "Files" EndSection Section "InputDevice" # generated from data in "/etc/conf.d/gpm" Identifier "Mouse0" Driver "mouse" Option "Protocol" Option "Device" "/dev/input/mice" Option "Emulate3Buttons" "no" Option "ZAxisMapping" "4 5" EndSection Section "InputDevice" # generated from default Identifier "Keyboard0" Driver "kbd" EndSection Section "Monitor" Identifier "Monitor0" VendorName "Unknown" ModelName "Unknown" HorizSync 28.0 - 33.0 VertRefresh 43.0 - 72.0 Option "DPMS" Option "UseEdidDpi" "False" Option "DPI" "96 x 96" Option "PreferredMode" "1920x1080" EndSection Section "Device" Identifier "Device0" Driver "nvidia" VendorName "NVIDIA Corporation" EndSection Section "Screen" Identifier "Screen0" Device "Device0" Monitor "Monitor0" DefaultDepth 24 SubSection "Display" Depth 24 EndSubSection EndSection => in the xorg.conf file, the nvidia driver is "361.28" but I think to have generate the file before an update of the driver Test 5 - modification of /usr/share/sddm/scripts/Xsetup : Code: # cat /usr/share/sddm/scripts/Xsetup #!/bin/sh # Xsetup - run as root before the login dialog appears #xrandr --output HDMI-0 --mode 1920x1080 --rate 60.00 --dpi 96 xrandr --dpi 96 => I have also tryed the comment command "xrandr --output HDMI-0 --mode 1920x1080 --rate 60.00 --dpi 96" Result of the tests : no change Configuration of my "use flags" : - in /etc/portage/make.conf : Code: USE="bindist abi_x86_32 pulseaudio" CPU_FLAGS_X86="aes avx avx2 fma3 mmx mmxext popcnt sse sse2 sse3 sse4_1 sse4_2 ssse3" - in /etc/portage/package.use/kortex : Code: sys-kernel/genkernel-next cryptsetup kde-plasma/plasma-meta display-manager grub gtk networkmanager pam pulseaudio sddm wallpapers sys-libs/ncurses -gpm dev-lang/python sqlite net-print/hplip scanner dev-libs/libgusb vala media-libs/harfbuzz icu app-office/libreoffice gtk3 dev-qt/qtwebkit -exceptions media-gfx/xsane gimp ocr dev-util/glade python sys-devel/gcc gcj sys-block/gparted fat kde ntfs Does anyone have an idea to help me fix this worry please?[/code] | kortex, your sddm.conf repeats itself; there are many sections which are duplicated, like X11, Theme, General and Users. Not saying that's the problem, as the settings look the same; it's just going to make it needlessly hard to configure. It looks like you did a: cat example.conf >> sddm.conf twice. |
Hi, Oddly there's no speaker volume icon in my KDE Plasma 5 system tray and I can't seem to find it in the options for the system tray. Here ( http://i.imgur.com/NVKojWK.png ) is a screenshot showing both my system tray and the system tray settings window. I saw this forum post about the same problem but with an older version of KDE Plasma. As a result of which I checked that kmix was installed, which it was. I also reinstalled kmix with the pulseaudio USE flag enabled (as by default it wasn't, only ALSA support was enabled), but it made no difference. Thanks for your time, Brenton | Have you started kmix yet? |
Seems like it doesn't link... Have no emerge info because of reboot after building against /var/tmpfs. Code: var/tmp/portage/media-gfx/blender-2.78a/work/blender-2.78a/intern/cycles/subd/subd_patch.cpp: In member function ‘virtual ccl::BoundBox ccl::LinearQuadPatch::bound()’: /var/tmp/portage/media-gfx/blender-2.78a/work/blender-2.78a/intern/cycles/subd/subd_patch.cpp:77:10: error: alignment of array elements is greater than element size BoundBox LinearQuadPatch::bound() Am I the only one? Any clue? Thks 4 ur attention. | I think, if the problem is the switch from gcc-4.x to gcc-5, the better way is command revdep-rebuild --library 'libstdc\+\+\.so\.6' -- --exclude gcc ( reference ). |
Hello After I managed to finish my first gentoo installation. I decided to try other variations: different cflags systemd and wayland. Everything went fine but when I try to access weston.ini or sway.ini with "nano ~/.config/weston.ini" It says /root/.config directory does not exist. Things I did different from the first install are different kernel configuration, different USE flags and CFLAGS, I also did not install systemlogger and displaymanager. Could anyone help me with this? I am fairly new to linux also I am not a native english speaker so go easy please. Let me know if make.conf or kernel config is needed. Thanks in advance. | It's a hidden directory (starts with a dot). To "see" it you need to pass -a switch to ls for example. sh: ls -lhaF /home/$USER/ |
I'm not entirely sure what's happened here. I started my computer today and my touchpad wouldn't work. Not at all - no pointer movement, no clicking. Didn't even seem to recognize that it existed. But it worked yesterday. I reviewed yesterday's updates, but it was mainly the plasma 5.9.4 update. Nothing X related. Eventually I figured out that synaptics/evdev drivers got installed (not yesterday, but on the 19th, oddly) and removed them, to get back to just libinput, which I've been running for a couple of months That got my touchpad mostly functioning, but scrolling isn't working. When I launch xev and test things, it seems to recognize the events. scroll up is button 4, down is button 5, left is button 6, and right is button 7. But if I try those same actions in an application, nothing happens. The relevant section of my Xorg log is below. I don't see anything amiss, and the options match my configuration file. Code: [ 10.515] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/event12) [ 10.516] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "libinput touchpad catchall" [ 10.516] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "clickpad" [ 10.516] (II) Using input driver 'libinput' for 'SynPS/2 Synaptics TouchPad' [ 10.516] (**) SynPS/2 Synaptics TouchPad: always reports core events [ 10.516] (**) Option "Device" "/dev/input/event12" [ 10.516] (**) Option "_source" "server/udev" [ 10.516] (II) input device 'SynPS/2 Synaptics TouchPad', /dev/input/event12 is tagged by udev as: Touchpad [ 10.516] (II) input device 'SynPS/2 Synaptics TouchPad', /dev/input/event12 is a touchpad [ 10.535] (**) Option "Tapping" "on" [ 10.535] (**) Option "TappingButtonMap" "lmr" [ 10.535] (**) Option "SendEventsMode" "disabled-on-external-mouse" [ 10.535] (**) Option "ScrollMethod" "twofinger" [ 10.535] (**) Option "ClickMethod" "buttonareas" [ 10.535] (**) Option "DisableWhileTyping" "on" [ 10.535] (**) Option "HorizontalScrolling" "on" [ 10.535] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio2/input/input21/event12" [ 10.535] (II) XINPUT: Adding extended input device "SynPS/2 Synaptics TouchPad" (type: TOUCHPAD, id 12) [ 10.535] (**) Option "AccelerationScheme" "none" [ 10.535] (**) SynPS/2 Synaptics TouchPad: (accel) selected scheme none/0 [ 10.535] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration factor: 2.000 [ 10.535] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration threshold: 4 [ 10.535] (II) input device 'SynPS/2 Synaptics TouchPad', /dev/input/event12 is tagged by udev as: Touchpad [ 10.535] (II) input device 'SynPS/2 Synaptics TouchPad', /dev/input/event12 is a touchpad [ 10.536] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/mouse0) [ 10.536] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "clickpad" [ 10.536] (II) Using input driver 'libinput' for 'SynPS/2 Synaptics TouchPad' [ 10.536] (**) SynPS/2 Synaptics TouchPad: always reports core events [ 10.536] (**) Option "Device" "/dev/input/event12" [ 10.536] (**) Option "_source" "server/udev" [ 10.536] (II) input device 'SynPS/2 Synaptics TouchPad', /dev/input/event12 is tagged by udev as: Touchpad [ 10.536] (II) input device 'SynPS/2 Synaptics TouchPad', /dev/input/event12 is a touchpad [ 10.547] (**) Option "Tapping" "on" [ 10.547] (**) Option "TappingButtonMap" "lmr" [ 10.547] (**) Option "SendEventsMode" "disabled-on-external-mouse" [ 10.547] (**) Option "ScrollMethod" "twofinger" [ 10.547] (**) Option "ClickMethod" "buttonareas" [ 10.547] (**) Option "DisableWhileTyping" "on" [ 10.547] (**) Option "HorizontalScrolling" "on" [ 10.547] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio2/input/input21/mouse0" [ 10.547] (II) XINPUT: Adding extended input device "SynPS/2 Synaptics TouchPad" (type: TOUCHPAD, id 13) [ 10.547] (**) Option "AccelerationScheme" "none" [ 10.547] (**) SynPS/2 Synaptics TouchPad: (accel) selected scheme none/0 [ 10.547] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration factor: 2.000 [ 10.547] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration threshold: 4 [ 10.547] (II) input device 'SynPS/2 Synaptics TouchPad', /dev/input/event12 is tagged by udev as: Touchpad [ 10.547] (II) input device 'SynPS/2 Synaptics TouchPad', /dev/input/event12 is a touchpad | Try downgrading libinput to 1.4.2 if you updated it recently - new versions seem to be extremely buggy. |
recently my firefox icon at the kde status bar become a broken paper with a "!" in middle. Not the orange colored global. anybody know it is why? | Hi DixieLand, I have solved the problem. I found there is old firefox residue file Firefox.desktop in my ~/.local/share/applications. I unmerge my current firefox first then delete Firefox.desktop, then reinstall firefox again. This problem gone. |
I am experiencing a very strange issue with kde plasma. I use startx and I am not running systemd. Here is the content of my .xinitrc exec ck-launch-session /usr/bin/startkde When I run startx I briefly see the kde logo and the little circle animation; very shortly thereafter the screen goes blank and the system enters into "sleep mode" i.e. there is no longer any video signal going to the monitor, but the power is still on. At this point, it is unclear whether the issue is related to a recent software update or to something else. The system log contains nothing helpful and sometimes, there is a block of garbage (a long sequence of "^@"). I am running out of ideas. Any suggestion would be appreciated. More info: * My system is relatively new ( about 1 1/2 yrs old) : i7 5280k 64 Gb, Zotac Nvidia GeForce GT 730 (nouveau driver) * Although a hardware failure is always a possibility, it seems unlikely. - Windows 10 runs without any apparent issues. - I can boot the 2016 gentoo live dvd and run kde/plasma from there. - I can start Xorg with another window manager * opengl is working. I can run the demo app "glxgears" from a plain x terminal in a non-kde X environment. * I tried rebuilding all the packages from kde-plasma and kde-frameworks. | When it fails, can you use Ctrl+Alt+F1 to switch to a text console (which, if successful, should wake the monitor)? Can you change the state of numlock/capslock (either in the sleeping X session or on the console)? Is the machine still alive (but producing no video signal) or is it completely hung? Check that by accessing it over the network. |
Since about 2 weeks ago apparently .xsession-errors has stopped collecting info. I've deleted it and touched a new file into place, still nothing. It looks like the info is in journald (and may have been before anyway) but I really don't want to have it there and I changed nothing that would of put it there only and the xsession script clearly has it still going into .xsession-errors. This is what's been updated since the problem started. Code: Thu Aug 25 09:04:07 2016 >>> games-board/stockfish-7 Thu Aug 25 09:04:18 2016 >>> dev-libs/libIDL-0.8.14-r2 Thu Aug 25 09:04:23 2016 >>> net-misc/openvpn-2.3.12 Thu Aug 25 09:06:28 2016 >>> www-client/google-chrome-beta-53.0.2785.80 Fri Aug 26 09:34:35 2016 >>> net-p2p/bitcoin-qt-0.13.0 Fri Aug 26 09:34:39 2016 >>> sys-apps/openrc-0.21.4 Fri Aug 26 09:34:43 2016 >>> sys-apps/gawk-4.1.4 Fri Aug 26 09:35:28 2016 >>> kde-apps/kolourpaint-16.08.0 Mon Aug 29 14:34:28 2016 >>> sys-libs/tevent-0.9.30 Mon Aug 29 14:34:52 2016 >>> x11-misc/sddm-0.14.0-r1 Mon Aug 29 14:35:11 2016 >>> net-print/cups-filters-1.11.2 Mon Aug 29 14:35:14 2016 >>> net-misc/openssh-7.3_p1-r2 Wed Aug 31 18:13:19 2016 >>> app-text/convertlit-1.8-r3 Wed Aug 31 18:13:25 2016 >>> dev-libs/libyaml-0.1.7 Wed Aug 31 18:19:16 2016 >>> dev-libs/boost-1.61.0-r1 Wed Aug 31 18:20:28 2016 >>> sci-libs/fftw-3.3.5-r2 Wed Aug 31 18:20:32 2016 >>> dev-python/numpy-1.11.1 Wed Aug 31 18:20:56 2016 >>> x11-libs/libXfont-1.5.2 Wed Aug 31 18:21:08 2016 >>> www-client/google-chrome-beta-53.0.2785.89 Wed Aug 31 18:21:12 2016 >>> dev-libs/libevdev-1.5.4 Wed Aug 31 18:21:15 2016 >>> app-portage/eix-0.31.9 Wed Aug 31 18:21:28 2016 >>> dev-libs/libinput-1.4.2 Wed Aug 31 18:22:00 2016 >>> kde-plasma/powerdevil-5.7.4-r1 Wed Aug 31 18:24:56 2016 >>> dev-db/mariadb-10.1.17 Wed Aug 31 18:25:00 2016 >>> sys-apps/openrc-0.21.7 It stopped working on a reboot from the looks of the last messages in it but I can't find similar messages in journald to make me think that it is capturing everything that .xsession-errors was. Actually now that I look closer it must be some change in sddm, I see the -r1 with minimal changes was actually the first update to 0.14. So what broke or changed? | Solved. ~/.local/share/sddm/xorg-session.log And it's the only file there. in /etc/sddm.conf Code: # Path to the user session log file SessionLogFile=.local/share/sddm/xorg-session.log So the file that annoys some people and gets huge for others is in a new place. Or you change the setting and put it back in the old place. A quick search makes it seem like there might be other bugs triggered by this creation of .local/share/sddm/ directory but fixed in Plasma 5.7.5 I did notice the reboots were a bit faster with this sddm so that is fixed somewhat I guess. |
Hello, I have installed Gentoo on a laptop with no problems. I have KDE and Xorg installed on the laptop. I was doing the ~/.xinitrc method to start KDE. In my ~/.xinitrc file: exec startkde (I'm doing this through Links now, so I'm not going to waste my time to do the fancy code format.) When I typed startx, this appeared: Using config directory: "/etc/X11/xorg.conf.d" Using system config directory: "/usr/share/X11/xorg.conf.d Fatal server error: No screens found(EE) Please consult the X.Org foundation support at: http://wiki.x.org for help. Server terminated with error (1). Closing log file. Another suspicious activity I'm seeing is when I selected the KDE profile during the installation, I typed emerge -avDuN @world. It installed Wayland because it was a required dependency for KWin. I have never used Wayland, and I think it is conflicting with Xorg. I have consulted https://wiki.x.org as the output said, and I was told to type X -configure. So I did that and here is the output: List of video drivers: radeon modesetting ati (I don't use ati, just radeon.) Using config file: "/root/xorg.conf.new" Using config directory: "/etc/X11/xorg.conf.d" Using system config directory: "/usr/share/X11/xorg.conf.d" Backtrace: 0: X (xorg_backtrace+0x4f) 1: X (0x400000+01866d9) 2: /lib64/libpthread.so.0 (0x7fb2f64e5000+0x10f00) Segmentation fault at address 0x0 Fatal server error: Caught signal 11 (Segmentation fault). Server aborting. (EE) Server terminated with signal 1. Closing log file. Aborting. I will show you /var/log/Xorg.0.log later. In my make.conf file: VIDEO_CARDS="radeon" INPUT_DEVICES="synaptics evdev" Yes, I have synaptics and evdev installed. Any answer will help. P.S. Don't ask for any long post except for the log file because I'm doing this through the tty and have no copy and paste. | roboto, Code: emerge wgetpaste , so you can help us to help you. Use wgetpaste to pastebin your dmesg and /var/log/Xorg.0.log We may want your lspci output and kernel .config file later. wgetpaste can do all of that. If you install and start gpm, you can have copy and paste in the console too. |
For the past couple of months I've been exclusively using wayland/xwayland via sway. Every now and then, I would switch back to Xorg. But every time, after a couple of minutes of using xorg, the gpu hangs and only the cursor can move. Anyone having these issues or know whats going on? I'm on vanilla-sources-4.10.8 Code: ... kernel: [drm] GPU HANG: ecode 8:0:0x85dffffb, reason: Hang on render ring, action: reset kernel: [drm] GPU hangs can indicate a bug anywhere in the entire gfx stack, including userspace. kernel: [drm] Please file a _new_ bug report on bugs.freedesktop.org against DRI -> DRM/Intel [drm] drm/i915 developers can then reassign to the right component if it's not a kernel issue. [drm] The gpu crash dump is required to analyze gpu hangs, so please always attach it. [drm] GPU crash dump saved to /sys/class/drm/card0/error drm/i915: Resetting chip after gpu hang DMAR: DRHD: handling fault status reg 2 DMAR: [DMA Write] Request device [00:02.0] fault addr ffffc000 [fault reason 23] Unknown ... It's kind of funny how wayland is more usable than xorg for me right now. | Uninstall xf86-video-intel (it's abandonware) and use the xf86-video-modesetting driver. |
I notived that the folders of the root directroy are appearing on my desktop. Has anyone ran into this and knows how to get rif of it? | What DE you run? |
Hi, I have just installed KDE Plasma 5 on Gentoo Linux with systemd as my init system for the first time. Everything is working far better than I expected, except my KDE system (Network, CPU Load, Memory Status) monitor widgets (i.e., they're on the KDE Plasma panel across the bottom of the screen) which while they show the percentage of their respective resource used they do not show the blue graph they usually display showing their respective resource usage against time. This screenshot shows what's being shown on Gentoo atm https://goo.gl/photos/eA4DF1m1bhGSggri9 (I would show it in this post via the img BBCode tags, but atm I can't seem to upload images to imgur, although I can upload them to Google Photos but I can't seem to get a straight, simple image link for Google Photos pics so I must direct you to the Google Photos website instead where the picture is). While this ( https://goo.gl/photos/tyQ7aMDczoS2MN6b6 ) is what was showed on another OS with the graphs in the system monitors that I want. What do I need to do to get the graphs shown in these system monitor widgets? If what I mean by system monitor widgets is unclear I have labelled them in this screenshot https://goo.gl/photos/6d3nisTstJt6P7FcA. Thanks for your time, Brenton | How did you install KDE Plasma and what USE flags did you manually enable or disable? |
I have held off moving to KDE / plasma5 for a long time, but some time ago made the move on my laptop in the form of Kubuntu 16.10. I've been quite happy with that so decided it was time to take the plunge on my Desktop (Gentoo system), unfortunately things are not so good. Everything starts and runs fine, but I am seeing frequent freezes, possibly just redraw problems, but where as I have seen many reports like this where everything freezes together (often with the exception of just the mouse pointer) I have not found anything that matches the symptoms I am experiencing. Frequently - (multiple times in a minute) things freeze, but independently of one another. For example the clock on the panel may freeze and the menu / launchers all be dead, but other windows will be fine. Whilst at other times what I am doing in another window, switch tabs, type etc will freeze. All these freezes are temporary - they unfreeze after a few seconds and continue as normal for some time. Often trying to close windows results in them freezing, i just minimise them and then they disappear from a few seconds later. As an example, just now i switched to an active dolphin window to check the versions in the help->about dialog against those on my Kubuntu system, as soon as i clicked the help menu it froze, the menu appearing several seconds later. The results: KDE Frameworks 5.29.0 Qt 5.6.2 (built against 5.6.2) The xcb windowing system My kernel is 4.9.6-gentoo-r1 but I am seeing the same symptoms if I run the previous (4.4.6-gentoo) kernel which is fine under my kde4 build. Any ideas? Let me know if I can provide any more info help diagnose. | You've omitted the most important information in such cases, which is the GPU driver in use. If you use Intel, you may be one of the unfortunate souls where xf86-video-intel is broken. Switch to the modesetting driver. |
Hey everyone, I'm running i3 as window manager using urxvt extensively. After some updates and a reboot yesterday, the font rendering is distorted. I didn't changed my configs at all, and I know the tricks gambling around with letterspace, aliasing and hinting in .Xdefaults but it doesn't affect/correct the rendering issue in the right way. Now, I think the problem relies on freetype... (see 3rd edit) Problem description: My DejaVu Sans Mono font doesn't look pixelated/crisp as I'm used to. Especially the 'm' letter is so blurry that it's hard to read. Symptoms are on URXVT and ST, but not on Xterm. Could anyone give me a hint or assist me? Edits 1) I checked my emerge logfile... media-libs/freetype had been updated due to a new xorg-server/-driver version. 2) Screenshots: https://abload.de/img/scrotfuk4r.png https://abload.de/img/scrot21jkcd.png 3) Similiar problems: https://github.com/google/fonts/issues/318 , https://github.com/achaphiv/ppa-fonts/issues/29 , http://www.bsdforen.de/threads/setenv-freetype_properties-oder-qu%C3%A4l-deine-augen.33365/ . | A bit late but urxvt does have a use flag for this - alt-font-width. I gave up on that because it seems to not work unless the planets align. |
My default boot level looks like this: Code: rc default logging started at Sat Mar 25 20:41:06 2017 * Starting dbus ... [ ok ] * /etc/init.d/sysklogd uses runscript, please convert to openrc-run. * sysklogd -> start: syslogd ... [ ok ] * sysklogd -> start: klogd ... [ ok ] * Starting consolekit ... [ ok ] * Starting cronie ... [ ok ] * /etc/init.d/iptables uses runscript, please convert to openrc-run. * Loading iptables state and starting firewall ... [ ok ] * Bringing up interface enp2s0 * Caching network module dependencies * dhcp ... * Running dhcpcd ... DUID [snip] enp2s0: IAID [snip] enp2s0: rebinding lease of 192.168.0.3 enp2s0: soliciting an IPv6 router enp2s0: probing address 192.168.0.3/24 enp2s0: leased 192.168.0.3 for 86400 seconds enp2s0: adding route to 192.168.0.0/24 enp2s0: adding default route via 192.168.0.1 forked to background, child pid 2394 [ ok ] * received address 192.168.0.3/24 [ ok ] * Starting cupsd ... [ ok ] * Mounting network filesystems ... [ ok ] * Setting up lxdm-binary ... [ ok ] * Starting sshd ... [ ok ] * Starting tinyproxy ... [ ok ] * Starting local ... [ ok ] rc default logging stopped at Sat Mar 25 20:41:19 2017 I'd like to start xdm first so I get to a login screen faster and let everything else happen in the background. However, I don't see anything in the handbook about changing the order of init scripts except for this section , but that's only for scripts I write myself. What's the recommended way to do this? Is it a good idea to put xdm before consolekit, dbus and sysklogd? | Check /usr/share/doc/openrc-0.23.2/guide.md.bz2 or it's equivalent on your system. Look for the part headed "The Depend Function" Edit to add: I don't run xdm, but the LAST thing I get, after all the services have started, is a login screen, and the way I see it, display manager is akin to a login prompt. If you want a graphical appearance while services start, I know of splashutils. There may be other ways to stifle the usual startup display until the system is ready for login, but I have never looked for one. |
Hi, everyone There is an error on my system, the first char of directory is missing when run "ls" command, but it's OK in the root user, .e.g Code: iceamber@localhost:~ $ ls kernel/ db-7.11 gdb-7.11.tar.gz inux-0.12 inux-2.6.0 inux-3.18.44 linux-3.18.44.tar inux-4.7 Code: iceamber@localhost:~ $ sudo ls kernel/ gdb-7.11 gdb-7.11.tar.gz linux-0.12 linux-2.6.0 linux-3.18.44 linux-3.18.44.tar linux-4.7 Is there something wrong in my urxvt config? Quote: URxvt.inheritPixmap:true UURxvt.shading: 60 Rxvt.background:#005f87 URxvt.foreground:#ffffff URxvt.colorBD:Gray95 URxvt.colorUL:Green URxvt.color1:Red2 URxvt.color4:RoyalBlue URxvt.color5:Magenta2 URxvt.color8:Gray50 URxvt.color10:Green2 URxvt.color12:DodgerBlue URxvt.color14:Cyan2 URxvt.color15:Gray95 URxvt.perl-ext-common: default,selection-to-clipboard,pasta,matcher,keyboard-select URxvt.keysym.M-u: perl:url-select:select_next URxvt.urlLauncher:google-chrome URxvt.matcher.button:1 Urxvt.perl-ext-common:matcher URxvt.keysym.M-Escape:perl:keyboard-select:activate URxvt.keysym.Control-Shift-V:perl:pasta:paste URxvt.clipboard.autocopy:true URxvt.scrollBar:False URxvt.scrollBar_floating:False URxvt.scrollstyle:plain URxvt.mouseWheelScrollPage:True URxvt.scrollTtyOutput:False URxvt.scrollWithBuffer:True URxvt.scrollTtyKeypress:True URxvt.cursorBlink:True URxvt.saveLines:3000 URxvt.borderLess:False Xft.dpi:96 Xft.antialias: true Xft.rgba: rgb Xft.hinting: true Xft.hintstyle: hintslight Xft.autohint: false Xft.lcdfilter: lcddefault URxvt.font: xft:WenQuanYi Zen Hei Mono:antialias=True:pixelsize=13,xft:WenQuanYi Zen Hei Mono:antialias=True:pixelsize=13 URxvt.boldfont:xft:WenQuanYi Zen Hei Mono:antialias=True:pixelsize=13,xft:WenQuanYi Zen Hei Mono:antialias=True:pixelsize=13 URxvt.letterSpace:-1.5 | Also, try ls-command | xxd to get a hexadecimal dump of the ls output. If that dump confirms specific original bytes are missing, this is an ls problem. If pieces of the hexdump are missing, this is a terminal problem. |
This system is running ~amd64 globally with KDE Plasma. Recently I've noticed that some QT applications don't correctly display the menus. By "menu" I mean the standard File, Edit, View, etc. along the top bar of most GUI programs. Specifically this happens in Clementine, Amarok, and even in the QT Configuration Tool. Even more strange, not all QT apps display this problem. For example, the menu items in KTorrent work perfectly. Attempting to click a menu item such as "File" draws a faint box outlining where the menu items should be, but it's blank. The menu items (such as "Quit/Exit") are still there. Clicking on this blank outline at the very bottom, where I remember the Quit option to be, does indeed quit the application. So the menus still *work*, I just can't see what I'm clicking on. That makes it nearly impossible to do anything useful. Some Startpage/Google searches for similar problems yielded no results. I saw configuration tips for enabling menus at all, or disabling them entirely, but I encountered no post describing the problem I am having. Just to rule out some kind of DSO/shared lib problem, I have performed "emerge --emptytree amarok" to rebuild everything it depends on. This made no difference. Because of how strange this is, I've taken two screenshots. The first is a normal menu working correctly. For this example I chose the Firefox browser (a GTK+ application): https://ibin.co/3H1qs7BBZuD7.png This is a similar screen shot from Clementine displaying the problem. The first menu entry ("Music") has been clicked and the faint outline of where the menu should be, is visible: https://ibin.co/3H1s03GPHTeQ.png I ran Clementine in a terminal, clicked on the failing menu items, then closed it in the terminal via CTRL-C. That yields the following output: Code: $ clementine using visual class 4, id 2b 13:46:39.750 WARN unknown QxtGlobalShortcut failed to register: "Media Next" 13:46:39.750 WARN unknown QxtGlobalShortcut failed to register: "Media Play" 13:46:39.750 WARN unknown QxtGlobalShortcut failed to register: "Media Previous" 13:46:39.750 WARN unknown QxtGlobalShortcut failed to register: "Media Stop" 13:46:39.979 DEBUG unknown hijackWindow() context created for MainWindow(0x7ffd543837e0, name = "MainWindow") 1 13:46:39.985 DEBUG unknown Created Window Surface FBO QSize(1280, 956) with samples 8 13:46:42.038 DEBUG unknown hijackWindow() context created for QMenu(0x206c960, name = "menu_music") 1 13:46:42.042 WARN unknown X Error: BadMatch (invalid parameter attributes) 8 13:46:42.042 WARN unknown Extension: 153 (Uknown extension) 13:46:42.043 WARN unknown Minor opcode: 5 (Unknown request) 13:46:42.043 WARN unknown Resource id: 0x540002e 13:46:42.043 WARN unknown QGLContext::makeCurrent(): Failed. 13:46:42.043 DEBUG unknown Created Window Surface FBO QSize(222, 255) with samples 8 13:46:42.044 WARN unknown X Error: BadMatch (invalid parameter attributes) 8 13:46:42.044 WARN unknown Extension: 153 (Uknown extension) 13:46:42.044 WARN unknown Minor opcode: 5 (Unknown request) 13:46:42.044 WARN unknown Resource id: 0x540002e 13:46:42.044 WARN unknown QGLContext::makeCurrent(): Failed. 13:46:42.052 WARN unknown X Error: BadMatch (invalid parameter attributes) 8 13:46:42.052 WARN unknown Extension: 153 (Uknown extension) 13:46:42.052 WARN unknown Minor opcode: 5 (Unknown request) 13:46:42.052 WARN unknown Resource id: 0x540002e 13:46:42.052 WARN unknown QGLContext::makeCurrent(): Failed. 13:46:42.439 WARN unknown X Error: BadMatch (invalid parameter attributes) 8 13:46:42.439 WARN unknown Extension: 153 (Uknown extension) 13:46:42.439 WARN unknown Minor opcode: 5 (Unknown request) 13:46:42.439 WARN unknown Resource id: 0x540002e 13:46:42.440 WARN unknown QGLContext::makeCurrent(): Failed. 13:46:42.446 WARN unknown X Error: BadMatch (invalid parameter attributes) 8 13:46:42.446 WARN unknown Extension: 153 (Uknown extension) 13:46:42.446 WARN unknown Minor opcode: 5 (Unknown request) 13:46:42.446 WARN unknown Resource id: 0x540002e 13:46:42.446 WARN unknown QGLContext::makeCurrent(): Failed. 13:46:42.490 WARN unknown X Error: BadMatch (invalid parameter attributes) 8 13:46:42.490 WARN unknown Extension: 153 (Uknown extension) 13:46:42.490 WARN unknown Minor opcode: 5 (Unknown request) 13:46:42.490 WARN unknown Resource id: 0x540002e 13:46:42.490 WARN unknown QGLContext::makeCurrent(): Failed. 13:46:42.496 WARN unknown X Error: BadMatch (invalid parameter attributes) 8 13:46:42.496 WARN unknown Extension: 153 (Uknown extension) 13:46:42.496 WARN unknown Minor opcode: 5 (Unknown request) 13:46:42.496 WARN unknown Resource id: 0x540002e 13:46:42.496 WARN unknown QGLContext::makeCurrent(): Failed. 13:46:42.541 WARN unknown X Error: BadMatch (invalid parameter attributes) 8 13:46:42.541 WARN unknown Extension: 153 (Uknown extension) 13:46:42.541 WARN unknown Minor opcode: 5 (Unknown request) 13:46:42.541 WARN unknown Resource id: 0x540002e 13:46:42.541 WARN unknown QGLContext::makeCurrent(): Failed. 13:46:42.547 WARN unknown X Error: BadMatch (invalid parameter attributes) 8 13:46:42.547 WARN unknown Extension: 153 (Uknown extension) 13:46:42.547 WARN unknown Minor opcode: 5 (Unknown request) 13:46:42.547 WARN unknown Resource id: 0x540002e 13:46:42.547 WARN unknown QGLContext::makeCurrent(): Failed. 13:46:42.590 WARN unknown X Error: BadMatch (invalid parameter attributes) 8 13:46:42.590 WARN unknown Extension: 153 (Uknown extension) 13:46:42.590 WARN unknown Minor opcode: 5 (Unknown request) 13:46:42.590 WARN unknown Resource id: 0x540002e 13:46:42.590 WARN unknown QGLContext::makeCurrent(): Failed. 13:46:42.596 WARN unknown X Error: BadMatch (invalid parameter attributes) 8 13:46:42.596 WARN unknown Extension: 153 (Uknown extension) 13:46:42.596 WARN unknown Minor opcode: 5 (Unknown request) 13:46:42.596 WARN unknown Resource id: 0x540002e 13:46:42.596 WARN unknown QGLContext::makeCurrent(): Failed. 13:46:42.639 WARN unknown X Error: BadMatch (invalid parameter attributes) 8 13:46:42.639 WARN unknown Extension: 153 (Uknown extension) 13:46:42.639 WARN unknown Minor opcode: 5 (Unknown request) 13:46:42.639 WARN unknown Resource id: 0x540002e 13:46:42.639 WARN unknown QGLContext::makeCurrent(): Failed. 13:46:42.645 WARN unknown X Error: BadMatch (invalid parameter attributes) 8 13:46:42.646 WARN unknown Extension: 153 (Uknown extension) 13:46:42.646 WARN unknown Minor opcode: 5 (Unknown request) 13:46:42.646 WARN unknown Resource id: 0x540002e 13:46:42.646 WARN unknown QGLContext::makeCurrent(): Failed. 13:46:42.689 WARN unknown X Error: BadMatch (invalid parameter attributes) 8 13:46:42.689 WARN unknown Extension: 153 (Uknown extension) 13:46:42.689 WARN unknown Minor opcode: 5 (Unknown request) 13:46:42.689 WARN unknown Resource id: 0x540002e 13:46:42.689 WARN unknown QGLContext::makeCurrent(): Failed. 13:46:42.695 WARN unknown X Error: BadMatch (invalid parameter attributes) 8 13:46:42.695 WARN unknown Extension: 153 (Uknown extension) 13:46:42.695 WARN unknown Minor opcode: 5 (Unknown request) 13:46:42.695 WARN unknown Resource id: 0x540002e 13:46:42.695 WARN unknown QGLContext::makeCurrent(): Failed. 13:46:42.739 WARN unknown X Error: BadMatch (invalid parameter attributes) 8 13:46:42.739 WARN unknown Extension: 153 (Uknown extension) 13:46:42.739 WARN unknown Minor opcode: 5 (Unknown request) 13:46:42.739 WARN unknown Resource id: 0x540002e 13:46:42.739 WARN unknown QGLContext::makeCurrent(): Failed. 13:46:42.745 WARN unknown X Error: BadMatch (invalid parameter attributes) 8 13:46:42.745 WARN unknown Extension: 153 (Uknown extension) 13:46:42.745 WARN unknown Minor opcode: 5 (Unknown request) 13:46:42.745 WARN unknown Resource id: 0x540002e 13:46:42.745 WARN unknown QGLContext::makeCurrent(): Failed. 13:46:42.789 WARN unknown X Error: BadMatch (invalid parameter attributes) 8 13:46:42.789 WARN unknown Extension: 153 (Uknown extension) 13:46:42.789 WARN unknown Minor opcode: 5 (Unknown request) 13:46:42.789 WARN unknown Resource id: 0x540002e 13:46:42.789 WARN unknown QGLContext::makeCurrent(): Failed. 13:46:42.794 WARN unknown X Error: BadMatch (invalid parameter attributes) 8 13:46:42.794 WARN unknown Extension: 153 (Uknown extension) 13:46:42.794 WARN unknown Minor opcode: 5 (Unknown request) 13:46:42.794 WARN unknown Resource id: 0x540002e 13:46:42.794 WARN unknown QGLContext::makeCurrent(): Failed. 13:46:42.841 WARN unknown X Error: BadMatch (invalid parameter attributes) 8 13:46:42.841 WARN unknown Extension: 153 (Uknown extension) 13:46:42.841 WARN unknown Minor opcode: 5 (Unknown request) 13:46:42.841 WARN unknown Resource id: 0x540002e 13:46:42.841 WARN unknown QGLContext::makeCurrent(): Failed. 13:46:42.847 WARN unknown X Error: BadMatch (invalid parameter attributes) 8 13:46:42.847 WARN unknown Extension: 153 (Uknown extension) 13:46:42.847 WARN unknown Minor opcode: 5 (Unknown request) 13:46:42.847 WARN unknown Resource id: 0x540002e 13:46:42.847 WARN unknown QGLContext::makeCurrent(): Failed. 13:46:42.890 WARN unknown X Error: BadMatch (invalid parameter attributes) 8 13:46:42.890 WARN unknown Extension: 153 (Uknown extension) 13:46:42.890 WARN unknown Minor opcode: 5 (Unknown request) 13:46:42.890 WARN unknown Resource id: 0x540002e 13:46:42.890 WARN unknown QGLContext::makeCurrent(): Failed. 13:46:42.896 WARN unknown X Error: BadMatch (invalid parameter attributes) 8 13:46:42.896 WARN unknown Extension: 153 (Uknown extension) 13:46:42.896 WARN unknown Minor opcode: 5 (Unknown request) 13:46:42.896 WARN unknown Resource id: 0x540002e 13:46:42.896 WARN unknown QGLContext::makeCurrent(): Failed. 13:46:42.942 WARN unknown X Error: BadMatch (invalid parameter attributes) 8 13:46:42.942 WARN unknown Extension: 153 (Uknown extension) 13:46:42.942 WARN unknown Minor opcode: 5 (Unknown request) 13:46:42.942 WARN unknown Resource id: 0x540002e 13:46:42.942 WARN unknown QGLContext::makeCurrent(): Failed. 13:46:42.948 WARN unknown X Error: BadMatch (invalid parameter attributes) 8 13:46:42.948 WARN unknown Extension: 153 (Uknown extension) 13:46:42.948 WARN unknown Minor opcode: 5 (Unknown request) 13:46:42.948 WARN unknown Resource id: 0x540002e 13:46:42.948 WARN unknown QGLContext::makeCurrent(): Failed. 13:46:42.991 WARN unknown X Error: BadMatch (invalid parameter attributes) 8 13:46:42.991 WARN unknown Extension: 153 (Uknown extension) 13:46:42.991 WARN unknown Minor opcode: 5 (Unknown request) 13:46:42.991 WARN unknown Resource id: 0x540002e 13:46:42.991 WARN unknown QGLContext::makeCurrent(): Failed. 13:46:42.997 WARN unknown X Error: BadMatch (invalid parameter attributes) 8 13:46:42.997 WARN unknown Extension: 153 (Uknown extension) 13:46:42.997 WARN unknown Minor opcode: 5 (Unknown request) 13:46:42.997 WARN unknown Resource id: 0x540002e 13:46:42.997 WARN unknown QGLContext::makeCurrent(): Failed. 13:46:43.041 WARN unknown X Error: BadMatch (invalid parameter attributes) 8 13:46:43.041 WARN unknown Extension: 153 (Uknown extension) 13:46:43.041 WARN unknown Minor opcode: 5 (Unknown request) 13:46:43.041 WARN unknown Resource id: 0x540002e 13:46:43.041 WARN unknown QGLContext::makeCurrent(): Failed. 13:46:43.047 WARN unknown X Error: BadMatch (invalid parameter attributes) 8 13:46:43.047 WARN unknown Extension: 153 (Uknown extension) 13:46:43.047 WARN unknown Minor opcode: 5 (Unknown request) 13:46:43.047 WARN unknown Resource id: 0x540002e 13:46:43.047 WARN unknown QGLContext::makeCurrent(): Failed. 13:46:43.223 DEBUG unknown hijackWindow() context created for QMenu(0x2070340, name = "menu_playlist") 1 13:46:43.223 WARN unknown X Error: BadMatch (invalid parameter attributes) 8 13:46:43.223 WARN unknown Extension: 153 (Uknown extension) 13:46:43.223 WARN unknown Minor opcode: 5 (Unknown request) 13:46:43.223 WARN unknown Resource id: 0x540003e 13:46:43.223 WARN unknown QGLContext::makeCurrent(): Failed. 13:46:43.224 DEBUG unknown Created Window Surface FBO QSize(371, 359) with samples 8 13:46:43.224 WARN unknown X Error: BadMatch (invalid parameter attributes) 8 13:46:43.224 WARN unknown Extension: 153 (Uknown extension) 13:46:43.224 WARN unknown Minor opcode: 5 (Unknown request) 13:46:43.224 WARN unknown Resource id: 0x540003e 13:46:43.224 WARN unknown QGLContext::makeCurrent(): Failed. 13:46:43.256 WARN unknown X Error: BadMatch (invalid parameter attributes) 8 13:46:43.256 WARN unknown Extension: 153 (Uknown extension) 13:46:43.256 WARN unknown Minor opcode: 5 (Unknown request) 13:46:43.256 WARN unknown Resource id: 0x540003e 13:46:43.256 WARN unknown QGLContext::makeCurrent(): Failed. 13:46:44.695 DEBUG unknown hijackWindow() context created for QMenu(0x2071e60, name = "menu_tools") 1 13:46:44.695 WARN unknown X Error: BadMatch (invalid parameter attributes) 8 13:46:44.695 WARN unknown Extension: 153 (Uknown extension) 13:46:44.695 WARN unknown Minor opcode: 5 (Unknown request) 13:46:44.695 WARN unknown Resource id: 0x5400045 13:46:44.695 WARN unknown QGLContext::makeCurrent(): Failed. 13:46:44.695 DEBUG unknown Created Window Surface FBO QSize(281, 248) with samples 8 13:46:44.695 WARN unknown X Error: BadMatch (invalid parameter attributes) 8 13:46:44.695 WARN unknown Extension: 153 (Uknown extension) 13:46:44.696 WARN unknown Minor opcode: 5 (Unknown request) 13:46:44.696 WARN unknown Resource id: 0x5400045 13:46:44.696 WARN unknown QGLContext::makeCurrent(): Failed. 13:46:44.704 WARN unknown X Error: BadMatch (invalid parameter attributes) 8 13:46:44.704 WARN unknown Extension: 153 (Uknown extension) 13:46:44.704 WARN unknown Minor opcode: 5 (Unknown request) 13:46:44.704 WARN unknown Resource id: 0x5400045 13:46:44.704 WARN unknown QGLContext::makeCurrent(): Failed. 13:46:45.049 WARN unknown X Error: BadMatch (invalid parameter attributes) 8 13:46:45.049 WARN unknown Extension: 153 (Uknown extension) 13:46:45.049 WARN unknown Minor opcode: 5 (Unknown request) 13:46:45.049 WARN unknown Resource id: 0x5400045 13:46:45.049 WARN unknown QGLContext::makeCurrent(): Failed. 13:46:45.055 WARN unknown X Error: BadMatch (invalid parameter attributes) 8 13:46:45.055 WARN unknown Extension: 153 (Uknown extension) 13:46:45.055 WARN unknown Minor opcode: 5 (Unknown request) 13:46:45.055 WARN unknown Resource id: 0x5400045 13:46:45.056 WARN unknown QGLContext::makeCurrent(): Failed. 13:46:45.101 WARN unknown X Error: BadMatch (invalid parameter attributes) 8 13:46:45.101 WARN unknown Extension: 153 (Uknown extension) 13:46:45.101 WARN unknown Minor opcode: 5 (Unknown request) 13:46:45.101 WARN unknown Resource id: 0x5400045 13:46:45.101 WARN unknown QGLContext::makeCurrent(): Failed. 13:46:45.108 WARN unknown X Error: BadMatch (invalid parameter attributes) 8 13:46:45.108 WARN unknown Extension: 153 (Uknown extension) 13:46:45.108 WARN unknown Minor opcode: 5 (Unknown request) 13:46:45.108 WARN unknown Resource id: 0x5400045 13:46:45.108 WARN unknown QGLContext::makeCurrent(): Failed. 13:46:45.151 WARN unknown X Error: BadMatch (invalid parameter attributes) 8 13:46:45.151 WARN unknown Extension: 153 (Uknown extension) 13:46:45.151 WARN unknown Minor opcode: 5 (Unknown request) 13:46:45.151 WARN unknown Resource id: 0x5400045 13:46:45.151 WARN unknown QGLContext::makeCurrent(): Failed. 13:46:45.158 WARN unknown X Error: BadMatch (invalid parameter attributes) 8 13:46:45.158 WARN unknown Extension: 153 (Uknown extension) 13:46:45.158 WARN unknown Minor opcode: 5 (Unknown request) 13:46:45.158 WARN unknown Resource id: 0x5400045 13:46:45.158 WARN unknown QGLContext::makeCurrent(): Failed. 13:46:45.200 WARN unknown X Error: BadMatch (invalid parameter attributes) 8 13:46:45.200 WARN unknown Extension: 153 (Uknown extension) 13:46:45.200 WARN unknown Minor opcode: 5 (Unknown request) 13:46:45.200 WARN unknown Resource id: 0x5400045 13:46:45.201 WARN unknown QGLContext::makeCurrent(): Failed. 13:46:45.207 WARN unknown X Error: BadMatch (invalid parameter attributes) 8 13:46:45.207 WARN unknown Extension: 153 (Uknown extension) 13:46:45.207 WARN unknown Minor opcode: 5 (Unknown request) 13:46:45.207 WARN unknown Resource id: 0x5400045 13:46:45.207 WARN unknown QGLContext::makeCurrent(): Failed. 13:46:45.252 WARN unknown X Error: BadMatch (invalid parameter attributes) 8 13:46:45.252 WARN unknown Extension: 153 (Uknown extension) 13:46:45.252 WARN unknown Minor opcode: 5 (Unknown request) 13:46:45.252 WARN unknown Resource id: 0x5400045 13:46:45.252 WARN unknown QGLContext::makeCurrent(): Failed. 13:46:45.259 WARN unknown X Error: BadMatch (invalid parameter attributes) 8 13:46:45.259 WARN unknown Extension: 153 (Uknown extension) 13:46:45.260 WARN unknown Minor opcode: 5 (Unknown request) 13:46:45.260 WARN unknown Resource id: 0x5400045 13:46:45.260 WARN unknown QGLContext::makeCurrent(): Failed. 13:46:45.305 WARN unknown X Error: BadMatch (invalid parameter attributes) 8 13:46:45.305 WARN unknown Extension: 153 (Uknown extension) 13:46:45.305 WARN unknown Minor opcode: 5 (Unknown request) 13:46:45.305 WARN unknown Resource id: 0x5400045 13:46:45.305 WARN unknown QGLContext::makeCurrent(): Failed. 13:46:45.312 WARN unknown X Error: BadMatch (invalid parameter attributes) 8 13:46:45.312 WARN unknown Extension: 153 (Uknown extension) 13:46:45.312 WARN unknown Minor opcode: 5 (Unknown request) 13:46:45.312 WARN unknown Resource id: 0x5400045 13:46:45.312 WARN unknown QGLContext::makeCurrent(): Failed. 13:46:45.358 WARN unknown X Error: BadMatch (invalid parameter attributes) 8 13:46:45.358 WARN unknown Extension: 153 (Uknown extension) 13:46:45.358 WARN unknown Minor opcode: 5 (Unknown request) 13:46:45.358 WARN unknown Resource id: 0x5400045 13:46:45.358 WARN unknown QGLContext::makeCurrent(): Failed. 13:46:45.364 WARN unknown X Error: BadMatch (invalid parameter attributes) 8 13:46:45.364 WARN unknown Extension: 153 (Uknown extension) 13:46:45.364 WARN unknown Minor opcode: 5 (Unknown request) 13:46:45.364 WARN unknown Resource id: 0x5400045 13:46:45.364 WARN unknown QGLContext::makeCurrent(): Failed. ^C I have no idea if the GL warnings are even relevant. I can say that other OpenGL applications work correctly, including 3D accelerated Windows games via Wine. Here is the output of emerge --info: Code: # emerge --info Portage 2.3.5 (python 2.7.13-final-0, default/linux/amd64/13.0/desktop/plasma, gcc-5.4.0, glibc-2.24-r1, 4.10.4-gentoo x86_64) ================================================================= System uname: Linux-4.10.4-gentoo-x86_64-Intel-R-_Core-TM-_i5-6500_CPU_@_3.20GHz-with-gentoo-2.3 KiB Mem: 16372480 total, 3514904 free KiB Swap: 2246652 total, 2246652 free Timestamp of repository gentoo: Mon, 27 Mar 2017 16:15:01 +0000 sh bash 4.4_p12 ld GNU ld (Gentoo 2.27 p1.0) 2.27 ccache version 3.3.4 [disabled] app-shells/bash: 4.4_p12::gentoo dev-java/java-config: 2.2.0-r3::gentoo dev-lang/perl: 5.24.1-r1::gentoo dev-lang/python: 2.7.13::gentoo, 3.4.6::gentoo, 3.5.3::gentoo dev-util/ccache: 3.3.4::gentoo dev-util/cmake: 3.7.2::gentoo dev-util/pkgconfig: 0.29.2::gentoo sys-apps/baselayout: 2.3::gentoo sys-apps/openrc: 0.24.1::gentoo sys-apps/sandbox: 2.10-r4::gentoo sys-devel/autoconf: 2.13::gentoo, 2.69-r2::gentoo sys-devel/automake: 1.11.6-r2::gentoo, 1.13.4-r1::gentoo, 1.14.1-r1::gentoo, 1.15-r2::gentoo sys-devel/binutils: 2.27::gentoo sys-devel/gcc: 5.4.0-r3::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.10::gentoo (virtual/os-headers) sys-libs/glibc: 2.24-r1::gentoo Repositories: gentoo location: /usr/portage sync-type: rsync sync-uri: rsync://rsync.ca.gentoo.org/gentoo-portage priority: -1000 andy location: /var/lib/layman/andy masters: gentoo priority: 50 ACCEPT_KEYWORDS="amd64 ~amd64" ACCEPT_LICENSE="*" CBUILD="x86_64-pc-linux-gnu" CFLAGS="-march=native -O2 -finline-functions -ftracer -pipe -flto=4 -fuse-linker-plugin -ffat-lto-objects -floop-interchange -floop-strip-mine -floop-block" 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 /var/lib/hsqldb" 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 -finline-functions -ftracer -pipe -flto=4 -fuse-linker-plugin -ffat-lto-objects -floop-interchange -floop-strip-mine -floop-block" DISTDIR="/usr/portage/distfiles" EMERGE_DEFAULT_OPTS="--with-bdeps=y" FCFLAGS="-O2 -pipe" FEATURES="assume-digests binpkg-logs config-protect-if-modified distlocks ebuild-locks fixlafiles merge-sync news preserve-libs protect-owned sandbox sfperms strict unknown-features-warn unmerge-logs unmerge-orphans userfetch userpriv usersandbox usersync xattr" FFLAGS="-O2 -pipe" GENTOO_MIRRORS="http://gentoo.mirrors.pair.com/distfiles/ http://gentoo.mirrors.tds.net/gentoo http://mirrors.evowise.com/gentoo/" LANG="en_US.UTF-8" LDFLAGS="-Wl,-O1 -Wl,--as-needed -Wl,--hash-style=gnu -Wl,--sort-common -Wl,--strip-debug -march=native -O2 -finline-functions -ftracer -pipe -flto=4 -fuse-linker-plugin -ffat-lto-objects -floop-interchange -floop-strip-mine -floop-block" 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="3dnow 3dnowext X \ a52 aac aalib acl acpi alsa amd64 bash-completion berkdb bluetooth branding bzip2 cairo cdda cdr cli consolekit cracklib crypt cups cxx dbus declarative dri dts dvd dvdr emboss encode exif fam ffmpeg firefox flac fortran gdbm gif glamor gpm gtk iconv ipv6 jpeg jpeg2k kde kipi kwallet lcms ldap libnotify lzma mad mng modules mp3 mp4 mpeg mplayer multilib mysql ncurses nls nptl offensive ogg opengl openmp openssl pam pango pcre pdf phonon plasma png policykit ppds python qml qt3support qt4 qt5 readline sdl seccomp session socks5 spell ssl startup-notification svg symlink tcpd tiff truetype udev udisks unicode upower usb videos vorbis widgets win32codecs wmf wxwidgets x264 xattr xcb xcomposite xine xinerama xml xscreensaver 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="kexi words flow plan sheets stage tables krita karbon braindump author" 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 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="keyboard mouse evdev" KERNEL="linux" L10N="en en-US" LCD_DEVICES="bayrad cfontz cfontz633 glk hd44780 lb216 lcdm001 mtxorb ncurses text" LIBREOFFICE_EXTENSIONS="presenter-console presenter-minimizer" OFFICE_IMPLEMENTATION="libreoffice" PHP_TARGETS="php5-6" PYTHON_SINGLE_TARGET="python2_7" PYTHON_TARGETS="python2_7 python3_4" RUBY_TARGETS="ruby22 ruby23 ruby24" USERLAND="GNU" VIDEO_CARDS="nvidia nv 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, USE_PYTHON Any help would be greatly appreciated. I just can't seem to find any useful place to even begin trying to fix this. | eselect qtgraphicssystem is set to opengl ? ( revert it to native or raster and never set it back to opengl) |
Hi all, So it's been this time again where I installed Gentoo on my virtual machine. This time on my private laptop. All went well until I came to the point of emerge --ask gnome I get a warning about a dependency for a build for gedit-3.20.0 and a long line for a required use flag as well as pythin single targets etc. So I filled in all the pythin single targets etc. but it still comes up with the same rubbish. Really frustrated. As soon as I change the leyboard shortcut for releasing the mouse in Fusion (otherwise the screenchanges to another terminal window) I'll post it here. Based on the lack of showing of my make.conf would anybody be able to help? I checked some forums posts but none really worked so far. Sorry am a noob so please be kind to me. I searched a lot already. | Please post the full output of the error message and the output of emerge --info . Pass option --verbose to emerge when you run the command that fails. Do not paraphrase or summarize the output. If your virtual machine software makes it unreasonably difficult to copy this output, you could emerge app-text/wgetpaste , use it to post the error to a pastebin, and link to it from here. |
I have been playing around Xfce and I replaced xfwm4 with kwin. I have mostly sorted things out but I have one issue that I would like to get resolved.... The mouse cursor changes from a pointer to a black "X". This change happens repeatably when selecting: Applications menu Panel (right clicking) Desktop menu The mouse cursor functions normally otherwise...meaning that when the cursor is a black "X", I can still select items. The cursor performs as expected when used for: Thunar Xfce4-terminal Mousepad The problem occurs with any cursor theme that is installed: Adwaita Breeze Breeze Snow Handhelds Redglass Whiteglass I have tried looking for the black "X" png file within the cursor themes but haven't found it. I understand this isn't a normal support question but any help would be appreciated. Thanks | This issue was resolved using the following info: https://wiki.archlinux.org/index.php/Cursor_themes#Change_X_shaped_default_cursor I created an autostart item that consisted of Code: xsetroot -cursor_name left_ptr |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.