Code:
/sbin/lspci -nnk | grep -EiA3 '3d|display|vga'
Code:
grep -Ew 'WW|EE' /var/log/Xorg.0.log
Code:
grep -i nvidia /var/log/Xorg.0.log
/sbin/lspci -nnk | grep -EiA3 '3d|display|vga'
grep -Ew 'WW|EE' /var/log/Xorg.0.log
grep -i nvidia /var/log/Xorg.0.log
Warum der Wechsel? Deine letzte Installation von openSUSE Leap 15.? hat doch funktioniert?toyotafahrer schrieb:... So ich habe jetzt Tumbleweed drauf.
Dazu zwei Anmerkungen:toyotafahrer schrieb:... Bitte kann mir das mal einer mit dem UEFI erklären .
Wenn Dein System startet ...toyotafahrer schrieb:... Mein Bootmanager ist Grub 2 mit UEFI . So weit ich das erkennen kann wenn man beim Start auf E drückt ist in Grub auch UEFI hinterlegt . Was muss ich noch machen ?
Wo liegt das Problem? Woraus schließt Du, dass Deine NVIDIA-Karte nicht in Betrieb ist? Hast Du keine grafische Oberfläche?toyotafahrer schrieb:... Und wie bekomme ich jetzt die NVIDIA Karte in Betrieb ?
Das war keine wirklich gute Idee.toyotafahrer schrieb:... Leider geht der Installer von NVIDIA nicht . Ich habe 2 ausprobiert , beide brechen mit ERROR ab.
Ich korrigiere Dich nur sehr ungern, aber normalerweise habe ich die NVIDIA-Karte im UEFI meines Notebooks immer auf "MSHYBRID" (Optimus-Modus) eingestellt und nutze entweder bumblebee (mit 15.1) oder better-prime (mit Tumbleweed), wobei es mir hauptsächlich darum geht, die "stromfressende" NVIDIA-Karte komplett abzuschalten (bbswitch). Die NVIDIA-Karte aktiviere ich nur sehr selten, z.B. wenn ich doch einmal meinen HDMI-Anschluss nutzen will.josef-wien schrieb:... Bei Optimus mußt Du Bumblebee oder Prime verwenden, der normale Nvidia-Treiber funktioniert hier nicht (bei susejunky ist die Intel-Grafik im UEFI deaktiviert und somit für das Betriebssystem nicht existent).
Warum der Wechsel? Deine letzte Installation von openSUSE Leap 15.? hat doch funktioniert?
Alles gut!josef-wien schrieb:... Ich habe mich auf Deinen Beitrag vom 15. April 2019, 14:37 Uhr, bezogen (und da war von nichts anderem die Rede).
Ja, das war mir klar. Meine überrascht sein bezog sich auch mehr auf die Tatsache, dass das Live-Medium ohne weiteres zutun sofort in einen lauffähigen Desktop gebootet hat (trotz Optimus-Modus). Wenn ich da an die openSUSE-Leap 15.0 Installations-DVD denke ...josef-wien schrieb:... Die Kernel-Module i915 und nouveau können problemlos nebeneinander geladen werden.
Hier habe ich ein paar Informationen zusammengestellt: http://susepaste.org/47183533josef-wien schrieb:... Interessant wäre, was /var/log/Xorg.0.log zu den Xorg-Modulen intel und nouveau von sich gibt.
Nicht nur das, mit "better-suse-prime" kann ich zwischen dem intel-modesetting-Treiber, dem intel-xf86-video-Treiber und dem proprietären NVIDIA-Treiber umschalten. Allerdings muss man je nach Umschaltrichtung auf multi-user.target zurück (um den proprietären NVIDIA-Treiber entladen zu können). Aus meiner Sicht ist das alles keine wirklich komfortable Lösung. Aber ich wußte, worauf ich mich einlassen und will mich daher nicht beschweren.josef-wien schrieb:... Zumindet mit Prime kann zwischen den beiden Modulen umgeschaltet werden.
linux-oinj:~ # lspci -nnk | grep -EiA3 '3d|display|vga'
00:02.0 VGA compatible controller [0300]: Intel Corporation Device [8086:3e9b]
Subsystem: Micro-Star International Co., Ltd. [MSI] Device [1462:121a]
Kernel driver in use: i915
Kernel modules: i915
--
01:00.0 3D controller [0302]: NVIDIA Corporation GP107M [GeForce GTX 1050 Mobile] [10de:1c8d] (rev a1)
Subsystem: Micro-Star International Co., Ltd. [MSI] Device [1462:121a]
Kernel driver in use: nouveau
Kernel modules: nouveau
linux-oinj:~ # od -An -t u1 /sys/firmware/efi/vars/SecureBoot-8be4df61-93ca-11d2-aa0d-00e098032b8c/data
1
[ -d /sys/firmware/efi ] && echo "EFI boot" || echo "Legacy boot"
EFI boot
linux-oinj:~ # efibootmgr -v
BootCurrent: 0000
Timeout: 0 seconds
BootOrder: 0000,0003,0001,0002,0004,0005,0006
Boot0000* opensuse-secureboot HD(1,GPT,205f11d5-de56-48ee-9d36-734443df6c74,0x800,0xfa000)/File(\EFI\OPENSUSE\SHIM.EFI)
Boot0001 UEFI: PXE IP4 KIller PCIe Network Controller PciRoot(0x0)/Pci(0x1d,0x0)/Pci(0x0,0x0)/MAC(00d861033dbd,0)/IPv4(0.0.0.0:0<->0.0.0.0:0,0,0)..BO
Boot0002 UEFI: PXE IP6 KIller PCIe Network Controller PciRoot(0x0)/Pci(0x1d,0x0)/Pci(0x0,0x0)/MAC(00d861033dbd,0)/IPv6([::]:<->[::]:,0,0)..BO
Boot0003* opensuse HD(1,GPT,205f11d5-de56-48ee-9d36-734443df6c74,0x800,0xfa000)/File(\EFI\OPENSUSE\GRUBX64.EFI)..BO
Boot0004* UEFI:CD/DVD Drive BBS(129,,0x0)
Boot0005* UEFI:Removable Device BBS(130,,0x0)
Boot0006* UEFI:Network Device BBS(131,,0x0)
linux-oinj:~ # ls -la /boot/efi/EFI
total 40
drwxr-xr-x 4 root root 8192 Apr 17 2019 .
drwxr-xr-x 3 root root 16384 Jan 1 1970 ..
drwxr-xr-x 2 root root 8192 Apr 17 2019 boot
drwxr-xr-x 2 root root 8192 Apr 17 2019 opensuse
linux-oinj:~ # zypper lr -uEP
# | Alias | Name | Enabled | GPG Check | Refresh | Priority | URI
---+-----------------------+-----------------------------------+---------+-----------+---------+----------+------------------------------------------------------------------
3 | packman.inode.at-suse | Packman Repository | Yes | (r ) Yes | Yes | 20 | http://packman.inode.at/suse/openSUSE_Leap_15.0/
1 | google-chrome | google-chrome | Yes | ( p) Yes | Yes | 99 | http://dl.google.com/linux/chrome/rpm/stable/x86_64
8 | repo-non-oss | openSUSE-Leap-15.0-Non-Oss | Yes | (r ) Yes | Yes | 99 | http://download.opensuse.org/distribution/leap/15.0/repo/non-oss/
9 | repo-oss | openSUSE-Leap-15.0-Oss | Yes | (r ) Yes | Yes | 99 | http://download.opensuse.org/distribution/leap/15.0/repo/oss/
12 | repo-update | openSUSE-Leap-15.0-Update | Yes | (r ) Yes | Yes | 99 | http://download.opensuse.org/update/leap/15.0/oss/
13 | repo-update-non-oss | openSUSE-Leap-15.0-Update-Non-Oss | Yes | (r ) Yes | Yes | 99 | http://download.opensuse.org/update/leap/15.0/non-oss/
14 | x86_64 | Google | Yes | ( p) Yes | Yes | 99 | http://dl.google.com/linux/rpm/stable/x86_64
linux-oinj:~ # grep -Ew 'WW|EE' /var/log/Xorg.0.log
(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[ 17.574] (WW) The directory "/usr/share/fonts/misc/sgi" does not exist.
[ 17.675] (WW) Warning, couldn't open module intel
[ 17.675] (EE) Failed to load module "intel" (module does not exist, 0)
[ 17.676] (WW) Warning, couldn't open module nvidia
[ 17.676] (EE) Failed to load module "nvidia" (module does not exist, 0)
[ 17.678] (WW) Warning, couldn't open module nv
[ 17.678] (EE) Failed to load module "nv" (module does not exist, 0)
[ 17.712] (WW) Falling back to old probe method for fbdev
linux-oinj:~ # grep -i nvidia /var/log/Xorg.0.log
[ 17.675] (==) Matched nvidia as autoconfigured driver 1
[ 17.675] (II) LoadModule: "nvidia"
[ 17.676] (WW) Warning, couldn't open module nvidia
[ 17.676] (II) UnloadModule: "nvidia"
[ 17.676] (II) Unloading nvidia
[ 17.676] (EE) Failed to load module "nvidia" (module does not exist, 0)
[ 17.680] (II) NOUVEAU driver for NVIDIA chipset families :
[ 17.829] (--) NOUVEAU(G0): Chipset: "NVIDIA NV137"
linux-oinj:~ # /sbin/lspci -nnk | grep -EiA3 '3d|display|vga'
00:02.0 VGA compatible controller [0300]: Intel Corporation Device [8086:3e9b]
Subsystem: Micro-Star International Co., Ltd. [MSI] Device [1462:121a]
Kernel driver in use: i915
Kernel modules: i915
--
01:00.0 3D controller [0302]: NVIDIA Corporation GP107M [GeForce GTX 1050 Mobile] [10de:1c8d] (rev a1)
Subsystem: Micro-Star International Co., Ltd. [MSI] Device [1462:121a]
Kernel driver in use: nouveau
Kernel modules: nouveau
Beide Grafikkarten sind aktiv. Die Intel Grafik nutzt den modesetting-Treiber des Kernels und die NVIDIA-Karte den nouveau-Treiber.toyotafahrer schrieb:Code:linux-oinj:~ # lspci -nnk | grep -EiA3 '3d|display|vga' 00:02.0 VGA compatible controller [0300]: Intel Corporation Device [8086:3e9b] Subsystem: Micro-Star International Co., Ltd. [MSI] Device [1462:121a] Kernel driver in use: i915 Kernel modules: i915 -- 01:00.0 3D controller [0302]: NVIDIA Corporation GP107M [GeForce GTX 1050 Mobile] [10de:1c8d] (rev a1) Subsystem: Micro-Star International Co., Ltd. [MSI] Device [1462:121a] Kernel driver in use: nouveau Kernel modules: nouveau
In Deinem UEFI ist secureboot aktiviert.toyotafahrer schrieb:Code:linux-oinj:~ # od -An -t u1 /sys/firmware/efi/vars/SecureBoot-8be4df61-93ca-11d2-aa0d-00e098032b8c/data 1
Dein System bootet im UEFI-modus.toyotafahrer schrieb:Code:[ -d /sys/firmware/efi ] && echo "EFI boot" || echo "Legacy boot" EFI boot
Die im NVRAM Deines UEFIs vermerken Boot-Möglichkeiten (Boot0000 bis Boot0006) und die Reihenfolge (BootOrder) in der beim Systemstart versucht wird die Einträge zu starten (Abbruch, sobald ein Eintrag gestartet werden kann). Als erster Eintrag wird Boot0000 gestartet.toyotafahrer schrieb:Code:linux-oinj:~ # efibootmgr -v BootCurrent: 0000 Timeout: 0 seconds BootOrder: 0000,0003,0001,0002,0004,0005,0006 Boot0000* opensuse-secureboot HD(1,GPT,205f11d5-de56-48ee-9d36-734443df6c74,0x800,0xfa000)/File(\EFI\OPENSUSE\SHIM.EFI) Boot0001 UEFI: PXE IP4 KIller PCIe Network Controller PciRoot(0x0)/Pci(0x1d,0x0)/Pci(0x0,0x0)/MAC(00d861033dbd,0)/IPv4(0.0.0.0:0<->0.0.0.0:0,0,0)..BO Boot0002 UEFI: PXE IP6 KIller PCIe Network Controller PciRoot(0x0)/Pci(0x1d,0x0)/Pci(0x0,0x0)/MAC(00d861033dbd,0)/IPv6([::]:<->[::]:,0,0)..BO Boot0003* opensuse HD(1,GPT,205f11d5-de56-48ee-9d36-734443df6c74,0x800,0xfa000)/File(\EFI\OPENSUSE\GRUBX64.EFI)..BO Boot0004* UEFI:CD/DVD Drive BBS(129,,0x0) Boot0005* UEFI:Removable Device BBS(130,,0x0) Boot0006* UEFI:Network Device BBS(131,,0x0)
Der Inhalt Deiner EFI Systempartition.toyotafahrer schrieb:Code:linux-oinj:~ # ls -la /boot/efi/EFI total 40 drwxr-xr-x 4 root root 8192 Apr 17 2019 . drwxr-xr-x 3 root root 16384 Jan 1 1970 .. drwxr-xr-x 2 root root 8192 Apr 17 2019 boot drwxr-xr-x 2 root root 8192 Apr 17 2019 opensuse
Die Liste Deiner aktiven Repositories. Einemtoyotafahrer schrieb:Code:linux-oinj:~ # zypper lr -uEP # | Alias | Name | Enabled | GPG Check | Refresh | Priority | URI ---+-----------------------+-----------------------------------+---------+-----------+---------+----------+------------------------------------------------------------------ 3 | packman.inode.at-suse | Packman Repository | Yes | (r ) Yes | Yes | 20 | http://packman.inode.at/suse/openSUSE_Leap_15.0/ 1 | google-chrome | google-chrome | Yes | ( p) Yes | Yes | 99 | http://dl.google.com/linux/chrome/rpm/stable/x86_64 8 | repo-non-oss | openSUSE-Leap-15.0-Non-Oss | Yes | (r ) Yes | Yes | 99 | http://download.opensuse.org/distribution/leap/15.0/repo/non-oss/ 9 | repo-oss | openSUSE-Leap-15.0-Oss | Yes | (r ) Yes | Yes | 99 | http://download.opensuse.org/distribution/leap/15.0/repo/oss/ 12 | repo-update | openSUSE-Leap-15.0-Update | Yes | (r ) Yes | Yes | 99 | http://download.opensuse.org/update/leap/15.0/oss/ 13 | repo-update-non-oss | openSUSE-Leap-15.0-Update-Non-Oss | Yes | (r ) Yes | Yes | 99 | http://download.opensuse.org/update/leap/15.0/non-oss/ 14 | x86_64 | Google | Yes | ( p) Yes | Yes | 99 | http://dl.google.com/linux/rpm/stable/x86_64
# zypper refresh
# zypper up
Meines Erachtens alles OKtoyotafahrer schrieb:Code:linux-oinj:~ # grep -Ew 'WW|EE' /var/log/Xorg.0.log (WW) warning, (EE) error, (NI) not implemented, (??) unknown. [ 17.574] (WW) The directory "/usr/share/fonts/misc/sgi" does not exist. [ 17.675] (WW) Warning, couldn't open module intel [ 17.675] (EE) Failed to load module "intel" (module does not exist, 0) [ 17.676] (WW) Warning, couldn't open module nvidia [ 17.676] (EE) Failed to load module "nvidia" (module does not exist, 0) [ 17.678] (WW) Warning, couldn't open module nv [ 17.678] (EE) Failed to load module "nv" (module does not exist, 0) [ 17.712] (WW) Falling back to old probe method for fbdev
Code:linux-oinj:~ # grep -i nvidia /var/log/Xorg.0.log [ 17.675] (==) Matched nvidia as autoconfigured driver 1 [ 17.675] (II) LoadModule: "nvidia" [ 17.676] (WW) Warning, couldn't open module nvidia [ 17.676] (II) UnloadModule: "nvidia" [ 17.676] (II) Unloading nvidia [ 17.676] (EE) Failed to load module "nvidia" (module does not exist, 0) [ 17.680] (II) NOUVEAU driver for NVIDIA chipset families : [ 17.829] (--) NOUVEAU(G0): Chipset: "NVIDIA NV137"
Das Paket mit dem Xorg-Modul intel ist offenbar nicht installiert. Was ergibt:toyotafahrer schrieb:Code:[ 17.675] (WW) Warning, couldn't open module intel [ 17.675] (EE) Failed to load module "intel" (module does not exist, 0)
xrandr --listproviders
grep -Ei 'module|render' /var/log/Xorg.0.log
glxinfo | grep rendering
linux-oinj:~ # xrandr --listproviders
Providers: number : 2
Provider 0: id: 0x86; cap: 0xf (Source Output, Sink Output, Source Offload, Sink Offload); crtcs: 3; outputs: 4; associated providers: 1; name: modesetting
output eDP-1
output DP-1
output HDMI-1
output HDMI-2
Provider 1: id: 0x5f; cap: 0x5 (Source Output, Source Offload); crtcs: 0; outputs: 0; associated providers: 1; name: nouveau
linux-oinj:~ # grep -Ei 'module|render' /var/log/Xorg.0.log
[ 17.574] (==) ModulePath set to "/usr/lib64/xorg/modules"
[ 17.574] (II) Module ABI versions:
[ 17.664] (II) LoadModule: "glx"
[ 17.664] (II) Loading /usr/lib64/xorg/modules/extensions/libglx.so
[ 17.675] (II) Module glx: vendor="X.Org Foundation"
[ 17.675] compiled for 1.19.6, module version = 1.0.0
[ 17.675] (II) LoadModule: "intel"
[ 17.675] (WW) Warning, couldn't open module intel
[ 17.675] (II) UnloadModule: "intel"
[ 17.675] (EE) Failed to load module "intel" (module does not exist, 0)
[ 17.675] (II) LoadModule: "nvidia"
[ 17.676] (WW) Warning, couldn't open module nvidia
[ 17.676] (II) UnloadModule: "nvidia"
[ 17.676] (EE) Failed to load module "nvidia" (module does not exist, 0)
[ 17.676] (II) LoadModule: "nouveau"
[ 17.676] (II) Loading /usr/lib64/xorg/modules/drivers/nouveau_drv.so
[ 17.678] (II) Module nouveau: vendor="X.Org Foundation"
[ 17.678] compiled for 1.19.6, module version = 1.0.15
[ 17.678] Module class: X.Org Video Driver
[ 17.678] (II) LoadModule: "nv"
[ 17.678] (WW) Warning, couldn't open module nv
[ 17.678] (II) UnloadModule: "nv"
[ 17.678] (EE) Failed to load module "nv" (module does not exist, 0)
[ 17.678] (II) LoadModule: "modesetting"
[ 17.678] (II) Loading /usr/lib64/xorg/modules/drivers/modesetting_drv.so
[ 17.679] (II) Module modesetting: vendor="X.Org Foundation"
[ 17.679] compiled for 1.19.6, module version = 1.19.6
[ 17.679] Module class: X.Org Video Driver
[ 17.679] (II) LoadModule: "fbdev"
[ 17.679] (II) Loading /usr/lib64/xorg/modules/drivers/fbdev_drv.so
[ 17.679] (II) Module fbdev: vendor="X.Org Foundation"
[ 17.679] compiled for 1.19.6, module version = 0.4.4
[ 17.679] Module class: X.Org Video Driver
[ 17.679] (II) LoadModule: "vesa"
[ 17.679] (II) Loading /usr/lib64/xorg/modules/drivers/vesa_drv.so
[ 17.680] (II) Module vesa: vendor="X.Org Foundation"
[ 17.680] compiled for 1.19.6, module version = 2.4.0
[ 17.680] Module class: X.Org Video Driver
[ 17.712] (II) Loading sub module "fbdevhw"
[ 17.712] (II) LoadModule: "fbdevhw"
[ 17.712] (II) Loading /usr/lib64/xorg/modules/libfbdevhw.so
[ 17.713] (II) Module fbdevhw: vendor="X.Org Foundation"
[ 17.713] compiled for 1.19.6, module version = 0.0.2
[ 17.713] (II) Loading sub module "glamoregl"
[ 17.713] (II) LoadModule: "glamoregl"
[ 17.713] (II) Loading /usr/lib64/xorg/modules/libglamoregl.so
[ 17.719] (II) Module glamoregl: vendor="X.Org Foundation"
[ 17.719] compiled for 1.19.6, module version = 1.0.0
[ 17.828] (II) Loading sub module "fb"
[ 17.828] (II) LoadModule: "fb"
[ 17.828] (II) Loading /usr/lib64/xorg/modules/libfb.so
[ 17.829] (II) Module fb: vendor="X.Org Foundation"
[ 17.829] compiled for 1.19.6, module version = 1.0.0
[ 17.829] (II) Loading sub module "dri2"
[ 17.829] (II) LoadModule: "dri2"
[ 17.829] (II) Module "dri2" already built-in
[ 17.830] (II) Loading sub module "fb"
[ 17.830] (II) LoadModule: "fb"
[ 17.830] (II) Loading /usr/lib64/xorg/modules/libfb.so
[ 17.830] (II) Module fb: vendor="X.Org Foundation"
[ 17.830] compiled for 1.19.6, module version = 1.0.0
[ 17.830] (II) Loading sub module "shadowfb"
[ 17.830] (II) LoadModule: "shadowfb"
[ 17.830] (II) Loading /usr/lib64/xorg/modules/libshadowfb.so
[ 17.831] (II) Module shadowfb: vendor="X.Org Foundation"
[ 17.831] compiled for 1.19.6, module version = 1.0.0
[ 17.831] (II) UnloadModule: "fbdev"
[ 17.831] (II) UnloadSubModule: "fbdevhw"
[ 17.831] (II) UnloadModule: "vesa"
[ 18.092] (II) Loading sub module "exa"
[ 18.092] (II) LoadModule: "exa"
[ 18.092] (II) Loading /usr/lib64/xorg/modules/libexa.so
[ 18.093] (II) Module exa: vendor="X.Org Foundation"
[ 18.093] compiled for 1.19.6, module version = 2.6.0
[ 18.093] (II) Composite (RENDER acceleration)
[ 18.296] (II) LoadModule: "libinput"
[ 18.296] (II) Loading /usr/lib64/xorg/modules/input/libinput_drv.so
[ 18.300] (II) Module libinput: vendor="X.Org Foundation"
[ 18.300] compiled for 1.19.6, module version = 0.27.1
[ 18.300] Module class: X.Org XInput Driver
[ 1500.009] (II) UnloadModule: "libinput"
[ 1500.033] (II) UnloadModule: "libinput"
[ 1500.201] (II) UnloadModule: "libinput"
linux-oinj:~ # glxinfo | grep rendering
glxinfo: command not found
Das Programm ist bei Dir nicht installiert. Suche es in Yast, und installiere es.toyotafahrer schrieb:glxinfo: command not found
ich verstehe zwar nicht ganz was Du hier vermisst, aber zur Erläuterung:toyotafahrer schrieb:... Jetzt aber noch einmal eine Frage zum UEFI , ich war der Meinung das es sich um ein Grafisches Bios handelt.
Wenn dem so sein sollte wie kann ich es aufrufen ? :???:
#!/bin/sh
exec tail -n +3 $0
# This file provides an easy way to add custom menu entries. Simply type the
# menu entries you want to add after this comment. Be careful not to change
# the 'exec tail' line above.
menuentry 'Setup UEFI'{
fwsetup
}
# grub2-mkconfig -o /boot/grub2/grub.cfg
0.165490] ACPI Error: [_SB_.PCI0.RP05.PXSX] Namespace lookup failure, AE_NOT_FOUND (20170303/dswload2-191)
[ 0.165500] ACPI Exception: AE_NOT_FOUND, During name lookup/catalog (20170303/psobject-241)
[ 0.165504] ACPI Error: Method parse/execution failed [\_SB.PCI0.RP04.PXSX] (Node ffff88018fd5dbb8), AE_NOT_FOUND (20170303/psparse-543)
[ 0.167270] ACPI Error: [_SB_.PCI0.RP09.PXSX] Namespace lookup failure, AE_NOT_FOUND (20170303/dswload2-191)
[ 0.167275] ACPI Exception: AE_NOT_FOUND, During name lookup/catalog (20170303/psobject-241)
[ 0.167279] ACPI Error: Method parse/execution failed [\_SB.PCI0.RP08.PXSX] (Node ffff88018fd5e758), AE_NOT_FOUND (20170303/psparse-543)
[ 0.169049] ACPI Error: [_SB_.PCI0.RP13.PXSX] Namespace lookup failure, AE_NOT_FOUND (20170303/dswload2-191)
[ 0.169054] ACPI Exception: AE_NOT_FOUND, During name lookup/catalog (20170303/psobject-241)
[ 0.169057] ACPI Error: Method parse/execution failed [\_SB.PCI0.RP12.PXSX] (Node ffff88018fd5a910), AE_NOT_FOUND (20170303/psparse-543)
linux-oinj:~ # zypper in glxinfo
Loading repository data...
Reading installed packages...
'glxinfo' not found in package names. Trying capabilities.
No provider of 'glxinfo' found.
Resolving package dependencies...
Nothing to do.
linux-oinj:~ # zypper lr
Repository priorities in effect: (See 'zypper lr -P' for details)
20 (raised priority) : 1 repository
99 (default priority) : 8 repositories
# | Alias | Name | Enabled | GPG Check | Refresh
---+-------------------------------------+-----------------------------------+---------+-----------+--------
1 | google-chrome | google-chrome | No | ---- | ----
2 | http-download.opensuse.org-2df7a443 | KDE:Qt5 | Yes | (r ) Yes | Yes
3 | http-download.opensuse.org-42b1bf55 | KDE:Frameworks5 | Yes | (r ) Yes | Yes
4 | http-download.opensuse.org-b408232f | home:Herbster0815 - Cairo dock | No | ---- | ----
5 | openSUSE-Leap-15.0-1 | openSUSE-Leap-15.0-1 | No | ---- | ----
6 | packman.inode.at-suse | Packman Repository | Yes | (r ) Yes | Yes
7 | repo-non-oss | openSUSE-Leap-15.0-Non-Oss | Yes | (r ) Yes | Yes
8 | repo-oss | openSUSE-Leap-15.0-Oss | Yes | (r ) Yes | Yes
9 | repo-source | openSUSE-Leap-15.0-Source | Yes | (r ) Yes | Yes
10 | repo-source-non-oss | openSUSE-Leap-15.0-Source-Non-Oss | Yes | (r ) Yes | Yes
11 | repo-update | openSUSE-Leap-15.0-Update | Yes | (r ) Yes | Yes
12 | repo-update-non-oss | openSUSE-Leap-15.0-Update-Non-Oss | Yes | (r ) Yes | Yes
https://linux-club.de/wiki/opensuse/Kategorie:UEFIsusejunky schrieb:Welche weiterführenden Ergebnisse daraus hervorgegangen sind
linux-oinj:~ # zypper lr -d
Repository priorities in effect: (See 'zypper lr -P' for details)
20 (raised priority) : 1 repository
99 (default priority) : 5 repositories
# | Alias | Name | Enabled | GPG Check | Refresh | Priority | Type | URI | Service
---+-------------------------------------+-----------------------------------+---------+-----------+---------+----------+--------+-------------------------------------------------------------------------------------+--------
1 | download.nvidia.com-leap | nVidia Graphics Drivers | Yes | (r ) Yes | Yes | 99 | rpm-md | https://download.nvidia.com/opensuse/leap/15.0 |
2 | google-chrome | google-chrome | No | ---- | ---- | 99 | rpm-md | http://dl.google.com/linux/chrome/rpm/stable/x86_64 |
3 | http-download.opensuse.org-2df7a443 | KDE:Qt5 | No | ---- | ---- | 99 | rpm-md | http://download.opensuse.org/repositories/KDE:/Qt5/openSUSE_Leap_15.0/ |
4 | http-download.opensuse.org-42b1bf55 | KDE:Frameworks5 | No | ---- | ---- | 99 | rpm-md | http://download.opensuse.org/repositories/KDE:/Frameworks5/openSUSE_Leap_15.0/ |
5 | http-download.opensuse.org-b408232f | home:Herbster0815 - Cairo dock | No | ---- | ---- | 99 | rpm-md | http://download.opensuse.org/repositories/home:/Herbster0815/openSUSE_Leap_15.0/ |
6 | openSUSE-Leap-15.0-1 | openSUSE-Leap-15.0-1 | No | ---- | ---- | 99 | rpm-md | hd:///?device=/dev/disk/by-id/usb-JetFlash_Transcend_8GB_176S6M3MZJMIYB6N-0:0-part1 |
7 | packman.inode.at-suse | Packman Repository | Yes | (r ) Yes | Yes | 20 | rpm-md | http://packman.inode.at/suse/openSUSE_Leap_15.0/ |
8 | repo-non-oss | openSUSE-Leap-15.0-Non-Oss | Yes | (r ) Yes | Yes | 99 | rpm-md | http://download.opensuse.org/distribution/leap/15.0/repo/non-oss/ |
9 | repo-oss | openSUSE-Leap-15.0-Oss | Yes | (r ) Yes | Yes | 99 | rpm-md | http://download.opensuse.org/distribution/leap/15.0/repo/oss/ |
10 | repo-source | openSUSE-Leap-15.0-Source | No | ---- | ---- | 99 | rpm-md | http://download.opensuse.org/source/distribution/leap/15.0/repo/oss/ |
11 | repo-source-non-oss | openSUSE-Leap-15.0-Source-Non-Oss | No | ---- | ---- | 99 | rpm-md | http://download.opensuse.org/source/distribution/leap/15.0/repo/non-oss/ |
12 | repo-update | openSUSE-Leap-15.0-Update | Yes | (r ) Yes | Yes | 99 | rpm-md | http://download.opensuse.org/update/leap/15.0/oss/ |
13 | repo-update-non-oss | openSUSE-Leap-15.0-Update-Non-Oss | Yes | (r ) Yes | Yes | 99 | rpm-md | http://download.opensuse.org/update/leap/15.0/non-oss/ |
linux-oinj:~ # systemctl status bumblebeed
● bumblebeed.service - Bumblebee C Daemon
Loaded: loaded (/usr/lib/systemd/system/bumblebeed.service; enabled; vendor preset: disabled)
Active: active (running) since Thu 2019-04-18 17:10:06 CEST; 37min ago
Main PID: 1180 (bumblebeed)
Tasks: 1 (limit: 4915)
CGroup: /system.slice/bumblebeed.service
└─1180 /usr/sbin/bumblebeed
Apr 18 17:10:06 linux-oinj systemd[1]: Started Bumblebee C Daemon.
Apr 18 17:10:06 linux-oinj bumblebeed[1180]: [ 7.149740] [INFO]/usr/sbin/bumblebeed 3.2.1 started
das zu installierende Paket ist "Mesa-demo-x".toyotafahrer schrieb:... Dann habe ich glxinfo versucht , kann er nicht finden.
Warum? Gibt es irgendeine Funktionalität, die Du dringend benötigst und die Du nur mit bumblebee bekommen kannst?toyotafahrer schrieb:... Bumblebee habe ich installiert ,
Hältst Du das für eine gute Idee, Dinge zu installieren, von denen Du noch nicht weist, wie sie funktionieren? Ich halte das eher für "grob fahrlässig".toyotafahrer schrieb:... da muss ich mich erst belesen wie das geht .