URL: https://www.opennet.ru/cgi-bin/openforum/vsluhboard.cgi
Форум: vsluhforumID1
Нить номер: 20103
[ Назад ]

Исходное сообщение
"Графический вход в систему"

Отправлено Dark_Krasnoff , 27-Авг-02 14:13 
Почему если при устновке выбираеш графический вход, X не запускается пока не залогинишся и не введеш startx? Причем, всё это происходит на 5-ом ранлевеле...
Если кто знает, как зделать вход в систему графическим - подскажите...
И не надо говогить про /etc/inittab, там написанно : id:5:initdefault: ...
Спасибо...  

Содержание

Сообщения в этом обсуждении
"RE: Графический вход в систему"
Отправлено Z0termaNN , 27-Авг-02 14:23 
>Почему если при устновке выбираеш графический вход, X не запускается пока не
>залогинишся и не введеш startx? Причем, всё это происходит на 5-ом
>ранлевеле...
>Если кто знает, как зделать вход в систему графическим - подскажите...
>И не надо говогить про /etc/inittab, там написанно : id:5:initdefault: ...
>Спасибо...


в том же inittab смотри что-то похожее на
x:5:respawn:/path/to/xdm --nodaemon


"Графический вход в систему"
Отправлено Dark_Krasnoff , 27-Авг-02 14:41 
Да, там следующее:
x:5:respawn:/etc/X11/prefdm -nodaemon

А вот текст скрипта /etc/X11/prefdm

#!/bin/sh

PATH=/sbin:/usr/sbin:/bin:/usr/bin:/usr/X11R6/bin

# We need to source this so that the login screens get translated
. /etc/profile.d/lang.sh

# Run preferred X display manager

# Try autologin first, if wanted...
if [ -f /etc/sysconfig/autologin -a -x /usr/sbin/autologin ]; then
    if /usr/sbin/autologin; then
        exit 0
    fi
    # If autologin fails (bad permissions, etc.), we get here -
    # time to start a real display manager.
fi

preferred=
if [ -f /etc/sysconfig/desktop ]; then
    source /etc/sysconfig/desktop >/dev/null 2>&1
    [ -n "$DISPLAYMANAGER" ] && DESKTOP=$DISPLAYMANAGER
    if [ "$DESKTOP" = GNOME ]; then
        preferred=gdm
    elif [ "$DESKTOP" = "KDE" -o "$DESKTOP" = "KDE1" -o "$DESKTOP" = "KDE2" ]; then
        preferred=kdm
    fi
fi

if [ -z "$preferred" ]; then
    if which gdm >/dev/null 2>&1; then
        preferred=gdm
    elif which kdm >/dev/null 2>&1; then
        preferred=kdm
    elif which xdm >/dev/null 2>&1; then
        preferred=xdm
    fi
fi

if [ -n "$preferred" ] && which $preferred >/dev/null 2>&1; then
    exec `which $preferred` $* >/dev/null 2>&1
fi

if which gdm >/dev/null 2>&1; then
    exec `which gdm` $* >/dev/null 2>&1
elif which kdm >/dev/null 2>&1; then
    exec `which kdm` $* >/dev/null 2>&1
elif which xdm >/dev/null 2>&1; then
    exec `which xdm` $* >/dev/null 2>&1
fi

# catch all exit error
exit 1

...может разберешся?
Спасибо...


"RE: Графический вход в систему"
Отправлено cir , 28-Авг-02 07:13 

>...может разберешся?
>Спасибо...

А можно зирнуть на логи (messages и иксовый)?


"Графический вход в систему"
Отправлено Dark_Krasnoff , 28-Авг-02 11:46 
Укажите полные имена файлов, текст которых вам нужен. Я их с удовольствием предоставлю...
Спасибо за участиие...

"RE: Графический вход в систему"
Отправлено Dark_Krasnoff , 28-Авг-02 15:34 
Вот /var/log/messages:

