LinuxQuestions.org
Latest LQ Deal: Latest LQ Deals
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware > Slackware - Installation
User Name
Password
Slackware - Installation This forum is for the discussion of installation issues with Slackware.

Notices


Reply
  Search this Thread
Old 04-11-2020, 04:09 PM   #1
Derrant
LQ Newbie
 
Registered: Apr 2020
Posts: 2

Rep: Reputation: Disabled
Unhappy Graphic Issue probably correlate with xorg


Hi, I have installed slackware, the installation went well, however, when I try to generate an automatic xorg.conf configuration, I get

Code:
(++) Using config file: "/root/xorg.conf.new"
(==) Using system config directory "/usr/share/x11/xorg.conf.d"
Number of created screens does not match number of detected devices.
Configuration failed.
(EE) Server terminated with error (2). Closing log file.
with the generated file xorg.conf.new

When I try to start x with startx or xinit, I see the chosen desktop, but with huge letters on menu so much that only a little part is showed. There is no blackscreen, the cursor is correctly displayed... Thanks in advance
 
Old 04-11-2020, 06:00 PM   #2
teckk
LQ Guru
 
Registered: Oct 2004
Distribution: Arch
Posts: 5,138
Blog Entries: 6

Rep: Reputation: 1827Reputation: 1827Reputation: 1827Reputation: 1827Reputation: 1827Reputation: 1827Reputation: 1827Reputation: 1827Reputation: 1827Reputation: 1827Reputation: 1827
Your not starting X as root are you? Don't. Run X as user. You did make a limited user?
See:
man useradd
also the slack docs.

You also have not told a thing about your video hardware.
What is the output of
Code:
lspci -k
What does xrandr report?
See:
man xrandr

Does Slackware need a xorg.conf to work?
 
Old 04-12-2020, 05:07 AM   #3
Derrant
LQ Newbie
 
Registered: Apr 2020
Posts: 2

Original Poster
Rep: Reputation: Disabled
Thanks for answer, so, I just created an normal user, and starting X server with it generate same result than root user.
lspci -k generates this

Code:
rev f1)
        Kernel driver in use: pcieport
        Kernel modules: shpchp
00:1d.1 PCI bridge: Intel Corporation Sunrise Point-H PCI Express Root Port #10 (rev f1)
        Kernel driver in use: pcieport
        Kernel modules: shpchp
00:1f.0  ISA bridge: Intel Corporation Sunrise Point-H LPC Controller (rev 31)
        Subsystem: Gigabyte Technology Co., Ltd Sunrise Point-H LPC Controller
00:1f.2 Memory controller: Intel Corporation Sunrise Point-H PMC (rev 31)
        Subsystem: Gigabyte Technology Co., Ltd Sunrise Point-H PMC
00:1f.3 Audio device: Intel Corporation Sunrise Point-H HD Audio (rev 31)
        Subsystem: Gigabyte Technology Co., Ltd Sunrise Point-H HD Audio
        Kernel driver in use: snd_hda_intel
        Kernel modules: snd_hda_intel
00:1f.4 SMBus : Intel Corporation Sunrise Point-H SMBus (rev 31)
        Subsystem: Gigabyte Technology Co., Ltd Sunrise Point-H SMBus
        Kernel driver in use: i801_smbus
        Kernel modules: i2c_i801
01:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL8111/8168/8411 PCI Express Gigabyte Ethernet Controller (rev 0c)
        Subsystem: Gigabyte Technology Co., Ltd Motherboard
        Kernel driver in use: r8169
        Kernel modules: r8169
I have an intel Celeron g3930 with embedded gpu HD Graphics 610
 
Old 04-12-2020, 03:14 PM   #4
teckk
LQ Guru
 
Registered: Oct 2004
Distribution: Arch
Posts: 5,138
Blog Entries: 6

Rep: Reputation: 1827Reputation: 1827Reputation: 1827Reputation: 1827Reputation: 1827Reputation: 1827Reputation: 1827Reputation: 1827Reputation: 1827Reputation: 1827Reputation: 1827
Did you leave something off? That does not show what kernel module you have loaded for that graphics hardware.

Kernel modesetting may work best with that intel hardware, if it is a recent kernel. lsmod will show you what's loaded.

What does xrandr show you? See: man xrandr
Also
Code:
xdpyinfo | grep -B 2 resolution
See what kernel module you have loaded, if it is the right one,
resolution and dpi that you have. Go from there.

Maybe a Slacker can tell you more.

Have you read the docs?
https://docs.slackware.com/
https://docs.slackware.com/slackware:beginners_guide
 
Old 04-27-2020, 04:05 PM   #5
BrunoLafleur
Member
 
Registered: Apr 2020
Location: France
Distribution: Slackware
Posts: 399

Rep: Reputation: 364Reputation: 364Reputation: 364Reputation: 364
Hello,

Which version of Slackware ? With recent one there is no need of xorg.conf
I have only keyboard defined in :
> ls /etc/X11/xorg.conf.d
90-keyboard-layout-evdev.conf

> cat 90-keyboard-layout-evdev.conf
Section "InputClass"
Identifier "keyboard-all"
MatchIsKeyboard "on"
MatchDevicePath "/dev/input/event*"
Driver "evdev"
Option "XkbLayout" "fr"
#Option "XkbVariant" ""
Option "XkbOptions" "terminate:ctrl_alt_bksp"
EndSection

# READ THIS FOR CUSTOM KEYBOARD INFORMATION
#
# If you want to add a custom model/layout/variant to X, you will need to COPY
# this file to /etc/X11/xorg.conf.d/ and edit that copy. After editing it to
# suit, you will need to restart X.
#
# Here's an example of the lines from above:
#
# Section "InputClass"
# Identifier "keyboard-all"
# MatchIsKeyboard "on"
# MatchDevicePath "/dev/input/event*"
# Driver "evdev"
# Option "XkbLayout" "us"
# Option "XkbVariant" "intl"
# Option "XkbOptions" "compose:rwin,terminate:ctrl_alt_bksp"
# EndSection
#
# Many desktop environments, including KDE and Xfce, have their own methods to
# configure keyboard layouts and such if you'd like to use them.
#
# If you prefer to use the "old" way of configuring keyboards (without input
# device hotplugging), then you'll need to add the following lines to the
# ServerFlags section of /etc/X11/xorg.conf:
# Option "AllowEmptyInput" "false"
# Option "AutoAddDevices" "false"
# Option "AutoEnableDevices" "false"
# Alternatively, you can break this up into separate "stubs" in the xorg.conf.d/
# directory, but that's your call. Assuming you elect to keep a monolithic
# /etc/X11/xorg.conf file, you can now edit the Keyboard section as usual.

Which is a modified copy which french layout of the master in /usr/share/X11/xorg.conf.d
 
  


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
Correlate gconv-modules, charmaps and locales gnashley Programming 0 02-22-2012 09:07 AM
Correlate client and server connections DANTE prafulnama Linux - Networking 0 01-24-2011 03:56 PM
How to correlate ata<number> in dmesg to specific /dev/sd<letter>? bgoodr Linux - Hardware 17 11-28-2010 01:56 PM
Correlate output from multiple commands wendtbd Programming 4 07-18-2007 07:16 AM
How to correlate web site URL with IP addr. in weblizer? htm Linux - Software 3 05-02-2004 08:02 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware > Slackware - Installation

All times are GMT -5. The time now is 09:11 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