Bug 25059 - system-config-display
Summary: system-config-display
Status: CLOSED WONTFIX
Alias: None
Product: New/proposed packages
Classification: Development
Component: Обычный репозиторий (show other bugs)
Version: не указана
Hardware: all Linux
: P3 normal
Assignee: Andrey Cherepanov
QA Contact: Andrey Cherepanov
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2011-02-09 18:04 MSK by Andrey Cherepanov
Modified: 2022-12-08 20:54 MSK (History)
3 users (show)

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Andrey Cherepanov 2011-02-09 18:04:36 MSK
http://fedoraproject.org/wiki/SystemConfig/display

system-config-display is a graphical application for configuring an X Window System X server display.

You can get the current source using the following commands:

$ git clone git://git.fedorahosted.org/git/system-config-display.git
Comment 1 Michael Shigorin 2011-02-10 17:25:58 MSK
У меня была как-то обвязка, которая сваливалась на vesa при нескольких отвалах в единицу времени -- дёргаю фрагмент пакетого скрипта:

startcount=0
failcount=0

while /bin/true ; do
        # this will try dual-head if two heads are found, 
        # and fall back to single-head; if X keeps crashing,
        # then bail out and let init temporarily disable
        # autologin
        startcount=$((startcount+1))
        /opt/bin/xinit-wrapper /opt/bin/kiosk.xinit || {
                # in case X crashes forever, it should be at least stoppable
                failcount=$((failcount+1))
                chvt 1
                echo >/dev/tty1
                echo "Graphics subsystem failed to start," >/dev/tty1
                echo "re-trying in 10 seconds... (attempt $failcount)" >/dev/tty1
                echo >/dev/tty1
                sleep 10
        }
        # falling back to vesa, reboot needed to 
        # re-autodetect proper driver from now on
        [ "$failcount" -gt 2 ] && {
                x11setupdrv -s vesa
                xinit /opt/bin/kiosk.xinit
        }
        [ "$failcount" -gt 3 ] && {
                chvt 1
                echo >/dev/tty1
                echo "Graphics subsystem seems broken" >/dev/tty1
                echo "Call Technical Support" >/dev/tty1
                echo >/dev/tty1
                sleep 60
                exit 1
        }
done

x11setupdrv -s было реализовано eostapets@:
http://git.altlinux.org/people/mike/packages/?p=x11setupdrv.git;a=commitdiff;h=9436333b6d951e93d7036181816e8257c06a027b
Comment 2 Alexander Burmatov 2022-12-08 20:54:14 MSK
The system-config-display tool has been replaced by XRandr configuration tools as found in both supported desktops: GNOME and KDE.