Aug 28 14:58:01 pavel syslogd 1.4.1: restart.
Авг 28 14:58:01 pavel syslog: запуск syslogd succeeded
Авг 28 14:58:01 pavel syslog: запуск klogd succeeded
Aug 28 14:58:01 pavel kernel: klogd 1.4.1, log source = /proc/kmsg started.
Aug 28 14:58:01 pavel kernel: Linux version 2.4.18-5asp (leon@pylesos.asp-linux.com.ua) (gcc version 2.96 20000731 (ASPLinux 7.3 2.96-110)) #1 Sat Jul 6 20:16:12 EEST 2002
Aug 28 14:58:01 pavel kernel: BIOS-provided physical RAM map:
Aug 28 14:58:01 pavel kernel:  BIOS-e820: 0000000000000000 - 000000000009fc00 (usable)
Aug 28 14:58:01 pavel kernel:  BIOS-e820: 000000000009fc00 - 00000000000a0000 (reserved)
Aug 28 14:58:01 pavel kernel:  BIOS-e820: 00000000000f0000 - 0000000000100000 (reserved)
Aug 28 14:58:01 pavel kernel:  BIOS-e820: 0000000000100000 - 000000000fff0000 (usable)
Aug 28 14:58:01 pavel kernel:  BIOS-e820: 000000000fff0000 - 000000000fff3000 (ACPI NVS)
Aug 28 14:58:01 pavel kernel:  BIOS-e820: 000000000fff3000 - 0000000010000000 (ACPI data)
Aug 28 14:58:01 pavel kernel:  BIOS-e820: 00000000ffff0000 - 0000000100000000 (reserved)
Aug 28 14:58:01 pavel kernel: 0MB HIGHMEM available.
Aug 28 14:58:01 pavel kernel: 255MB LOWMEM available.
Aug 28 14:58:01 pavel kernel: On node 0 totalpages: 65520
Aug 28 14:58:01 pavel kernel: zone(0): 4096 pages.
Aug 28 14:58:01 pavel kernel: zone(1): 61424 pages.
Aug 28 14:58:01 pavel kernel: zone(2): 0 pages.
Aug 28 14:58:01 pavel kernel: Kernel command line: root=/dev/hda7 ro
Aug 28 14:58:01 pavel kernel: Initializing CPU#0
Aug 28 14:58:01 pavel kernel: Detected 599.802 MHz processor.
Aug 28 14:58:01 pavel kernel: Console: colour VGA+ 80x25
Aug 28 14:58:01 pavel kernel: Calibrating delay loop... 1196.03 BogoMIPS
Aug 28 14:58:01 pavel kernel: Memory: 255568k/262080k available (1124k kernel code, 6124k reserved, 790k data, 252k init, 0k highmem)
Aug 28 14:58:01 pavel kernel: Dentry cache hash table entries: 32768 (order: 6, 262144 bytes)
Aug 28 14:58:01 pavel kernel: Inode cache hash table entries: 16384 (order: 5, 131072 bytes)
Aug 28 14:58:01 pavel kernel: Mount cache hash table entries: 4096 (order: 3, 32768 bytes)
Aug 28 14:58:01 pavel kernel: Buffer cache hash table entries: 16384 (order: 4, 65536 bytes)
Aug 28 14:58:01 pavel kernel: Page-cache hash table entries: 65536 (order: 6, 262144 bytes)
Aug 28 14:58:01 pavel kernel: CPU: L1 I cache: 16K, L1 D cache: 16K
Aug 28 14:58:01 pavel kernel: CPU: L2 cache: 256K
Aug 28 14:58:01 pavel kernel: CPU serial number disabled.
Aug 28 14:58:01 pavel kernel: Intel machine check architecture supported.
Aug 28 14:58:01 pavel kernel: Intel machine check reporting enabled on CPU#0.
Aug 28 14:58:01 pavel kernel: CPU: Intel Pentium III (Coppermine) stepping 03
Aug 28 14:58:01 pavel kernel: Enabling fast FPU save and restore... done.
Aug 28 14:58:01 pavel kernel: Enabling unmasked SIMD FPU exception support... done.
Aug 28 14:58:01 pavel kernel: Checking 'hlt' instruction... OK.
Aug 28 14:58:01 pavel kernel: POSIX conformance testing by UNIFIX
Aug 28 14:58:01 pavel kernel: mtrr: v1.40 (20010327) Richard Gooch (rgooch@atnf.csiro.au)
Aug 28 14:58:01 pavel kernel: mtrr: detected mtrr type: Intel
Aug 28 14:58:01 pavel kernel: PCI: PCI BIOS revision 2.10 entry at 0xfb310, last bus=1
Aug 28 14:58:01 pavel kernel: PCI: Using configuration type 1
Aug 28 14:58:01 pavel kernel: PCI: Probing PCI hardware
Aug 28 14:58:01 pavel kernel: Unknown bridge resource 2: assuming transparent
Aug 28 14:58:01 pavel kernel: PCI: Using IRQ router PIIX [8086/7110] at 00:07.0
Aug 28 14:58:01 pavel kernel: Limiting direct PCI/PCI transfers.
Aug 28 14:58:01 pavel kernel: isapnp: Scanning for PnP cards...
Aug 28 14:58:01 pavel kernel: isapnp: No Plug & Play device found
Aug 28 14:58:01 pavel kernel: Linux NET4.0 for Linux 2.4
Aug 28 14:58:01 pavel kernel: Based upon Swansea University Computer Society NET3.039
Авг 28 14:58:01 pavel portmap: запуск portmap succeeded
Aug 28 14:58:01 pavel kernel: Initializing RT netlink socket
Aug 28 14:58:01 pavel kernel: apm: BIOS version 1.2 Flags 0x07 (Driver version 1.16)
Aug 28 14:58:01 pavel kernel: Starting kswapd
Aug 28 14:58:01 pavel kernel: VFS: Diskquotas version dquot_6.5.0 initialized
Aug 28 14:58:01 pavel kernel: pty: 2048 Unix98 ptys configured
Aug 28 14:58:01 pavel kernel: Serial driver version 5.05c (2001-07-08) with MANY_PORTS MULTIPORT SHARE_IRQ SERIAL_PCI ISAPNP enabled
Aug 28 14:58:01 pavel kernel: ttyS00 at 0x03f8 (irq = 4) is a 16550A
Aug 28 14:58:01 pavel kernel: ttyS01 at 0x02f8 (irq = 3) is a 16550A
Aug 28 14:58:01 pavel kernel: Real Time Clock Driver v1.10e
Aug 28 14:58:01 pavel kernel: block: 496 slots per queue, batch=124
Aug 28 14:58:01 pavel kernel: Uniform Multi-Platform E-IDE driver Revision: 6.31
Aug 28 14:58:01 pavel kernel: ide: Assuming 33MHz system bus speed for PIO modes; override with idebus=xx
Aug 28 14:58:01 pavel kernel: PIIX4: IDE controller on PCI bus 00 dev 39
Aug 28 14:58:01 pavel kernel: PIIX4: chipset revision 1
Aug 28 14:58:01 pavel kernel: PIIX4: not 100%% native mode: will probe irqs later
Aug 28 14:58:01 pavel kernel:     ide0: BM-DMA at 0xf000-0xf007, BIOS settings: hda:DMA, hdb:DMA
Aug 28 14:58:01 pavel kernel:     ide1: BM-DMA at 0xf008-0xf00f, BIOS settings: hdc:DMA, hdd:DMA
Aug 28 14:58:01 pavel kernel: PDC20262: IDE controller on PCI bus 00 dev 60
Aug 28 14:58:01 pavel kernel: PCI: Found IRQ 9 for device 00:0c.0
Aug 28 14:58:01 pavel kernel: PDC20262: chipset revision 1
Aug 28 14:58:01 pavel kernel: PDC20262: not 100%% native mode: will probe irqs later
Aug 28 14:58:01 pavel kernel: PDC20262: ROM enabled at 0xe4000000
Aug 28 14:58:01 pavel kernel: PDC20262: (U)DMA Burst Bit ENABLED Primary PCI Mode Secondary PCI Mode.
Aug 28 14:58:01 pavel kernel:     ide2: BM-DMA at 0xe400-0xe407, BIOS settings: hde:pio, hdf:pio
Aug 28 14:58:01 pavel kernel:     ide3: BM-DMA at 0xe408-0xe40f, BIOS settings: hdg:pio, hdh:pio
Aug 28 14:58:01 pavel kernel: hda: FUJITSU MPF3204AT, ATA DISK drive
Aug 28 14:58:01 pavel kernel: hdd: MATSHITA CR-593, ATAPI CD/DVD-ROM drive
Aug 28 14:58:01 pavel kernel: ide0 at 0x1f0-0x1f7,0x3f6 on irq 14
Aug 28 14:58:01 pavel kernel: ide1 at 0x170-0x177,0x376 on irq 15
Aug 28 14:58:01 pavel kernel: blk: queue c035d8a4, I/O limit 4095Mb (mask 0xffffffff)
Aug 28 14:58:01 pavel kernel: hda: 40031712 sectors (20496 MB) w/512KiB Cache, CHS=2491/255/63, UDMA(33)
Aug 28 14:58:01 pavel kernel: ide-floppy driver 0.99.newide
Aug 28 14:58:01 pavel kernel: Partition check:
Aug 28 14:58:01 pavel kernel:  hda: hda1 hda2 < hda5 hda6 hda7 hda8 >
Aug 28 14:58:01 pavel kernel: Floppy drive(s): fd0 is 1.44M
Aug 28 14:58:01 pavel kernel: FDC 0 is a post-1991 82077
Aug 28 14:58:01 pavel kernel: RAMDISK driver initialized: 16 RAM disks of 4096K size 1024 blocksize
Aug 28 14:58:01 pavel kernel: ide-floppy driver 0.99.newide
Aug 28 14:58:01 pavel kernel: md: md driver 0.90.0 MAX_MD_DEVS=256, MD_SB_DISKS=27
Aug 28 14:58:01 pavel kernel: md: Autodetecting RAID arrays.
Aug 28 14:58:01 pavel kernel: md: autorun ...
Aug 28 14:58:01 pavel kernel: md: ... autorun DONE.
Aug 28 14:58:01 pavel kernel: NET4: Linux TCP/IP 1.0 for NET4.0
Aug 28 14:58:01 pavel kernel: IP Protocols: ICMP, UDP, TCP, IGMP
Aug 28 14:58:01 pavel kernel: IP: routing cache hash table of 2048 buckets, 16Kbytes
Aug 28 14:58:01 pavel kernel: TCP: Hash tables configured (established 16384 bind 16384)
Aug 28 14:58:01 pavel kernel: Linux IP multicast router 0.06 plus PIM-SM
Aug 28 14:58:01 pavel kernel: NET4: Unix domain sockets 1.0/SMP for Linux NET4.0.
Aug 28 14:58:01 pavel kernel: VFS: Mounted root (ext2 filesystem) readonly.
Aug 28 14:58:01 pavel kernel: Freeing unused kernel memory: 252k freed
Aug 28 14:58:01 pavel kernel: Adding Swap: 1028120k swap-space (priority -1)
Aug 28 14:58:01 pavel kernel: usb.c: registered new driver usbdevfs
Aug 28 14:58:01 pavel kernel: usb.c: registered new driver hub
Aug 28 14:58:01 pavel kernel: usb-uhci.c: $Revision: 1.275 $ time 20:37:41 Jul  6 2002
Aug 28 14:58:01 pavel kernel: usb-uhci.c: High bandwidth mode enabled
Aug 28 14:58:01 pavel kernel: PCI: Found IRQ 10 for device 00:07.2
Aug 28 14:58:01 pavel kernel: usb-uhci.c: USB UHCI at I/O 0xd000, IRQ 10
Aug 28 14:58:01 pavel kernel: usb-uhci.c: Detected 2 ports
Aug 28 14:58:01 pavel kernel: usb.c: new USB bus registered, assigned bus number 1
Aug 28 14:58:01 pavel kernel: hub.c: USB hub found
Aug 28 14:58:01 pavel kernel: hub.c: 2 ports detected
Aug 28 14:58:01 pavel kernel: usb-uhci.c: v1.275:USB Universal Host Controller Interface driver
Aug 28 14:58:01 pavel kernel: ide-floppy driver 0.99.newide
Aug 28 14:58:01 pavel kernel: hdd: ATAPI 40X CD-ROM drive, 128kB Cache, UDMA(33)
Aug 28 14:58:01 pavel kernel: Uniform CD-ROM driver Revision: 3.12
Aug 28 14:58:01 pavel kernel: hdd: DMA disabled
Aug 28 14:58:01 pavel kernel: parport0: PC-style at 0x378 [PCSPP]
Aug 28 14:58:01 pavel kernel: Linux Tulip driver version 0.9.15-pre10 (Mar 8, 2002)
Авг 28 14:58:01 pavel nfslock: запуск rpc.statd succeeded
Aug 28 14:58:01 pavel kernel: PCI: Found IRQ 5 for device 00:14.0
Aug 28 14:58:01 pavel kernel: tulip0:  EEPROM default media type Autosense.
Aug 28 14:58:01 pavel kernel: tulip0:  Index #0 - Media MII (#11) described by a 21142 MII PHY (3) block.
Aug 28 14:58:01 pavel kernel: tulip0:  MII transceiver #1 config 3100 status 782d advertising 01e1.
Aug 28 14:58:01 pavel kernel: eth0: Digital DS21143 Tulip rev 65 at 0xd08d5000, 00:80:48:B3:32:74, IRQ 5.
Aug 28 14:58:01 pavel rpc.statd[624]: Version 0.3.3 Starting
Aug 28 14:58:01 pavel rpc.statd[624]: gethostbyname error for pavel
Авг 28 14:58:02 pavel keytable: Loading keymap:  succeeded
Авг 28 14:58:02 pavel keytable: Загружается системный шрифт:  succeeded
Авг 28 14:58:02 pavel random: Инициализируется генератор произвольных чисел:  succeeded
Авг 28 14:58:02 pavel rc: Starting pcmcia:  succeeded
Авг 28 14:58:02 pavel netfs: Монтируются другие файловые системы:  succeeded
Авг 28 14:58:02 pavel apmd: запуск apmd succeeded
Aug 28 14:58:02 pavel apmd[745]: Version 3.0.2 (APM BIOS 1.2, Linux driver 1.16)
Авг 28 14:58:03 pavel autofs: automount startup succeeded
Aug 28 14:57:42 pavel rc.sysinit: Mounting proc filesystem:  succeeded
Aug 28 14:57:42 pavel sysctl: net.ipv4.ip_forward = 0
Aug 28 14:57:42 pavel sysctl: net.ipv4.conf.default.rp_filter = 1
Aug 28 14:57:42 pavel sysctl: kernel.sysrq = 1
Aug 28 14:57:42 pavel sysctl: kernel.core_uses_pid = 1
Aug 28 14:57:42 pavel rc.sysinit: Configuring kernel parameters:  succeeded
Aug 28 14:57:42 pavel rc.sysinit: Setting default font (UniCyr_8x16):  succeeded
Aug 28 14:57:42 pavel date: Срд Авг 28 14:57:36 MSD 2002
Aug 28 14:57:42 pavel rc.sysinit: Setting clock  (localtime): Срд Авг 28 14:57:36 MSD 2002 succeeded
Aug 28 14:57:42 pavel rc.sysinit: Activating swap partitions:  succeeded
Aug 28 14:57:42 pavel rc.sysinit: Setting hostname localhost:  succeeded
Aug 28 14:57:42 pavel rc.sysinit: Mounting USB filesystem:  succeeded
Aug 28 14:57:42 pavel rc.sysinit: Initializing USB controller (usb-uhci):  succeeded
Aug 28 14:57:42 pavel fsck: Dark_System: clean, 111027/768544 files, 434615/1536207 blocks
Aug 28 14:57:42 pavel rc.sysinit: Checking root filesystem succeeded
Aug 28 14:57:42 pavel rc.sysinit: Remounting root filesystem in read-write mode:  succeeded
Авг 28 14:57:44 pavel rc.sysinit: Finding module dependencies:  succeeded
Авг 28 14:57:44 pavel rc.sysinit: Checking filesystems succeeded
Авг 28 14:57:44 pavel rc.sysinit: Mounting local filesystems:  succeeded
Авг 28 14:57:44 pavel rc.sysinit: Enabling local filesystem quotas:  succeeded
Авг 28 14:57:45 pavel rc.sysinit: Enabling swap space:  succeeded
Aug 28 14:57:47 pavel init: Entering runlevel: 5
Aug 28 14:58:03 pavel kernel: eth0: Setting full-duplex based on MII#1 link partner capability of 45e1.
Авг 28 14:57:48 pavel kudzu: Updating /etc/fstab succeeded
Авг 28 14:57:59 pavel kudzu:  succeeded
Авг 28 14:57:59 pavel sysctl: net.ipv4.ip_forward = 0
Авг 28 14:57:59 pavel sysctl: net.ipv4.conf.default.rp_filter = 1
Авг 28 14:57:59 pavel sysctl: kernel.sysrq = 1
Авг 28 14:57:59 pavel sysctl: kernel.core_uses_pid = 1
Авг 28 14:57:59 pavel network: Устанавливаются параметры сети:  succeeded
Авг 28 14:58:00 pavel network: Активируется интерфейс loopback:  succeeded
Авг 28 14:58:00 pavel ifup: Определяется информация IP для eth0...
Авг 28 14:58:00 pavel ifup:  готово.
Авг 28 14:58:00 pavel network: Активируется интерфейс eth0:  succeeded
Aug 28 14:58:03 pavel apmd[745]: Charge: * * * (-1% unknown)
Aug 28 14:58:05 pavel xinetd[812]: xinetd Version 2.3.5 started with libwrap options compiled in.
Aug 28 14:58:05 pavel xinetd[812]: Started working: 1 available service
Aug 28 14:58:06 pavel xinetd: запуск xinetd succeeded
Авг 28 14:58:09 pavel sendmail: запуск sendmail succeeded
Авг 28 14:58:09 pavel gpm: запуск gpm succeeded
Авг 28 14:58:10 pavel crond: запуск crond succeeded
Aug 28 14:58:14 pavel xfs: listening on port 7100
Авг 28 14:58:14 pavel xfs: запуск xfs succeeded
Авг 28 14:58:14 pavel anacron: запуск anacron succeeded
Aug 28 14:58:14 pavel xfs: ignoring font path element /usr/share/fonts/KOI8-R/100dpi:unscaled (unreadable)
Aug 28 14:58:14 pavel xfs: ignoring font path element /usr/share/fonts/KOI8-R/100dpi (unreadable)
Авг 28 14:58:14 pavel atd: запуск atd succeeded
Авг 28 14:58:14 pavel wine: Registering binary handler for Windows applications
Авг 28 14:58:14 pavel rc: Starting wine:  succeeded
Aug 28 14:58:15 pavel xfs: ignoring font path element /usr/X11R6/lib/X11/fonts/CID (unreadable)
Aug 28 14:58:15 pavel xfs: ignoring font path element /usr/X11R6/lib/X11/fonts/local (unreadable)
Авг 28 14:58:16 pavel gdm[1178]: gdm_auth_secure_display: Error getting hentry for pavel
Авг 28 14:58:32 pavel gdm[1179]: gdm_auth_secure_display: Error getting hentry for pavel
Авг 28 14:58:48 pavel gdm[1180]: gdm_auth_secure_display: Error getting hentry for pavel
Aug 28 14:59:01 pavel login(pam_unix)[1164]: session opened for user root by LOGIN(uid=0)
Aug 28 14:59:01 pavel  -- root[1164]: ROOT LOGIN ON tty1
Авг 28 14:59:04 pavel gdm[1227]: gdm_auth_secure_display: Error getting hentry for pavel
Авг 28 14:59:20 pavel gdm[1233]: gdm_auth_secure_display: Error getting hentry for pavel
Aug 28 14:59:21 pavel modprobe: modprobe: Can't locate module char-major-81
Авг 28 14:59:27 pavel gdm[1170]: Не удалось запустить X-сервер несколько раз за короткий промежуток времени; отключаем дисплей :0


