LinuxQuestions.org
Latest LQ Deal: Latest LQ Deals
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Desktop
User Name
Password
Linux - Desktop This forum is for the discussion of all Linux Software used in a desktop context.

Notices


Reply
  Search this Thread
Old 04-18-2019, 04:26 PM   #1
jimmi morrison
LQ Newbie
 
Registered: Apr 2019
Location: england
Distribution: linux mint
Posts: 21

Rep: Reputation: 0
clean install LM 19.1 = running in software rendering mode running without video hardware acceleration


now 2-3 weeks without computer !? cannot solve - appreciate expert help :

inxi -F
System:
Host: leoboy-All-Series Kernel: 4.15.0-20-generic x86_64 bits: 64
Desktop: Cinnamon 4.0.10 Distro: Linux Mint 19.1 Tessa
Machine:
Type: Desktop System: ASUS product: All Series v: N/A
serial: <root required>
Mobo: ASUSTeK model: H81M-K v: Rev X.0x serial: <root required>
BIOS: American Megatrends v: 3602 date: 03/26/2018
CPU:
Topology: Quad Core model: Intel Core i7-4790K bits: 64 type: MT MCP
L2 cache: 8192 KiB
Speed: 1198 MHz min/max: 800/4400 MHz Core speeds (MHz): 1: 1197 2: 1198
3: 1197 4: 1199 5: 1197 6: 1199 7: 1199 8: 1198
Graphics:
Device-1: Intel Xeon E3-1200 v3/4th Gen Core Processor Integrated Graphics
driver: N/A
Display: x11 server: X.Org 1.19.6 driver: vesa resolution: 1920x1200~N/A
OpenGL: renderer: llvmpipe (LLVM 7.0 256 bits) v: 3.3 Mesa 18.2.8
Audio:
Device-1: Intel 8 Series/C220 Series High Definition Audio
driver: snd_hda_intel
Sound Server: ALSA v: k4.15.0-20-generic
Network:
Device-1: Realtek RTL8111/8168/8411 PCI Express Gigabit Ethernet
driver: r8169
IF: enp3s0 state: up speed: 1000 Mbps duplex: full mac: 9c:5c:8e:00:66:44
Drives:
Local Storage: total: 1.82 TiB used: 8.81 GiB (0.5%)
ID-1: /dev/sda vendor: Seagate model: ST2000DM001-1ER164 size: 1.82 TiB
Partition:
ID-1: / size: 1.79 TiB used: 8.81 GiB (0.5%) fs: ext4 dev: /dev/sda1
Sensors:
System Temperatures: cpu: 29.8 C mobo: 27.8 C
Fan Speeds (RPM): cpu: 0
Info:
Processes: 227 Uptime: 6h 30m Memory: 15.54 GiB used: 1.77 GiB (11.4%)
Shell: bash inxi: 3.0.27
 
Old 04-18-2019, 06:41 PM   #2
mrmazda
LQ Guru
 
Registered: Aug 2016
Location: SE USA
Distribution: openSUSE 24/7; Debian, Knoppix, Mageia, Fedora, others
Posts: 5,813
Blog Entries: 1