"RE: Графический вход в систему"
Отправлено Dark_Krasnoff , 28-Авг-02 15:42 
А вот /var/log/XFree86.0.log

XFree86 Version 4.2.0 (Custom Build: 4.2.0-8.2asp) / X Window System
(protocol Version 11, revision 0, vendor release 6600)
Release Date: 23 January 2002
    If the server is older than 6-12 months, or if your card is
    newer than the above date, look for a newer version before
    reporting problems.  (See http://www.XFree86.Org/)
Build Operating System: Linux 2.4.9-31smp i686 [ELF]
Build Host: pylesos.asp-linux.com.ua

Module Loader present
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/XFree86.0.log", Time: Wed Aug 28 14:59:19 2002
(==) Using config file: "/etc/X11/XF86Config-4"
(==) ServerLayout "XFree86 Configured"
(**) |-->Screen "Screen0" (0)
(**) |   |-->Monitor "Monitor"
(**) |   |-->Device "ATI|215CT [Mach64 CT]"
(==) |-->Input Device "Implicit Core Pointer"
(==) |-->Input Device "Implicit Core Keyboard"
(**) Option "Protocol" "Standard"
(**) Option "XkbRules" "xfree86"
(**) XKB: rules: "xfree86"
(**) Option "XkbModel" "pc101"
(**) XKB: model: "pc101"
(**) Option "XkbLayout" "ru"
(**) XKB: layout: "ru"
(**) Option "XkbOptions" "grp:alt_shift_toggle,grp_led:scroll"
(**) XKB: options: "grp:alt_shift_toggle,grp_led:scroll"
(==) Keyboard: CustomKeycode disabled
(**) FontPath set to "unix/:7100"
(**) RgbPath set to "/usr/X11R6/lib/X11/rgb"
(==) ModulePath set to "/usr/X11R6/lib/modules"
(**) Option "AllowMouseOpenFail"
(--) using VT number 7

(II) Open APM successful
(II) Module ABI versions:
    XFree86 ANSI C Emulation: 0.1
    XFree86 Video Driver: 0.5
    XFree86 XInput driver : 0.3
    XFree86 Server Extension : 0.1
    XFree86 Font Renderer : 0.3
(II) Loader running on linux
(II) LoadModule: "bitmap"
(II) Loading /usr/X11R6/lib/modules/fonts/libbitmap.a
(II) Module bitmap: vendor="The XFree86 Project"
    compiled for 4.2.0, module version = 1.0.0
    Module class: XFree86 Font Renderer
    ABI class: XFree86 Font Renderer, version 0.3
(II) Loading font Bitmap
(II) LoadModule: "pcidata"
(II) Loading /usr/X11R6/lib/modules/libpcidata.a
(II) Module pcidata: vendor="The XFree86 Project"
    compiled for 4.2.0, module version = 0.1.0
    ABI class: XFree86 Video Driver, version 0.5
(II) PCI: Probing config type using method 1
(II) PCI: Config type is 1
(II) PCI: stages = 0x03, oldVal1 = 0x80000058, mode1Res1 = 0x80000000
(II) PCI: PCI scan (all values are in hex)
(II) PCI: 00:00:0: chip 8086,7190 card 0000,0000 rev 03 class 06,00,00 hdr 00
(II) PCI: 00:01:0: chip 8086,7191 card 0000,0000 rev 03 class 06,04,00 hdr 01
(II) PCI: 00:07:0: chip 8086,7110 card 0000,0000 rev 02 class 06,01,00 hdr 80
(II) PCI: 00:07:1: chip 8086,7111 card 0000,0000 rev 01 class 01,01,80 hdr 00
(II) PCI: 00:07:2: chip 8086,7112 card 0000,0000 rev 01 class 0c,03,00 hdr 00
(II) PCI: 00:07:3: chip 8086,7113 card 0000,0000 rev 02 class 06,80,00 hdr 00
(II) PCI: 00:0c:0: chip 105a,4d38 card 105a,4d33 rev 01 class 01,80,00 hdr 00
(II) PCI: 00:14:0: chip 1011,0019 card 11f6,0313 rev 41 class 02,00,00 hdr 00
(II) PCI: 01:00:0: chip 1002,4c42 card 1002,0044 rev dc class 03,00,00 hdr 00
(II) PCI: End of PCI scan
(II) LoadModule: "scanpci"
(II) Loading /usr/X11R6/lib/modules/libscanpci.a
(II) Module scanpci: vendor="The XFree86 Project"
    compiled for 4.2.0, module version = 0.1.0
    ABI class: XFree86 Video Driver, version 0.5
(II) UnloadModule: "scanpci"
(II) Unloading /usr/X11R6/lib/modules/libscanpci.a
(II) Host-to-PCI bridge:
(II) PCI-to-ISA bridge:
(II) PCI-to-PCI bridge:
(II) Bus 0: bridge is at (0:0:0), (-1,0,0), BCTRL: 0x08 (VGA_EN is set)
(II) Bus 0 I/O range:
    [0] -1    0x00000000 - 0x0000ffff (0x10000) IX
(II) Bus 0 non-prefetchable memory range:
    [0] -1    0x00000000 - 0xffffffff (0x0) MX
(II) Bus 0 prefetchable memory range:
    [0] -1    0x00000000 - 0xffffffff (0x0) MX
(II) Bus 1: bridge is at (0:1:0), (0,1,1), BCTRL: 0x88 (VGA_EN is set)
(II) Bus 1 I/O range:
    [0] -1    0x0000c000 - 0x0000cfff (0x1000) IX
(II) Bus 1 non-prefetchable memory range:
    [0] -1    0xe0000000 - 0xe3ffffff (0x4000000) MX
(II) Bus 1 prefetchable memory range:
(II) Bus -1: bridge is at (0:7:0), (0,-1,0), BCTRL: 0x08 (VGA_EN is set)
(II) Bus -1 I/O range:
(II) Bus -1 non-prefetchable memory range:
(II) Bus -1 prefetchable memory range:
(--) PCI:*(1:0:0) ATI Mach64 LB rev 220, Mem @ 0xe0000000/24, 0xe2000000/12, I/O @ 0xc000/8
(II) Addressable bus resource ranges are
    [0] -1    0x00000000 - 0xffffffff (0x0) MX
    [1] -1    0x00000000 - 0x0000ffff (0x10000) IX
(II) OS-reported resource ranges:
    [0] -1    0xffe00000 - 0xffffffff (0x200000) MX(B)
    [1] -1    0x00100000 - 0x3fffffff (0x3ff00000) MXE(B)
    [2] -1    0x000f0000 - 0x000fffff (0x10000) MX
    [3] -1    0x000c0000 - 0x000effff (0x30000) MX
    [4] -1    0x00000000 - 0x0009ffff (0xa0000) MX
    [5] -1    0x0000ffff - 0x0000ffff (0x1) IX
    [6] -1    0x00000000 - 0x000000ff (0x100) IX
(II) Active PCI resource ranges:
    [0] -1    0xe6420000 - 0xe64203ff (0x400) MX
    [1] -1    0xe4000000 - 0xe400ffff (0x10000) MX
    [2] -1    0xe6400000 - 0xe641ffff (0x20000) MX
    [3] -1    0xe6000000 - 0xe63fffff (0x400000) MX
    [4] -1    0xe2000000 - 0xe2000fff (0x1000) MX(B)
    [5] -1    0xe0000000 - 0xe0ffffff (0x1000000) MX(B)
    [6] -1    0x0000e800 - 0x0000e87f (0x80) IX
    [7] -1    0x0000e400 - 0x0000e43f (0x40) IX
    [8] -1    0x0000e000 - 0x0000e003 (0x4) IX
    [9] -1    0x0000dc00 - 0x0000dc07 (0x8) IX
    [10] -1    0x0000d800 - 0x0000d803 (0x4) IX
    [11] -1    0x0000d400 - 0x0000d407 (0x8) IX
    [12] -1    0x0000d000 - 0x0000d01f (0x20) IX
    [13] -1    0x0000f000 - 0x0000f00f (0x10) IX
    [14] -1    0x0000c000 - 0x0000c0ff (0x100) IX(B)
(II) Active PCI resource ranges after removing overlaps:
    [0] -1    0xe6420000 - 0xe64203ff (0x400) MX
    [1] -1    0xe4000000 - 0xe400ffff (0x10000) MX
    [2] -1    0xe6400000 - 0xe641ffff (0x20000) MX
    [3] -1    0xe6000000 - 0xe63fffff (0x400000) MX
    [4] -1    0xe2000000 - 0xe2000fff (0x1000) MX(B)
    [5] -1    0xe0000000 - 0xe0ffffff (0x1000000) MX(B)
    [6] -1    0x0000e800 - 0x0000e87f (0x80) IX
    [7] -1    0x0000e400 - 0x0000e43f (0x40) IX
    [8] -1    0x0000e000 - 0x0000e003 (0x4) IX
    [9] -1    0x0000dc00 - 0x0000dc07 (0x8) IX
    [10] -1    0x0000d800 - 0x0000d803 (0x4) IX
    [11] -1    0x0000d400 - 0x0000d407 (0x8) IX
    [12] -1    0x0000d000 - 0x0000d01f (0x20) IX
    [13] -1    0x0000f000 - 0x0000f00f (0x10) IX
    [14] -1    0x0000c000 - 0x0000c0ff (0x100) IX(B)
(II) OS-reported resource ranges after removing overlaps with PCI:
    [0] -1    0xffe00000 - 0xffffffff (0x200000) MX(B)
    [1] -1    0x00100000 - 0x3fffffff (0x3ff00000) MXE(B)
    [2] -1    0x000f0000 - 0x000fffff (0x10000) MX
    [3] -1    0x000c0000 - 0x000effff (0x30000) MX
    [4] -1    0x00000000 - 0x0009ffff (0xa0000) MX
    [5] -1    0x0000ffff - 0x0000ffff (0x1) IX
    [6] -1    0x00000000 - 0x000000ff (0x100) IX
(II) All system resource ranges:
    [0] -1    0xffe00000 - 0xffffffff (0x200000) MX(B)
    [1] -1    0x00100000 - 0x3fffffff (0x3ff00000) MXE(B)
    [2] -1    0x000f0000 - 0x000fffff (0x10000) MX
    [3] -1    0x000c0000 - 0x000effff (0x30000) MX
    [4] -1    0x00000000 - 0x0009ffff (0xa0000) MX
    [5] -1    0xe6420000 - 0xe64203ff (0x400) MX
    [6] -1    0xe4000000 - 0xe400ffff (0x10000) MX
    [7] -1    0xe6400000 - 0xe641ffff (0x20000) MX
    [8] -1    0xe6000000 - 0xe63fffff (0x400000) MX
    [9] -1    0xe2000000 - 0xe2000fff (0x1000) MX(B)
    [10] -1    0xe0000000 - 0xe0ffffff (0x1000000) MX(B)
    [11] -1    0x0000ffff - 0x0000ffff (0x1) IX
    [12] -1    0x00000000 - 0x000000ff (0x100) IX
    [13] -1    0x0000e800 - 0x0000e87f (0x80) IX
    [14] -1    0x0000e400 - 0x0000e43f (0x40) IX
    [15] -1    0x0000e000 - 0x0000e003 (0x4) IX
    [16] -1    0x0000dc00 - 0x0000dc07 (0x8) IX
    [17] -1    0x0000d800 - 0x0000d803 (0x4) IX
    [18] -1    0x0000d400 - 0x0000d407 (0x8) IX
    [19] -1    0x0000d000 - 0x0000d01f (0x20) IX
    [20] -1    0x0000f000 - 0x0000f00f (0x10) IX
    [21] -1    0x0000c000 - 0x0000c0ff (0x100) IX(B)
(II) LoadModule: "GLcore"
(II) Loading /usr/X11R6/lib/modules/extensions/libGLcore.a
(II) Module GLcore: vendor="The XFree86 Project"
    compiled for 4.2.0, module version = 1.0.0
    ABI class: XFree86 Server Extension, version 0.1
(II) LoadModule: "dbe"
(II) Loading /usr/X11R6/lib/modules/extensions/libdbe.a
(II) Module dbe: vendor="The XFree86 Project"
    compiled for 4.2.0, module version = 1.0.0
    Module class: XFree86 Server Extension
    ABI class: XFree86 Server Extension, version 0.1
(II) Loading extension DOUBLE-BUFFER
(II) LoadModule: "dri"
(II) Loading /usr/X11R6/lib/modules/extensions/libdri.a
(II) Module dri: vendor="The XFree86 Project"
    compiled for 4.2.0, module version = 1.0.0
    ABI class: XFree86 Server Extension, version 0.1
(II) Loading sub module "drm"
(II) LoadModule: "drm"
(II) Loading /usr/X11R6/lib/modules/linux/libdrm.a
(II) Module drm: vendor="The XFree86 Project"
    compiled for 4.2.0, module version = 1.0.0
    ABI class: XFree86 Server Extension, version 0.1
(II) Loading extension XFree86-DRI
(II) LoadModule: "extmod"
(II) Loading /usr/X11R6/lib/modules/extensions/libextmod.a
(II) Module extmod: vendor="The XFree86 Project"
    compiled for 4.2.0, module version = 1.0.0
    Module class: XFree86 Server Extension
    ABI class: XFree86 Server Extension, version 0.1
(II) Loading extension SHAPE
(II) Loading extension MIT-SUNDRY-NONSTANDARD
(II) Loading extension BIG-REQUESTS
(II) Loading extension SYNC
(II) Loading extension MIT-SCREEN-SAVER
(II) Loading extension XC-MISC
(II) Loading extension XFree86-VidModeExtension
(II) Loading extension XFree86-Misc
(II) Loading extension XFree86-DGA
(II) Loading extension DPMS
(II) Loading extension FontCache
(II) Loading extension TOG-CUP
(II) Loading extension Extended-Visual-Information
(II) Loading extension XVideo
(II) Loading extension XVideo-MotionCompensation
(II) LoadModule: "fbdevhw"
(II) Loading /usr/X11R6/lib/modules/linux/libfbdevhw.a
(II) Module fbdevhw: vendor="The XFree86 Project"
    compiled for 4.2.0, module version = 0.0.2
    ABI class: XFree86 Video Driver, version 0.5
(II) LoadModule: "glx"
(II) Loading /usr/X11R6/lib/modules/extensions/libglx.a
(II) Module glx: vendor="The XFree86 Project"
    compiled for 4.2.0, module version = 1.0.0
    ABI class: XFree86 Server Extension, version 0.1
(II) Loading sub module "GLcore"
(II) LoadModule: "GLcore"
(II) Reloading /usr/X11R6/lib/modules/extensions/libGLcore.a
(II) Loading extension GLX
(II) LoadModule: "record"
(II) Loading /usr/X11R6/lib/modules/extensions/librecord.a
(II) Module record: vendor="The XFree86 Project"
    compiled for 4.2.0, module version = 1.13.0
    Module class: XFree86 Server Extension
    ABI class: XFree86 Server Extension, version 0.1
(II) Loading extension RECORD
(II) LoadModule: "v4l"
(II) Loading /usr/X11R6/lib/modules/drivers/linux/v4l_drv.o
(II) Module v4l: vendor="The XFree86 Project"
    compiled for 4.2.0, module version = 0.0.1
    ABI class: XFree86 Video Driver, version 0.5
(II) LoadModule: "type1"
(II) Loading /usr/X11R6/lib/modules/fonts/libtype1.a
(II) Module type1: vendor="The XFree86 Project"
    compiled for 4.2.0, module version = 1.0.1
    Module class: XFree86 Font Renderer
    ABI class: XFree86 Font Renderer, version 0.3
(II) Loading font Type1
(II) Loading font CID
(II) LoadModule: "ati"
(II) Loading /usr/X11R6/lib/modules/drivers/ati_drv.o
(II) Module ati: vendor="The XFree86 Project"
    compiled for 4.2.0, module version = 6.4.7
    Module class: XFree86 Video Driver
    ABI class: XFree86 Video Driver, version 0.5
(II) LoadModule: "mouse"
(II) Loading /usr/X11R6/lib/modules/input/mouse_drv.o
(II) Module mouse: vendor="The XFree86 Project"
    compiled for 4.2.0, module version = 1.0.0
    Module class: XFree86 XInput Driver
    ABI class: XFree86 XInput driver, version 0.3
(II) v4l driver for Video4Linux
(II) ATI: ATI driver (version 6.4.7) for chipsets: ati, ativga
(II) R128: Driver for ATI Rage 128 chipsets: ATI Rage 128 RE (PCI),
    ATI Rage 128 RF (AGP), ATI Rage 128 RG (AGP), ATI Rage 128 RK (PCI),
    ATI Rage 128 RL (AGP), ATI Rage 128 SM (AGP),
    ATI Rage 128 Pro PD (PCI), ATI Rage 128 Pro PF (AGP),
    ATI Rage 128 Pro PP (PCI), ATI Rage 128 Pro PR (PCI),
    ATI Rage 128 Pro ULTRA TF (AGP), ATI Rage 128 Pro ULTRA TL (AGP),
    ATI Rage 128 Pro ULTRA TR (AGP), ATI Rage 128 Mobility LE (PCI),
    ATI Rage 128 Mobility LF (AGP), ATI Rage 128 Mobility MF (AGP),
    ATI Rage 128 Mobility ML (AGP)
(II) RADEON: Driver for ATI Radeon chipsets: ATI Radeon QD (AGP),
    ATI Radeon QE (AGP), ATI Radeon QF (AGP), ATI Radeon QG (AGP),
    ATI Radeon VE QY (AGP), ATI Radeon VE QZ (AGP),
    ATI Radeon Mobility LW (AGP), ATI Radeon Mobility LY (AGP),
    ATI Radeon Mobility LZ (AGP), ATI Radeon 8500 QL (AGP),
    ATI Radeon 8500 BB (AGP), ATI Radeon 7500 QW (AGP)
(II) Primary Device is: PCI 01:00:0
(II) ATI:  Candidate "Device" section "ATI|215CT [Mach64 CT]".
(II) ATI:  Shared PCI/AGP Mach64 in slot 1:0:0 detected.
(II) ATI:  Shared PCI/AGP Mach64 in slot 1:0:0 assigned to active "Device" section "ATI|215CT [Mach64 CT]".
(II) resource ranges after xf86ClaimFixedResources() call:
    [0] -1    0xffe00000 - 0xffffffff (0x200000) MX(B)
    [1] -1    0x00100000 - 0x3fffffff (0x3ff00000) MXE(B)
    [2] -1    0x000f0000 - 0x000fffff (0x10000) MX
    [3] -1    0x000c0000 - 0x000effff (0x30000) MX
    [4] -1    0x00000000 - 0x0009ffff (0xa0000) MX
    [5] -1    0xe6420000 - 0xe64203ff (0x400) MX
    [6] -1    0xe4000000 - 0xe400ffff (0x10000) MX
    [7] -1    0xe6400000 - 0xe641ffff (0x20000) MX
    [8] -1    0xe6000000 - 0xe63fffff (0x400000) MX
    [9] -1    0xe2000000 - 0xe2000fff (0x1000) MX(B)
    [10] -1    0xe0000000 - 0xe0ffffff (0x1000000) MX(B)
    [11] -1    0x0000ffff - 0x0000ffff (0x1) IX
    [12] -1    0x00000000 - 0x000000ff (0x100) IX
    [13] -1    0x0000e800 - 0x0000e87f (0x80) IX
    [14] -1    0x0000e400 - 0x0000e43f (0x40) IX
    [15] -1    0x0000e000 - 0x0000e003 (0x4) IX
    [16] -1    0x0000dc00 - 0x0000dc07 (0x8) IX
    [17] -1    0x0000d800 - 0x0000d803 (0x4) IX
    [18] -1    0x0000d400 - 0x0000d407 (0x8) IX
    [19] -1    0x0000d000 - 0x0000d01f (0x20) IX
    [20] -1    0x0000f000 - 0x0000f00f (0x10) IX
    [21] -1    0x0000c000 - 0x0000c0ff (0x100) IX(B)
(II) Loading sub module "atimisc"
(II) LoadModule: "atimisc"
(II) Loading /usr/X11R6/lib/modules/drivers/atimisc_drv.o
(II) Module atimisc: vendor="The XFree86 Project"
    compiled for 4.2.0, module version = 6.4.7
    Module class: XFree86 Video Driver
    ABI class: XFree86 Video Driver, version 0.5
(II) resource ranges after probing:
    [0] -1    0xffe00000 - 0xffffffff (0x200000) MX(B)
    [1] -1    0x00100000 - 0x3fffffff (0x3ff00000) MXE(B)
    [2] -1    0x000f0000 - 0x000fffff (0x10000) MX
    [3] -1    0x000c0000 - 0x000effff (0x30000) MX
    [4] -1    0x00000000 - 0x0009ffff (0xa0000) MX
    [5] -1    0xe6420000 - 0xe64203ff (0x400) MX
    [6] -1    0xe4000000 - 0xe400ffff (0x10000) MX
    [7] -1    0xe6400000 - 0xe641ffff (0x20000) MX
    [8] -1    0xe6000000 - 0xe63fffff (0x400000) MX
    [9] -1    0xe2000000 - 0xe2000fff (0x1000) MX(B)
    [10] -1    0xe0000000 - 0xe0ffffff (0x1000000) MX(B)
    [11] 0    0x000a0000 - 0x000affff (0x10000) MS
    [12] 0    0x000b0000 - 0x000b7fff (0x8000) MS
    [13] 0    0x000b8000 - 0x000bffff (0x8000) MS
    [14] -1    0x0000ffff - 0x0000ffff (0x1) IX
    [15] -1    0x00000000 - 0x000000ff (0x100) IX
    [16] -1    0x0000e800 - 0x0000e87f (0x80) IX
    [17] -1    0x0000e400 - 0x0000e43f (0x40) IX
    [18] -1    0x0000e000 - 0x0000e003 (0x4) IX
    [19] -1    0x0000dc00 - 0x0000dc07 (0x8) IX
    [20] -1    0x0000d800 - 0x0000d803 (0x4) IX
    [21] -1    0x0000d400 - 0x0000d407 (0x8) IX
    [22] -1    0x0000d000 - 0x0000d01f (0x20) IX
    [23] -1    0x0000f000 - 0x0000f00f (0x10) IX
    [24] -1    0x0000c000 - 0x0000c0ff (0x100) IX(B)
    [25] 0    0x000003b0 - 0x000003bb (0xc) IS
    [26] 0    0x000003c0 - 0x000003df (0x20) IS
(II) Setting vga for screen 0.
(==) ATI(0): Chipset:  "ati".
(**) ATI(0): Depth 24, (--) framebuffer bpp 32
(II) Loading sub module "int10"
(II) LoadModule: "int10"
(II) Loading /usr/X11R6/lib/modules/linux/libint10.a
(II) Module int10: vendor="The XFree86 Project"
    compiled for 4.2.0, module version = 1.0.0
    ABI class: XFree86 Video Driver, version 0.5
(II) ATI(0): Primary V_BIOS segment is: 0xc000
(II) Loading sub module "ddc"
(II) LoadModule: "ddc"
(II) Loading /usr/X11R6/lib/modules/libddc.a
(II) Module ddc: vendor="The XFree86 Project"
    compiled for 4.2.0, module version = 1.0.0
    ABI class: XFree86 Video Driver, version 0.5
(II) Loading sub module "vbe"
(II) LoadModule: "vbe"
(II) Loading /usr/X11R6/lib/modules/libvbe.a
(II) Module vbe: vendor="The XFree86 Project"
    compiled for 4.2.0, module version = 1.0.0
    ABI class: XFree86 Video Driver, version 0.5
(II) ATI(0): VESA BIOS detected
(II) ATI(0): VESA VBE Version 2.0
(II) ATI(0): VESA VBE Total Mem: 8128 kB
(II) ATI(0): VESA VBE OEM: ATI MACH64
(II) ATI(0): VESA VBE OEM Software Rev: 1.0
(II) ATI(0): VESA VBE OEM Vendor: ATI Technologies Inc.
(II) ATI(0): VESA VBE OEM Product: MACH64LP
(II) ATI(0): VESA VBE OEM Product Rev: 01.00
(II) ATI(0): VESA VBE DDC supported
(II) ATI(0): VESA VBE DDC Level 2
(II) ATI(0): VESA VBE DDC transfer in appr. 2 sec.
(II) ATI(0): VESA VBE DDC read successfully
(II) ATI(0): Manufacturer: SAM  Model: 1156  Serial#: 1145450807
(II) ATI(0): Year: 2000  Week: 51
(II) ATI(0): EDID Version: 1.2
(II) ATI(0): Analog Display Input,  Input Voltage Level: 0.700/0.700 V
(II) ATI(0): Sync:  Separate
(II) ATI(0): Max H-Image Size [cm]: horiz.: 32  vert.: 24
(II) ATI(0): Gamma: 2.26
(II) ATI(0): DPMS capabilities: StandBy Suspend Off; RGB/Color Display
(II) ATI(0): First detailed timing is preferred mode
(II) ATI(0): redX: 0.639 redY: 0.323   greenX: 0.275 greenY: 0.597
(II) ATI(0): blueX: 0.143 blueY: 0.062   whiteX: 0.283 whiteY: 0.298
(II) ATI(0): Supported VESA Video Modes:
(II) ATI(0): 720x400@70Hz
(II) ATI(0): 720x400@88Hz
(II) ATI(0): 640x480@60Hz
(II) ATI(0): 640x480@67Hz
(II) ATI(0): 640x480@72Hz
(II) ATI(0): 640x480@75Hz
(II) ATI(0): 800x600@56Hz
(II) ATI(0): 800x600@60Hz
(II) ATI(0): 800x600@72Hz
(II) ATI(0): 800x600@75Hz
(II) ATI(0): 832x624@75Hz
(II) ATI(0): 1024x768@87Hz (interlaced)
(II) ATI(0): 1024x768@60Hz
(II) ATI(0): 1024x768@70Hz
(II) ATI(0): 1024x768@75Hz
(II) ATI(0): 1280x1024@75Hz
(II) ATI(0): 1152x870@75Hz
(II) ATI(0): Manufacturer's mask: 0
(II) ATI(0): Supported Future Video Modes:
(II) ATI(0): #0: hsize: 640  vsize 480  refresh: 85  vid: 22833
(II) ATI(0): #1: hsize: 800  vsize 600  refresh: 85  vid: 22853
(II) ATI(0): #2: hsize: 1024  vsize 768  refresh: 85  vid: 22881
(II) ATI(0): #3: hsize: 1280  vsize 1024  refresh: 75  vid: 36737
(II) ATI(0): #4: hsize: 1600  vsize 1200  refresh: 65  vid: 17833
(II) ATI(0): Supported additional Video Mode:
(II) ATI(0): clock: 94.5 MHz   Image Size:  306 x 230 mm
(II) ATI(0): h_active: 1024  h_sync: 1072  h_sync_end 1168 h_blank_end 1376 h_border: 0
(II) ATI(0): v_active: 768  v_sync: 769  v_sync_end 772 v_blanking: 808 v_border: 0
(II) ATI(0): Ranges: V min: 50  V max: 160 Hz, H min: 30  H max: 85 kHz, PixClock max 2550 MHz
(II) ATI(0): Monitor name: S/M 755DF
(II) ATI(0): Serial No: H2FNC13546
(--) ATI(0): ATI 3D Rage LT Pro graphics controller detected.
(--) ATI(0): Chip type 4C42 "LB", version 4, foundry UMC, class 0, revision 0x03.
(--) ATI(0): AGP bus interface detected;  block I/O base is 0xC000.
(--) ATI(0): ATI Mach64 adapter detected.
(!!) ATI(0): For information on using the multimedia capabilities
of this adapter, please see http://gatos.sf.net.
(--) ATI(0): Internal RAMDAC (subtype 1) detected.
(==) ATI(0): RGB weight 888
(==) ATI(0): Default visual is TrueColor
(==) ATI(0): Using gamma correction (1.0, 1.0, 1.0)
(II) ATI(0): Using Mach64 accelerator CRTC.
(**) ATI(0): Using CRT interface and disabling digital flat panel.
(II) ATI(0): Storing hardware cursor image at 0xE07FFC00.
(II) ATI(0): Using 8 MB linear aperture at 0xE0000000.
(!!) ATI(0): Virtual resolutions will be limited to 8191 kB
due to linear aperture size and/or placement of hardware cursor image area.
(II) ATI(0): Using Block 0 MMIO aperture at 0xE2000400.
(II) ATI(0): Using Block 1 MMIO aperture at 0xE2000000.
(==) ATI(0): Write-combining range (0xe0000000,0x800000)
(II) ATI(0): MMIO write caching enabled.
(--) ATI(0): 8192 kB of SDRAM (1:1) detected (using 8191 kB).
(WW) ATI(0): Cannot shadow an accelerated frame buffer.
(--) ATI(0): Internal programmable clock generator detected.
(--) ATI(0): Reference clock 29.500 MHz.
(WW) ATI(0): config file hsync range 30-86kHz not within DDC hsync range 30-85kHz
(II) ATI(0): Monitor: Using hsync range of 30.00-86.00 kHz
(II) ATI(0): Monitor: Using vrefresh range of 50.00-161.00 Hz
(II) ATI(0): Maximum clock: 200.00 MHz
(II) ATI(0): Not using default mode "1152x864" (width too large for virtual size)
(II) ATI(0): Not using default mode "1280x960" (width too large for virtual size)
(II) ATI(0): Not using default mode "1280x960" (width too large for virtual size)
(II) ATI(0): Not using default mode "1280x1024" (width too large for virtual size)
(II) ATI(0): Not using default mode "1280x1024" (width too large for virtual size)
(II) ATI(0): Not using default mode "1280x1024" (width too large for virtual size)
(II) ATI(0): Not using default mode "640x512" (hsync out of range)
(II) ATI(0): Not using default mode "1600x1200" (width too large for virtual size)
(II) ATI(0): Not using default mode "1600x1200" (width too large for virtual size)
(II) ATI(0): Not using default mode "1600x1200" (width too large for virtual size)
(II) ATI(0): Not using default mode "1600x1200" (width too large for virtual size)
(II) ATI(0): Not using default mode "1600x1200" (width too large for virtual size)
(II) ATI(0): Not using default mode "1792x1344" (insufficient memory for mode)
(II) ATI(0): Not using default mode "1792x1344" (insufficient memory for mode)
(II) ATI(0): Not using default mode "896x672" (hsync out of range)
(II) ATI(0): Not using default mode "1856x1392" (insufficient memory for mode)
(II) ATI(0): Not using default mode "1856x1392" (insufficient memory for mode)
(II) ATI(0): Not using default mode "928x696" (hsync out of range)
(II) ATI(0): Not using default mode "1920x1440" (insufficient memory for mode)
(II) ATI(0): Not using default mode "960x720" (hsync out of range)
(II) ATI(0): Not using default mode "1920x1440" (insufficient memory for mode)
(II) ATI(0): Not using default mode "960x720" (hsync out of range)
(II) ATI(0): Not using default mode "1152x864" (width too large for virtual size)
(II) ATI(0): Not using default mode "1400x1050" (width too large for virtual size)
(II) ATI(0): Not using default mode "1400x1050" (width too large for virtual size)
(II) ATI(0): Not using default mode "1400x1050" (width too large for virtual size)
(II) ATI(0): Not using default mode "1400x1050" (width too large for virtual size)
(II) ATI(0): Not using default mode "700x525" (hsync out of range)
(II) ATI(0): Not using default mode "1600x1024" (width too large for virtual size)
(II) ATI(0): Not using default mode "1920x1200" (insufficient memory for mode)
(II) ATI(0): Not using default mode "960x600" (hsync out of range)
(**) ATI(0): Virtual size is 1024x768 (pitch 1024)
(**) ATI(0): Mode "1024x768": 115.5 MHz, 80.2 kHz, 100.0 Hz
(II) ATI(0): Modeline "1024x768"  115.50  1024 1056 1248 1440  768 771 781 802 -hsync -vsync
(**) ATI(0): Mode "800x600": 69.7 MHz, 64.0 kHz, 100.0 Hz
(II) ATI(0): Modeline "800x600"   69.65  800 864 928 1088  600 604 610 640 -hsync -vsync
(**) ATI(0): Mode "640x480": 45.8 MHz, 53.0 kHz, 100.0 Hz
(II) ATI(0): Modeline "640x480"   45.80  640 672 768 864  480 488 494 530 -hsync -vsync
(--) ATI(0): Display dimensions: (320, 240) mm
(--) ATI(0): DPI set to (81, 81)
(II) Loading sub module "xaa"
(II) LoadModule: "xaa"
(II) Loading /usr/X11R6/lib/modules/libxaa.a
(II) Module xaa: vendor="The XFree86 Project"
    compiled for 4.2.0, module version = 1.0.0
    ABI class: XFree86 Video Driver, version 0.5
(II) Loading sub module "ramdac"
(II) LoadModule: "ramdac"
(II) Loading /usr/X11R6/lib/modules/libramdac.a
(II) Module ramdac: vendor="The XFree86 Project"
    compiled for 4.2.0, module version = 0.1.0
    ABI class: XFree86 Video Driver, version 0.5
(II) Loading sub module "fb"
(II) LoadModule: "fb"
(II) Loading /usr/X11R6/lib/modules/libfb.a
(II) Module fb: vendor="The XFree86 Project"
    compiled for 4.2.0, module version = 1.0.0
    ABI class: XFree86 ANSI C Emulation, version 0.1
(--) Depth 24 pixmap format is 32 bpp
(II) do I need RAC?  No, I don't.
(II) resource ranges after preInit:
    [0] 0    0xe2000000 - 0xe2000fff (0x1000) MS
    [1] 0    0xe0000000 - 0xe0ffffff (0x1000000) MS
    [2] -1    0xffe00000 - 0xffffffff (0x200000) MX(B)
    [3] -1    0x00100000 - 0x3fffffff (0x3ff00000) MXE(B)
    [4] -1    0x000f0000 - 0x000fffff (0x10000) MX
    [5] -1    0x000c0000 - 0x000effff (0x30000) MX
    [6] -1    0x00000000 - 0x0009ffff (0xa0000) MX
    [7] -1    0xe6420000 - 0xe64203ff (0x400) MX
    [8] -1    0xe4000000 - 0xe400ffff (0x10000) MX
    [9] -1    0xe6400000 - 0xe641ffff (0x20000) MX
    [10] -1    0xe6000000 - 0xe63fffff (0x400000) MX
    [11] -1    0xe2000000 - 0xe2000fff (0x1000) MX(B)
    [12] -1    0xe0000000 - 0xe0ffffff (0x1000000) MX(B)
    [13] 0    0x000a0000 - 0x000affff (0x10000) MS(OprU)
    [14] 0    0x000b0000 - 0x000b7fff (0x8000) MS(OprU)
    [15] 0    0x000b8000 - 0x000bffff (0x8000) MS(OprU)
    [16] 0    0x0000c000 - 0x0000c0ff (0x100) IS
    [17] -1    0x0000ffff - 0x0000ffff (0x1) IX
    [18] -1    0x00000000 - 0x000000ff (0x100) IX
    [19] -1    0x0000e800 - 0x0000e87f (0x80) IX
    [20] -1    0x0000e400 - 0x0000e43f (0x40) IX
    [21] -1    0x0000e000 - 0x0000e003 (0x4) IX
    [22] -1    0x0000dc00 - 0x0000dc07 (0x8) IX
    [23] -1    0x0000d800 - 0x0000d803 (0x4) IX
    [24] -1    0x0000d400 - 0x0000d407 (0x8) IX
    [25] -1    0x0000d000 - 0x0000d01f (0x20) IX
    [26] -1    0x0000f000 - 0x0000f00f (0x10) IX
    [27] -1    0x0000c000 - 0x0000c0ff (0x100) IX(B)
    [28] 0    0x000003b0 - 0x000003bb (0xc) IS(OprU)
    [29] 0    0x000003c0 - 0x000003df (0x20) IS(OprU)
(==) ATI(0): Write-combining range (0xe0000000,0x800000)
(II) ATI(0): Largest offscreen areas (with overlaps):
(II) ATI(0):     1024 x 1279 rectangle at 0,768
(II) ATI(0):     768 x 1280 rectangle at 0,768
(II) ATI(0): Using XFree86 Acceleration Architecture (XAA)
    Screen to screen bit blits
    Solid filled rectangles
    8x8 mono pattern filled rectangles
    Indirect CPU to Screen color expansion
    Solid Lines
    Offscreen Pixmaps
    Setting up tile and stipple cache:
        32 128x128 slots
        10 256x256 slots
(==) ATI(0): Backing store disabled
(==) ATI(0): Silken mouse enabled
(II) ATI(0): ecp_div is 0
(II) ATI(0): 0x55 0xaa
(II) ATI(0): No MM_TABLE found
(II) Loading sub module "i2c"
(II) LoadModule: "i2c"
(II) Loading /usr/X11R6/lib/modules/libi2c.a
(II) Module i2c: vendor="The XFree86 Project"
    compiled for 4.2.0, module version = 1.2.0
    ABI class: XFree86 Video Driver, version 0.5
(II) ATI(0): I2C bus "Rage Pro i2c bus" initialized.
(II) ATI(0): StartTimeout = 5
(II) ATI(0): Detecting addon board, trying default i2c mode
(II) ATI(0): No video input capabilities detected
(II) Initializing built-in extension MIT-SHM
(II) Initializing built-in extension XInputExtension
(II) Initializing built-in extension XTEST
(II) Initializing built-in extension XKEYBOARD
(II) Initializing built-in extension LBX
(II) Initializing built-in extension XC-APPGROUP
(II) Initializing built-in extension SECURITY
(II) Initializing built-in extension XINERAMA
(II) Initializing built-in extension XFree86-Bigfont
(II) Initializing built-in extension RENDER
(**) Option "Protocol" "PS/2"
(**) Implicit Core Pointer: Protocol: "PS/2"
(**) Option "CorePointer"
(**) Implicit Core Pointer: Core Pointer
(**) Option "Device" "/dev/mouse"
(**) Option "Emulate3Buttons"
(**) Option "Emulate3Timeout" "50"
(**) Implicit Core Pointer: Emulate3Buttons, Emulate3Timeout: 50
(**) Option "ZAxisMapping" "4 5"
(**) Implicit Core Pointer: ZAxisMapping: buttons 4 and 5
(**) Implicit Core Pointer: Buttons: 5
(II) Keyboard "Implicit Core Keyboard" handled by legacy driver
(II) XINPUT: Adding extended input device "Implicit Core Pointer" (type: MOUSE)
AUDIT: Wed Aug 28 14:59:23 2002: 1231 X: client 2 rejected from local host
AUDIT: Wed Aug 28 14:59:24 2002: 1231 X: client 2 rejected from local host
(II) ATI(0): Shutting down Xvideo subsystems


"RE: Графический вход в систему"
Отправлено LinaS , 28-Авг-02 12:19 
>Да, там следующее:
>x:5:respawn:/etc/X11/prefdm -nodaemon
>
>А вот текст скрипта /etc/X11/prefdm
>
>#!/bin/sh
>
>PATH=/sbin:/usr/sbin:/bin:/usr/bin:/usr/X11R6/bin
>
># We need to source this so that the login screens get
>translated
>. /etc/profile.d/lang.sh
>
># Run preferred X display manager
>
># Try autologin first, if wanted...
>if [ -f /etc/sysconfig/autologin -a -x /usr/sbin/autologin ]; then
> if /usr/sbin/autologin; then
>  exit 0
> fi
> # If autologin fails (bad permissions, etc.), we get here -
>
> # time to start a real display manager.
>fi
>
>preferred=
>if [ -f /etc/sysconfig/desktop ]; then
>    source /etc/sysconfig/desktop >/dev/null 2>&1
> [ -n "$DISPLAYMANAGER" ] && DESKTOP=$DISPLAYMANAGER
> if [ "$DESKTOP" = GNOME ]; then
>  preferred=gdm
> elif [ "$DESKTOP" = "KDE" -o "$DESKTOP" = "KDE1" -o "$DESKTOP"
>= "KDE2" ]; then
>  preferred=kdm
> fi
>fi
>
>if [ -z "$preferred" ]; then
>    if which gdm >/dev/null 2>&1; then
>  preferred=gdm
>    elif which kdm >/dev/null 2>&1; then
>  preferred=kdm
>    elif which xdm >/dev/null 2>&1; then
>  preferred=xdm
> fi
>fi
>
>if [ -n "$preferred" ] && which $preferred >/dev/null 2>&1; then
>    exec `which $preferred` $* >/dev/null 2>&1
>fi
>
>if which gdm >/dev/null 2>&1; then
>    exec `which gdm` $* >/dev/null 2>&1
>elif which kdm >/dev/null 2>&1; then
>    exec `which kdm` $* >/dev/null 2>&1
>elif which xdm >/dev/null 2>&1; then
>    exec `which xdm` $* >/dev/null 2>&1
>fi
>
># catch all exit error
>exit 1
>
>...может разберешся?
>Спасибо...


Что у тебя написано в /etc/sysconfig/desktop?

если хочешь использовать
gdm - в этом файле должно быть GNOME
kdm - KDE
если там ничего, то в порядке приоритетности запускается либо gdm (если установлен), либо kdm (елси не установлен gdm, но установлен kdm), либо xdm (если оба первых не установлены, а xdm есть).

Соответственно проверь, стоит ли у тебя кто-нибудь из gdm/kdm/xdm
(which xdm например)

PS: у меня ALTLinux Spring2000/Sisyphus - там для того, чтобы запускался xdm, надо написать в /etc/sysconfig/desktop AnotherLevel, но в этом скрипте я этого не вижу...


"RE: Графический вход в систему"
Отправлено Dark_Krasnoff , 28-Авг-02 15:48 
У меня этого файла ваще нет а всё остальное стоит...
Я тут логи выложил... погляди...

"RE: Графический вход в систему"
Отправлено LinaS , 28-Авг-02 17:28 
>У меня этого файла ваще нет а всё остальное стоит...
>Я тут логи выложил... погляди...

у тебя в логи пишет:
gdm_auth_secure_display: Error getting hentry for pavel
похоже, в этом и грабли...

если до вечера не решишь - посмотрю дома (на работе фря, и gnome/gdm нету), может, чего и прояснится...


"RE: Графический вход в систему"
Отправлено Dark_Krasnoff , 28-Авг-02 17:58 
>у тебя в логи пишет:
>gdm_auth_secure_display: Error getting hentry for pavel
>похоже, в этом и грабли...
>
>если до вечера не решишь - посмотрю дома (на работе фря, и
>gnome/gdm нету), может, чего и прояснится...

То, что в этом и грабли, я понял... А чё делать, не знаю... :(


"RE: Графический вход в систему"
Отправлено cir , 30-Авг-02 08:41 
>Да, там следующее:
>x:5:respawn:/etc/X11/prefdm -nodaemon
>
>А вот текст скрипта /etc/X11/prefdm
>
>#!/bin/sh
>
>PATH=/sbin:/usr/sbin:/bin:/usr/bin:/usr/X11R6/bin
***кусь***
>
># Try autologin first, if wanted...
>if [ -f /etc/sysconfig/autologin -a -x /usr/sbin/autologin ]; then
> if /usr/sbin/autologin; then
>  exit 0
> fi
> # If autologin fails (bad permissions, etc.), we get here -
>
> # time to start a real display manager.
>fi
>
preferred=gdm
        ^^^ или что тебе надо
>if [ -f /etc/sysconfig/desktop ]; then
***кусь***

"RE: Графический вход в систему"
Отправлено bass , 28-Авг-02 12:05 
>Почему если при устновке выбираеш графический вход, X не запускается пока не
>залогинишся и не введеш startx? Причем, всё это происходит на 5-ом
>ранлевеле...
>Если кто знает, как зделать вход в систему графическим - подскажите...
>И не надо говогить про /etc/inittab, там написанно : id:5:initdefault: ...
>Спасибо...

вот имеено на 5-м ранлевеле и не получится.
из FAQ:
вопрос: как отключить автоматическую загрузку иксов
ответ: поставить 5-й ранлевел


"RE: Графический вход в систему"
Отправлено Dark_Krasnoff , 28-Авг-02 15:45 
>вот имеено на 5-м ранлевеле и не получится.
>из FAQ:
>вопрос: как отключить автоматическую загрузку иксов
>ответ: поставить 5-й ранлевел

Глупости... Возможно кто-то ошибся...