Rep: Reputation: 2068Reputation: 2068Reputation: 2068Reputation: 2068Reputation: 2068Reputation: 2068Reputation: 2068Reputation: 2068Reputation: 2068Reputation: 2068Reputation: 2068
What is the output from:
Code:
cat /proc/cmdline
If /etc/X11/xorg.conf.d/*-intel.conf exists, what does it contain?
 
Old 04-19-2019, 05:26 AM   #3
jimmi morrison
LQ Newbie
 
Registered: Apr 2019
Location: england
Distribution: linux mint
Posts: 21

Original Poster
Rep: Reputation: 0
Quote:
Originally Posted by mrmazda View Post
What is the output from:
Code:
cat /proc/cmdline
If /etc/X11/xorg.conf.d/*-intel.conf exists, what does it contain?
thanks reply mrmazda - output is : BOOT_IMAGE=/boot/vmlinuz-4.15.0-20-generic root=UUID=623faa7a-8dd4-4994-9169-5ceebba7e1af ro recovery nomodeset

re
/etc/x11/xorg.conf i only have this & it contains : Section "Device"
Identifier "Configured Video Device"
Driver "vesa"
EndSection

Section "Monitor"
Identifier "Configured Monitor"
EndSection

Section "Screen"
Identifier "Default Screen"
Monitor "Configured Monitor"
Device "Configured Video Device"
EndSection

thanks
 
Old 04-19-2019, 06:48 AM   #4
mrmazda
LQ Guru
 
Registered: Aug 2016
Location: SE USA
Distribution: openSUSE 24/7; Debian, Knoppix, Mageia, Fedora, others
Posts: 5,813
Blog Entries: 1

Rep: Reputation: 2068Reputation: 2068Reputation: 2068Reputation: 2068Reputation: 2068Reputation: 2068Reputation: 2068Reputation: 2068Reputation: 2068Reputation: 2068Reputation: 2068
Test removal of nomodeset and recovery from the kernel cmdline at the grub menu when booting by striking the e key, moving the cursor down to where nomodeset and recovery are present, and delete or backspace them away. This won't help until xorg.conf is renamed or deleted. With these three changes, automagic should produce expected results.

That kernel cmdline looks like it resulted from choosing a non-default Grub menu selection. If that's the case, then choosing a selection that omits them should be all that's needed at boot time, but still that xorg.conf needs to go.

If booting with neither nomodeset nor recovery by choosing an existing Grub menu selection and xorg.conf does indeed produce expected operation, and the selection made is the default, then no further reconfiguration will be needed. If however it is necessary to make the edit at runtime, or manually choose a selection that omits them, /etc/default/grub probably needs an edit of the GRUB_CMDLINE_LINUX_DEFAULT= line to exclude them, following up with rebuilding grub.cfg using grub-mkconfig or update-grub before next shutdown or reboot.
 
Old 04-19-2019, 07:47 AM   #5
jimmi morrison
LQ Newbie
 
Registered: Apr 2019
Location: england
Distribution: linux mint
Posts: 21

Original Poster
Rep: Reputation: 0
Quote:
Originally Posted by mrmazda View Post
Test removal of nomodeset and recovery from the kernel cmdline at the grub menu when booting by striking the e key, moving the cursor down to where nomodeset and recovery are present, and delete or backspace them away. This won't help until xorg.conf is renamed or deleted. With these three changes, automagic should produce expected results.

That kernel cmdline looks like it resulted from choosing a non-default Grub menu selection. If that's the case, then choosing a selection that omits them should be all that's needed at boot time, but still that xorg.conf needs to go.

If booting with neither nomodeset nor recovery by choosing an existing Grub menu selection and xorg.conf does indeed produce expected operation, and the selection made is the default, then no further reconfiguration will be needed. If however it is necessary to make the edit at runtime, or manually choose a selection that omits them, /etc/default/grub probably needs an edit of the GRUB_CMDLINE_LINUX_DEFAULT= line to exclude them, following up with rebuilding grub.cfg using grub-mkconfig or update-grub before next shutdown or reboot.
thanks - reboot & fiddle with e key loads GNU GRUB version 2.02 / no sign anywhere of nomodeset nor recovery ?!
 
Old 04-19-2019, 03:56 PM   #6
mrmazda
LQ Guru
 
Registered: Aug 2016
Location: SE USA
Distribution: openSUSE 24/7; Debian, Knoppix, Mageia, Fedora, others
Posts: 5,813
Blog Entries: 1

Rep: Reputation: 2068Reputation: 2068Reputation: 2068Reputation: 2068Reputation: 2068Reputation: 2068Reputation: 2068Reputation: 2068Reputation: 2068Reputation: 2068Reputation: 2068
If https://linuxmint-installation-guide...-nomodeset.png is the screen you see after boot, try pressing the tab key instead of the e key.

If it's not the screen you see, please describe the screen you see.

You might need to hold down the shift key as POST completes in order to see the Grub menu screen where you need to use the e key.

Last edited by mrmazda; 04-19-2019 at 04:03 PM.
 
Old 04-21-2019, 06:28 AM   #7
jimmi morrison
LQ Newbie
 
Registered: Apr 2019
Location: england
Distribution: linux mint
Posts: 21

Original Poster
Rep: Reputation: 0
Quote:
Originally Posted by mrmazda View Post
If https://linuxmint-installation-guide...-nomodeset.png is the screen you see after boot, try pressing the tab key instead of the e key.

If it's not the screen you see, please describe the screen you see.

You might need to hold down the shift key as POST completes in order to see the Grub menu screen where you need to use the e key.
hi mrmazda - the only screen i get is blank with the LM Bookwood image to middle bottom right hand side ie... am stuck in SR mode. If ctrl alt del then get box Session - log out this session now? - switch user or Cancel or LogOut . If switch user the have to re-log in Cinnamon (Default) - does not work or Cinnamon Software Rendering that works . Terminal works .

LVM state Physical Volumes : not OK (BAD) Volume Groups : OK (Good)

FYI : $ cinnamon settings
Cinnamon warning: Software rendering detected: llvmpipe (LLVM 7.0, 256 bits)
org.Cinnamon already exists on bus and --replace not specified

if i boot to Advanced Options for LM19.1 - Linux 4.15 0-47 generic recovery mode then i have found that reboots OK without
SR mode but then usually reboots back to the same old same old !?

thanks
 
Old 04-22-2019, 02:16 AM   #8
mrmazda
LQ Guru
 
Registered: Aug 2016
Location: SE USA
Distribution: openSUSE 24/7; Debian, Knoppix, Mageia, Fedora, others
Posts: 5,813
Blog Entries: 1

Rep: Reputation: 2068Reputation: 2068Reputation: 2068Reputation: 2068Reputation: 2068Reputation: 2068Reputation: 2068Reputation: 2068Reputation: 2068Reputation: 2068Reputation: 2068
Quote:
Originally Posted by jimmi morrison View Post
if i boot to Advanced Options for LM19.1 - Linux 4.15 0-47 generic recovery mode then i have found that reboots OK without
SR mode but then usually reboots back to the same old same old !?
How are you determining whether or not you are running in SR mode? I don't have any problem getting a Cinnamon session running from the default Grub selection (neither recovery nor nomodeset) for Mint 19.1 here:
Code:
> inxi -GxxSM
System:    Host: ab250 Kernel: 4.15.0-20-generic x86_64 bits: 64 compiler: gcc v: 7.3.0 Desktop: Cinnamon 4.0.10
           wm: muffin dm: LightDM Distro: Linux Mint 19.1 Tessa base: Ubuntu 18.04 bionic
Machine:   Type: Desktop Mobo: ASUSTeK model: PRIME B250M-C v: Rev X.0x serial: ...
           UEFI: American Megatrends v: 1205 date: 05/11/2018
Graphics:  Device-1: Intel HD Graphics 630 vendor: ASUSTeK driver: i915 v: kernel bus ID: 00:02.0 chip ID: 8086:5912
           Display: x11 server: X.Org 1.19.6 driver: modesetting unloaded: fbdev,vesa resolution: 2560x1440~60Hz
           OpenGL: renderer: Mesa DRI Intel HD Graphics 630 (Kaby Lake GT2) v: 4.5 Mesa 18.2.8 compat-v: 3.0
           direct render: Yes
I have no /etc/X11/xorg.conf and neither any monitor, device or display configuration in /etc/X11/xorg.conf.d/.

If you pastebin your /boot/grub/grub.cfg file maybe someone can spot something gone wrong.
 
Old 04-22-2019, 06:17 AM   #9
jimmi morrison
LQ Newbie
 
Registered: Apr 2019
Location: england
Distribution: linux mint
Posts: 21

Original Poster
Rep: Reputation: 0
Quote:
Originally Posted by mrmazda View Post
How are you determining whether or not you are running in SR mode? I don't have any problem getting a Cinnamon session running from the default Grub selection (neither recovery nor nomodeset) for Mint 19.1 here:
Code:
> inxi -GxxSM
System:    Host: ab250 Kernel: 4.15.0-20-generic x86_64 bits: 64 compiler: gcc v: 7.3.0 Desktop: Cinnamon 4.0.10
           wm: muffin dm: LightDM Distro: Linux Mint 19.1 Tessa base: Ubuntu 18.04 bionic
Machine:   Type: Desktop Mobo: ASUSTeK model: PRIME B250M-C v: Rev X.0x serial: ...
           UEFI: American Megatrends v: 1205 date: 05/11/2018
Graphics:  Device-1: Intel HD Graphics 630 vendor: ASUSTeK driver: i915 v: kernel bus ID: 00:02.0 chip ID: 8086:5912
           Display: x11 server: X.Org 1.19.6 driver: modesetting unloaded: fbdev,vesa resolution: 2560x1440~60Hz
           OpenGL: renderer: Mesa DRI Intel HD Graphics 630 (Kaby Lake GT2) v: 4.5 Mesa 18.2.8 compat-v: 3.0
           direct render: Yes
I have no /etc/X11/xorg.conf and neither any monitor, device or display configuration in /etc/X11/xorg.conf.d/.

If you pastebin your /boot/grub/grub.cfg file maybe someone can spot something gone wrong.
hello from England thanks reply will revert but firstly can you say re https://linuxmint-installation-guide...-nomodeset.png is the screen you see after boot you do not mean from the cd/dvd disc but from a boot after the installation attempt !?
 
Old 04-22-2019, 06:26 AM   #10
mrmazda
LQ Guru
 
Registered: Aug 2016
Location: SE USA
Distribution: openSUSE 24/7; Debian, Knoppix, Mageia, Fedora, others
Posts: 5,813
Blog Entries: 1

Rep: Reputation: 2068Reputation: 2068Reputation: 2068Reputation: 2068Reputation: 2068Reputation: 2068Reputation: 2068Reputation: 2068Reputation: 2068Reputation: 2068Reputation: 2068
Quote:
Originally Posted by jimmi morrison View Post
hello from England thanks reply will revert but firstly can you say re https://linuxmint-installation-guide...-nomodeset.png is the screen you see after boot you do not mean from the cd/dvd disc but from a boot after the installation attempt !?
I don't understand what you asked here. The image at the URL I provided is of the installation media boot menu. I didn't find any image of a Linuxmint Grub menu, or GUI login greeter (LightDM?).
 
Old 04-22-2019, 06:50 AM   #11
jimmi morrison
LQ Newbie
 
Registered: Apr 2019
Location: england
Distribution: linux mint
Posts: 21

Original Poster
Rep: Reputation: 0
Quote:
Originally Posted by mrmazda View Post
I don't understand what you asked here. The image at the URL I provided is of the installation media boot menu. I didn't find any image of a Linuxmint Grub menu, or GUI login greeter (LightDM?).
i think you mean by "installation media boot menu" that the image we are trying to find comes from the Install/Live DVD of LM 19.1 Cinnamon & on this initial boot this is when i should be tapping the "E"
key or TAB or shift etc ... please confirm ?
 
Old 04-22-2019, 11:09 AM   #12
mrmazda
LQ Guru
 
Registered: Aug 2016
Location: SE USA
Distribution: openSUSE 24/7; Debian, Knoppix, Mageia, Fedora, others
Posts: 5,813
Blog Entries: 1

Rep: Reputation: 2068Reputation: 2068Reputation: 2068Reputation: 2068Reputation: 2068Reputation: 2068Reputation: 2068Reputation: 2068Reputation: 2068Reputation: 2068Reputation: 2068
On the screen in the image, after the menu appeared, the kernel cmdline ready to edit is showing, Reaching that point is the result of using the TAB key, as instructed here. This applies when the installation media is booted in BIOS/Legacy mode.

The E key is for initiating an edit upon reaching a Grub menu. After striking the E key, you should be on a screen that looks like this. This applies both when booting installation media in UEFI mode, and when booting an installed system either in Legacy/BIOS mode or in UEFI mode.
 
Old 04-22-2019, 11:41 AM   #13
jimmi morrison
LQ Newbie
 
Registered: Apr 2019
Location: england
Distribution: linux mint
Posts: 21

Original Poster
Rep: Reputation: 0
ok i got here https://linuxmint-installation-guide...-nomodeset.png from the Install/Live DVD of LM 19.1 Cinnamon shows like the picture but after the lz shows : quiet splash -- _

$ inxi -GxxSM
System:
Host: leoboy-All-Series Kernel: 4.15.0-47-generic x86_64 bits: 64
compiler: gcc v: 7.3.0 Desktop: Cinnamon 4.0.10 wm: muffin dm: LightDM
Distro: Linux Mint 19.1 Tessa base: Ubuntu 18.04 bionic
Machine:
Type: Desktop System: ASUS product: All Series v: N/A
serial: <root required>
Mobo: ASUSTeK model: H81M-K v: Rev X.0x serial: <root required>
BIOS: American Megatrends v: 3602 date: 03/26/2018
Graphics:
Device-1: Intel Xeon E3-1200 v3/4th Gen Core Processor Integrated Graphics
vendor: ASUSTeK driver: N/A bus ID: 00:02.0 chip ID: 8086:0412
Display: x11 server: X.Org 1.19.6 driver: vesa resolution: 1920x1200~N/A
OpenGL: renderer: llvmpipe (LLVM 7.0 256 bits) v: 3.3 Mesa 18.2.8
compat-v: 3.1 direct render: Yes

re running in SR mode : again $ cinnamon settings
Cinnamon warning: Software rendering detected: llvmpipe (LLVM 7.0, 256 bits)
org.Cinnamon already exists on bus and --replace not specified

xorg.conf contains :
Section "Device"
Identifier "Configured Video Device"
Driver "vesa"
EndSection

Section "Monitor"
Identifier "Configured Monitor"
EndSection

Section "Screen"
Identifier "Default Screen"
Monitor "Configured Monitor"
Device "Configured Video Device"
EndSection

re /etc/X11/xorg.conf.d/. is not showing

re : If you pastebin your /boot/grub/grub.cfg file maybe someone can spot something gone wrong.
<iframe src="https://pastebin.com/embed_iframe/Y8qXwxjR" style="border:none;width:100%">
</Y8qXwxjR>

Last edited by jimmi morrison; 04-22-2019 at 12:30 PM. Reason: pastebin problem
 
Old 04-22-2019, 03:26 PM   #14
mrmazda
LQ Guru
 
Registered: Aug 2016
Location: SE USA
Distribution: openSUSE 24/7; Debian, Knoppix, Mageia, Fedora, others
Posts: 5,813
Blog Entries: 1

Rep: Reputation: 2068Reputation: 2068Reputation: 2068Reputation: 2068Reputation: 2068Reputation: 2068Reputation: 2068Reputation: 2068Reputation: 2068Reputation: 2068Reputation: 2068
Quote:
Originally Posted by jimmi morrison View Post
...Display: x11 server: X.Org 1.19.6 driver: vesa...
xorg.conf contains :
Code:
Section "Device"
	Identifier	"Configured Video Device"
	Driver		"vesa"
EndSection

Section "Monitor"
	Identifier	"Configured Monitor"
EndSection

Section "Screen"
	Identifier	"Default Screen"
	Monitor		"Configured Monitor"
	Device		"Configured Video Device"
EndSection
This file is blocking use of any competent DDX driver, forcing use of the crude and painfully slow VESA driver instead of any driver supporting Cinnamon. You must either remove the whole xorg.conf file, or remove the line 'Driver "vesa"' from it, preferably the whole file.
 
Old 04-22-2019, 04:35 PM   #15
jimmi morrison
LQ Newbie
 
Registered: Apr 2019
Location: england
Distribution: linux mint
Posts: 21

Original Poster
Rep: Reputation: 0
Quote:
Originally Posted by mrmazda View Post
This file is blocking use of any competent DDX driver, forcing use of the crude and painfully slow VESA driver instead of any driver supporting Cinnamon. You must either remove the whole xorg.conf file, or remove the line 'Driver "vesa"' from it, preferably the whole file.
ok thanks mrmazda removed said file : sudo rm /etc/X11/xorg.conf = & checked has gone rm: cannot remove '/etc/X11/xorg.conf': No such file or directory - i checked its gone restarted up to same old same old i.e $ cinnamon settings
Cinnamon warning: Software rendering detected: llvmpipe (LLVM 7.0, 256 bits)
org.Cinnamon already exists on bus and --replace not specified

otu thanks help

try this one?! : http://dpaste.com/2G4FNYD hurrah something worked !

also discovered mrmazda i appear to have a mix up re primary & non primary desktops have picture that explains why i see what i see : https://imgur.com/a/lACGUyL the righthand is what i see !

Last edited by jimmi morrison; 04-23-2019 at 10:43 AM. Reason: pb problem
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
The Running in Software Rendering Mode jspnow Linux - Newbie 30 08-01-2017 07:06 PM
Mint started in Virtual Box "Running in software rendering mode" celinehub13 Linux Mint 5 03-10-2015 04:39 PM
[SOLVED] Linux Mint 17 Qiana running in software rendering mode shakozzz Linux - Virtualization and Cloud 2 12-19-2014 08:58 PM
Running in software rendering mode.. Joandrobbie Linux - Newbie 6 05-19-2014 04:43 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Desktop

All times are GMT -5. The time now is 03:10 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration