お知らせ

  • 利用規約を守って投稿してください。また、よくある質問および投稿の手引きも参照してください。
  • メッセージの投稿にはアカウントが必要です。未登録の方は、ユーザ登録ページからアカウントを作成することができます。

#1 2013-07-07 21:15:26

初心者z
新しいメンバ
登録日: 2013-07-07

winXPとUbuntu Ver13.デュアルブートについて

OS windows XP sp3
MB ギガバイト EP35
CPU cor2duo
HDD 250G Cドライブ 132G内windows Dドライブ Ubuntu

メモリ 4G

無事にUbuntuインストールでき快適に使買えてるのですがwidows使おうと再起動した所
デュアルブート画面でOs選択画面は出るのですがキーボードが受け付けてくれません。

結果ubuntuでしか立ち上がらない状態です。

矢印 ↑ ↓

ubuntuは32bitでインストールしました。

フォーラムを色々見たのですが同じ症状が無かったので書かせて頂きました。

教えて頂ける方おりましたら宜しくお願い致します。

本日入れたばかりなので本当の初心者です。

オフライン

 

#2 2013-07-07 22:54:46

uotora
メンバ
登録日: 2008-06-18

Re: winXPとUbuntu Ver13.デュアルブートについて

Ubuntuのバージョンはおそらく13.04と思いますが、正しく表記して下さい。

まず「Ubuntu」を起動してデスクトップ画面の左側一番上のアイコン(DASH)をクリックし「端末(Terminal)」を開き次のコマンドを入力し結果を貼り付けて下さい。
(1)

コード:

sudo parted -l

(2)

コード:

sudo cat /boot/grub/grub.cfg

(3)

コード:

sudo cat /var/log/Xorg.0.log

各コマンドはコピー&ペーストして下さい。

オフライン

 

#3 2013-07-07 23:58:15

初心者z
新しいメンバ
登録日: 2013-07-07

Re: winXPとUbuntu Ver13.デュアルブートについて

早速有難うございます。
初心者なので操作(コマンド)なれてないので遅くなりました。

下記の情報でよいのでしょうか?

宜しくお願い致します。
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー

>Ubuntuのバージョンはおそらく13.04と思いますが、正しく表記して下さい。

まず「Ubuntu」を起動してデスクトップ画面の左側一番上のアイコン(DASH)をクリックし「端末(Terminal)」を開き次のコマンドを入力し結果を貼り付けて下さい。
(1)
コード:

sudo parted -l

satoshi@satoshi-EP35-DS3R:~$ sudo parted -l
[sudo] password for satoshi:
モデル: ATA ST3320620AS (scsi)
ディスク /dev/sda: 320GB
セクタサイズ (論理/物理): 512B/512B
パーティションテーブル: msdos

番号  開始    終了   サイズ  タイプ    ファイルシステム  フラグ
1    32.3kB  132GB  132GB   primary   ntfs              boot
3    132GB   234GB  102GB   extended
5    132GB   230GB  97.9GB  logical   ext4
6    230GB   234GB  4292MB  logical   linux-swap(v1)
2    234GB   320GB  86.0GB  primary   ntfs


警告: /dev/sr0 を読み書き可能な状態にオープンできません(読み込み専用ファイルシステムです)。/dev/sr0
は読み込みのみ可能な状態でオープンされました。
エラー: /dev/sr0: ディスクラベルが認識できません。                       

satoshi@satoshi-EP35-DS3R:~$



(2)
コード:

sudo cat /boot/grub/grub.cfg

satoshi@satoshi-EP35-DS3R:~$ sudo cat /boot/grub/grub.cfg
#
# DO NOT EDIT THIS FILE
#
# It is automatically generated by grub-mkconfig using templates
# from /etc/grub.d and settings from /etc/default/grub
#

### BEGIN /etc/grub.d/00_header ###
if [ -s $prefix/grubenv ]; then
  set have_grubenv=true
  load_env
fi
set default="0"

if [ x"${feature_menuentry_id}" = xy ]; then
  menuentry_id_option="--id"
else
  menuentry_id_option=""
fi

export menuentry_id_option

if [ "${prev_saved_entry}" ]; then
  set saved_entry="${prev_saved_entry}"
  save_env saved_entry
  set prev_saved_entry=
  save_env prev_saved_entry
  set boot_once=true
fi

function savedefault {
  if [ -z "${boot_once}" ]; then
    saved_entry="${chosen}"
    save_env saved_entry
  fi
}

function recordfail {
  set recordfail=1
  if [ -n "${have_grubenv}" ]; then if [ -z "${boot_once}" ]; then save_env recordfail; fi; fi
}

function load_video {
  if [ x$feature_all_video_module = xy ]; then
    insmod all_video
  else
    insmod efi_gop
    insmod efi_uga
    insmod ieee1275_fb
    insmod vbe
    insmod vga
    insmod video_bochs
    insmod video_cirrus
  fi
}

if [ x$feature_default_font_path = xy ] ; then
   font=unicode
else
insmod part_msdos
insmod ext2
set root='hd0,msdos5'
if [ x$feature_platform_search_hint = xy ]; then
  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos5 --hint-efi=hd0,msdos5 --hint-baremetal=ahci0,msdos5  6c533538-8f5c-4e25-af3e-8e7333f313d5
else
  search --no-floppy --fs-uuid --set=root 6c533538-8f5c-4e25-af3e-8e7333f313d5
fi
    font="/usr/share/grub/unicode.pf2"
fi

if loadfont $font ; then
  set gfxmode=auto
  load_video
  insmod gfxterm
  set locale_dir=$prefix/locale
  set lang=ja_JP
  insmod gettext
fi
terminal_output gfxterm
if [ "${recordfail}" = 1 ]; then
  set timeout=-1
else
  set timeout=10
fi
### END /etc/grub.d/00_header ###

### BEGIN /etc/grub.d/05_debian_theme ###
set menu_color_normal=white/black
set menu_color_highlight=black/light-gray
if background_color 44,0,30; then
  clear
fi
### END /etc/grub.d/05_debian_theme ###

### BEGIN /etc/grub.d/10_linux ###
function gfxmode {
    set gfxpayload="${1}"
    if [ "${1}" = "keep" ]; then
        set vt_handoff=vt.handoff=7
    else
        set vt_handoff=
    fi
}
if [ "${recordfail}" != 1 ]; then
  if [ -e ${prefix}/gfxblacklist.txt ]; then
    if hwmatch ${prefix}/gfxblacklist.txt 3; then
      if [ ${match} = 0 ]; then
        set linux_gfx_mode=keep
      else
        set linux_gfx_mode=text
      fi
    else
      set linux_gfx_mode=text
    fi
  else
    set linux_gfx_mode=keep
  fi
else
  set linux_gfx_mode=text
fi
export linux_gfx_mode
menuentry 'Ubuntu' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-simple-6c533538-8f5c-4e25-af3e-8e7333f313d5' {
recordfail
    load_video
    gfxmode $linux_gfx_mode
    insmod gzio
    insmod part_msdos
    insmod ext2
    set root='hd0,msdos5'
    if [ x$feature_platform_search_hint = xy ]; then
      search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos5 --hint-efi=hd0,msdos5 --hint-baremetal=ahci0,msdos5  6c533538-8f5c-4e25-af3e-8e7333f313d5
    else
      search --no-floppy --fs-uuid --set=root 6c533538-8f5c-4e25-af3e-8e7333f313d5
    fi
    linux    /boot/vmlinuz-3.10.0-2-generic root=UUID=6c533538-8f5c-4e25-af3e-8e7333f313d5 ro   quiet splash $vt_handoff
    initrd    /boot/initrd.img-3.10.0-2-generic
}
submenu 'Advanced options for Ubuntu' $menuentry_id_option 'gnulinux-advanced-6c533538-8f5c-4e25-af3e-8e7333f313d5' {
    menuentry 'Ubuntu, with Linux 3.10.0-2-generic' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.10.0-2-generic-advanced-6c533538-8f5c-4e25-af3e-8e7333f313d5' {
    recordfail
        load_video
        gfxmode $linux_gfx_mode
        insmod gzio
        insmod part_msdos
        insmod ext2
        set root='hd0,msdos5'
        if [ x$feature_platform_search_hint = xy ]; then
          search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos5 --hint-efi=hd0,msdos5 --hint-baremetal=ahci0,msdos5  6c533538-8f5c-4e25-af3e-8e7333f313d5
        else
          search --no-floppy --fs-uuid --set=root 6c533538-8f5c-4e25-af3e-8e7333f313d5
        fi
        echo    'Linux 3.10.0-2-generic をロード中...'
        linux    /boot/vmlinuz-3.10.0-2-generic root=UUID=6c533538-8f5c-4e25-af3e-8e7333f313d5 ro   quiet splash $vt_handoff
        echo    '初期 RAM ディスクをロード中...'
        initrd    /boot/initrd.img-3.10.0-2-generic
    }
    menuentry 'Ubuntu, with Linux 3.10.0-2-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.10.0-2-generic-recovery-6c533538-8f5c-4e25-af3e-8e7333f313d5' {
    recordfail
        load_video
        insmod gzio
        insmod part_msdos
        insmod ext2
        set root='hd0,msdos5'
        if [ x$feature_platform_search_hint = xy ]; then
          search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos5 --hint-efi=hd0,msdos5 --hint-baremetal=ahci0,msdos5  6c533538-8f5c-4e25-af3e-8e7333f313d5
        else
          search --no-floppy --fs-uuid --set=root 6c533538-8f5c-4e25-af3e-8e7333f313d5
        fi
        echo    'Linux 3.10.0-2-generic をロード中...'
        linux    /boot/vmlinuz-3.10.0-2-generic root=UUID=6c533538-8f5c-4e25-af3e-8e7333f313d5 ro recovery nomodeset
        echo    '初期 RAM ディスクをロード中...'
        initrd    /boot/initrd.img-3.10.0-2-generic
    }
}

### END /etc/grub.d/10_linux ###

### BEGIN /etc/grub.d/20_linux_xen ###

### END /etc/grub.d/20_linux_xen ###

### BEGIN /etc/grub.d/20_memtest86+ ###
menuentry 'Memory test (memtest86+)' {
    insmod part_msdos
    insmod ext2
    set root='hd0,msdos5'
    if [ x$feature_platform_search_hint = xy ]; then
      search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos5 --hint-efi=hd0,msdos5 --hint-baremetal=ahci0,msdos5  6c533538-8f5c-4e25-af3e-8e7333f313d5
    else
      search --no-floppy --fs-uuid --set=root 6c533538-8f5c-4e25-af3e-8e7333f313d5
    fi
    linux16    /boot/memtest86+.bin
}
menuentry 'Memory test (memtest86+, serial console 115200)' {
    insmod part_msdos
    insmod ext2
    set root='hd0,msdos5'
    if [ x$feature_platform_search_hint = xy ]; then
      search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos5 --hint-efi=hd0,msdos5 --hint-baremetal=ahci0,msdos5  6c533538-8f5c-4e25-af3e-8e7333f313d5
    else
      search --no-floppy --fs-uuid --set=root 6c533538-8f5c-4e25-af3e-8e7333f313d5
    fi
    linux16    /boot/memtest86+.bin console=ttyS0,115200n8
}
### END /etc/grub.d/20_memtest86+ ###

### BEGIN /etc/grub.d/30_os-prober ###
menuentry 'Microsoft Windows XP Home Edition (on /dev/sda1)' --class windows --class os $menuentry_id_option 'osprober-chain-DCDCEB36DCEB0A1A' {
    insmod part_msdos
    insmod ntfs
    set root='hd0,msdos1'
    if [ x$feature_platform_search_hint = xy ]; then
      search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1  DCDCEB36DCEB0A1A
    else
      search --no-floppy --fs-uuid --set=root DCDCEB36DCEB0A1A
    fi
    drivemap -s (hd0) ${root}
    chainloader +1
}
### END /etc/grub.d/30_os-prober ###

### BEGIN /etc/grub.d/30_uefi-firmware ###
### END /etc/grub.d/30_uefi-firmware ###

### BEGIN /etc/grub.d/40_custom ###
# 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.
### END /etc/grub.d/40_custom ###

### BEGIN /etc/grub.d/41_custom ###
if [ -f  ${config_directory}/custom.cfg ]; then
  source ${config_directory}/custom.cfg
elif [ -z "${config_directory}" -a -f  $prefix/custom.cfg ]; then
  source $prefix/custom.cfg;
fi
### END /etc/grub.d/41_custom ###
satoshi@satoshi-EP35-DS3R:~$


(3)
コード:

sudo cat /var/log/Xorg.0.log

    AMD Radeon HD 6800 Series, AMD Radeon HD 6800 Series,
    AMD Radeon HD 6700 Series, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS,
    TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS,
    TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS,
    CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS,
    CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, ARUBA, ARUBA,
    ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA,
    ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA,
    ARUBA, ARUBA, TAHITI, TAHITI, TAHITI, TAHITI, TAHITI, TAHITI, TAHITI,
    TAHITI, TAHITI, TAHITI, TAHITI, TAHITI, TAHITI, PITCAIRN, PITCAIRN,
    PITCAIRN, PITCAIRN, PITCAIRN, PITCAIRN, PITCAIRN, PITCAIRN, PITCAIRN,
    PITCAIRN, PITCAIRN, PITCAIRN, PITCAIRN, VERDE, VERDE, VERDE, VERDE,
    VERDE, VERDE, VERDE, VERDE, VERDE, VERDE, VERDE, VERDE, VERDE, VERDE,
    VERDE, VERDE, VERDE, VERDE, VERDE, VERDE
[    16.403] (II) VESA: driver for VESA chipsets: vesa
[    16.403] (II) modesetting: Driver for Modesetting Kernel Drivers: kms
[    16.403] (II) FBDEV: driver for framebuffer: fbdev
[    16.403] (++) using VT number 7

[    16.403] (II) [KMS] Kernel modesetting enabled.
[    16.403] (WW) Falling back to old probe method for vesa
[    16.403] (WW) Falling back to old probe method for modesetting
[    16.403] (WW) Falling back to old probe method for fbdev
[    16.403] (II) Loading sub module "fbdevhw"
[    16.404] (II) LoadModule: "fbdevhw"
[    16.404] (II) Loading /usr/lib/xorg/modules/libfbdevhw.so
[    16.404] (II) Module fbdevhw: vendor="X.Org Foundation"
[    16.404]     compiled for 1.13.3, module version = 0.0.2
[    16.404]     ABI class: X.Org Video Driver, version 13.1
[    16.404] (II) RADEON(0): Creating default Display subsection in Screen section
    "Default Screen Section" for depth/fbbpp 24/32
[    16.404] (==) RADEON(0): Depth 24, (--) framebuffer bpp 32
[    16.404] (II) RADEON(0): Pixel depth = 24 bits stored in 4 bytes (32 bpp pixmaps)
[    16.404] (==) RADEON(0): Default visual is TrueColor
[    16.404] (==) RADEON(0): RGB weight 888
[    16.404] (II) RADEON(0): Using 8 bits per RGB (8 bit DAC)
[    16.404] (--) RADEON(0): Chipset: "ATI Radeon HD 6700 Series" (ChipID = 0x68bf)
[    16.404] (II) Loading sub module "dri2"
[    16.404] (II) LoadModule: "dri2"
[    16.404] (II) Module "dri2" already built-in
[    16.404] (II) Loading sub module "exa"
[    16.404] (II) LoadModule: "exa"
[    16.404] (II) Loading /usr/lib/xorg/modules/libexa.so
[    16.404] (II) Module exa: vendor="X.Org Foundation"
[    16.404]     compiled for 1.13.3, module version = 2.6.0
[    16.404]     ABI class: X.Org Video Driver, version 13.1
[    16.404] (II) RADEON(0): KMS Color Tiling: enabled
[    16.404] (II) RADEON(0): KMS Color Tiling 2D: enabled
[    16.404] (II) RADEON(0): KMS Pageflipping: enabled
[    16.404] (II) RADEON(0): SwapBuffers wait for vsync: enabled
[    16.406] (II) RADEON(0): Output HDMI-0 has no monitor section
[    16.436] (II) RADEON(0): Output DVI-0 has no monitor section
[    16.460] (II) RADEON(0): Output VGA-0 has no monitor section
[    16.462] (II) RADEON(0): EDID for output HDMI-0
[    16.492] (II) RADEON(0): EDID for output DVI-0
[    16.492] (II) RADEON(0): Manufacturer: FUJ  Model: 211  Serial#: 16843009
[    16.492] (II) RADEON(0): Year: 2003  Week: 33
[    16.492] (II) RADEON(0): EDID Version: 1.3
[    16.492] (II) RADEON(0): Digital Display Input
[    16.492] (II) RADEON(0): DFP 1.x compatible TMDS
[    16.492] (II) RADEON(0): Max Image Size [cm]: horiz.: 40  vert.: 30
[    16.492] (II) RADEON(0): Gamma: 2.20
[    16.492] (II) RADEON(0): DPMS capabilities: StandBy Suspend Off
[    16.492] (II) RADEON(0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4
[    16.492] (II) RADEON(0): First detailed timing is preferred mode
[    16.492] (II) RADEON(0): redX: 0.640 redY: 0.350   greenX: 0.284 greenY: 0.590
[    16.492] (II) RADEON(0): blueX: 0.145 blueY: 0.064   whiteX: 0.312 whiteY: 0.328
[    16.492] (II) RADEON(0): Supported established timings:
[    16.492] (II) RADEON(0): 720x400@70Hz
[    16.492] (II) RADEON(0): 640x480@60Hz
[    16.492] (II) RADEON(0): 800x600@60Hz
[    16.493] (II) RADEON(0): 1024x768@60Hz
[    16.493] (II) RADEON(0): Manufacturer's mask: 0
[    16.493] (II) RADEON(0): Supported standard timings:
[    16.493] (II) RADEON(0): #0: hsize: 1280  vsize 1024  refresh: 60  vid: 32897
[    16.493] (II) RADEON(0): #1: hsize: 1600  vsize 1200  refresh: 60  vid: 16553
[    16.493] (II) RADEON(0): Supported detailed timing:
[    16.493] (II) RADEON(0): clock: 162.0 MHz   Image Size:  408 x 306 mm
[    16.493] (II) RADEON(0): h_active: 1600  h_sync: 1664  h_sync_end 1856 h_blank_end 2160 h_border: 0
[    16.493] (II) RADEON(0): v_active: 1200  v_sync: 1201  v_sync_end 1204 v_blanking: 1250 v_border: 0
[    16.493] (II) RADEON(0): Ranges: V min: 55 V max: 71 Hz, H min: 30 H max: 76 kHz, PixClock max 175 MHz
[    16.493] (II) RADEON(0): Monitor name: VL-200VH
[    16.493] (II) RADEON(0): 
[    16.493] (II) RADEON(0): EDID (in hex):
[    16.493] (II) RADEON(0):     00ffffffffffff001aaa110201010101
[    16.493] (II) RADEON(0):     210d010381281e78eaec20a359489725
[    16.493] (II) RADEON(0):     105054a108008180a940010101010101
[    16.493] (II) RADEON(0):     010101010101483f403062b0324040c0
[    16.493] (II) RADEON(0):     130098321100001a000000fd0037471e
[    16.493] (II) RADEON(0):     4c11000a202020202020000000fc0056
[    16.493] (II) RADEON(0):     4c2d32303056480a20202020000000fe
[    16.493] (II) RADEON(0):     000a2020202020202020202020200021
[    16.493] (II) RADEON(0): Printing probed modes for output DVI-0
[    16.493] (II) RADEON(0): Modeline "1600x1200"x60.0  162.00  1600 1664 1856 2160  1200 1201 1204 1250 +hsync -vsync (75.0 kHz eP)
[    16.493] (II) RADEON(0): Modeline "1280x1024"x60.0  108.00  1280 1328 1440 1688  1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
[    16.493] (II) RADEON(0): Modeline "1024x768"x60.0   65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz e)
[    16.493] (II) RADEON(0): Modeline "800x600"x60.3   40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz e)
[    16.493] (II) RADEON(0): Modeline "640x480"x60.0   25.20  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz e)
[    16.493] (II) RADEON(0): Modeline "720x400"x70.1   28.32  720 738 846 900  400 412 414 449 -hsync +vsync (31.5 kHz e)
[    16.516] (II) RADEON(0): EDID for output VGA-0
[    16.516] (II) RADEON(0): Output HDMI-0 disconnected
[    16.516] (II) RADEON(0): Output DVI-0 connected
[    16.516] (II) RADEON(0): Output VGA-0 disconnected
[    16.516] (II) RADEON(0): Using exact sizes for initial modes
[    16.516] (II) RADEON(0): Output DVI-0 using initial mode 1600x1200
[    16.516] (II) RADEON(0): Using default gamma of (1.0, 1.0, 1.0) unless otherwise stated.
[    16.516] (II) RADEON(0): mem size init: gart size :1fdee000 vram size: s:40000000 visible:3f86d000
[    16.516] (II) RADEON(0): EXA: Driver will allow EXA pixmaps in VRAM
[    16.516] (==) RADEON(0): DPI set to (96, 96)
[    16.516] (II) Loading sub module "fb"
[    16.516] (II) LoadModule: "fb"
[    16.516] (II) Loading /usr/lib/xorg/modules/libfb.so
[    16.516] (II) Module fb: vendor="X.Org Foundation"
[    16.516]     compiled for 1.13.3, module version = 1.0.0
[    16.516]     ABI class: X.Org ANSI C Emulation, version 0.4
[    16.516] (II) Loading sub module "ramdac"
[    16.516] (II) LoadModule: "ramdac"
[    16.516] (II) Module "ramdac" already built-in
[    16.516] (II) UnloadModule: "vesa"
[    16.516] (II) Unloading vesa
[    16.516] (II) UnloadModule: "modesetting"
[    16.516] (II) Unloading modesetting
[    16.516] (II) UnloadModule: "fbdev"
[    16.516] (II) Unloading fbdev
[    16.517] (II) UnloadSubModule: "fbdevhw"
[    16.517] (II) Unloading fbdevhw
[    16.517] (--) Depth 24 pixmap format is 32 bpp
[    16.517] (II) RADEON(0): [DRI2] Setup complete
[    16.517] (II) RADEON(0): [DRI2]   DRI driver: r600
[    16.517] (II) RADEON(0): [DRI2]   VDPAU driver: r600
[    16.517] (II) RADEON(0): Front buffer size: 7600K
[    16.517] (II) RADEON(0): VRAM usage limit set to 929811K
[    16.517] (==) RADEON(0): Backing store disabled
[    16.517] (II) RADEON(0): Direct rendering enabled
[    16.517] (II) EXA(0): Driver allocated offscreen pixmaps
[    16.517] (II) EXA(0): Driver registered support for the following operations:
[    16.517] (II)         Solid
[    16.517] (II)         Copy
[    16.517] (II)         Composite (RENDER acceleration)
[    16.517] (II)         UploadToScreen
[    16.517] (II)         DownloadFromScreen
[    16.517] (II) RADEON(0): Acceleration enabled
[    16.517] (==) RADEON(0): DPMS enabled
[    16.517] (==) RADEON(0): Silken mouse enabled
[    16.517] (II) RADEON(0): Set up textured video
[    16.517] (II) RADEON(0): [XvMC] Associated with Radeon Textured Video.
[    16.517] (II) RADEON(0): [XvMC] Extension initialized.
[    16.517] (II) RADEON(0): RandR 1.2 enabled, ignore the following RandR disabled message.
[    16.517] (--) RandR disabled
[    16.524] (II) SELinux: Disabled on system
[    17.057] (II) AIGLX: enabled GLX_MESA_copy_sub_buffer
[    17.058] (II) AIGLX: enabled GLX_INTEL_swap_event
[    17.058] (II) AIGLX: enabled GLX_ARB_create_context
[    17.058] (II) AIGLX: enabled GLX_ARB_create_context_profile
[    17.058] (II) AIGLX: enabled GLX_EXT_create_context_es2_profile
[    17.058] (II) AIGLX: enabled GLX_SGI_swap_control and GLX_MESA_swap_control
[    17.058] (II) AIGLX: GLX_EXT_texture_from_pixmap backed by buffer objects
[    17.058] (II) AIGLX: Loaded and initialized r600
[    17.058] (II) GLX: Initialized DRI2 GL provider for screen 0
[    17.059] (II) RADEON(0): Setting screen physical size to 423 x 317
[    17.068] (II) XKB: reuse xkmfile /var/lib/xkb/server-B20D7FC79C7F597315E3E501AEF10E0D866E8E92.xkm
[    17.070] (II) config/udev: Adding input device Power Button (/dev/input/event1)
[    17.070] (**) Power Button: Applying InputClass "evdev keyboard catchall"
[    17.070] (II) LoadModule: "evdev"
[    17.071] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
[    17.116] (II) Module evdev: vendor="X.Org Foundation"
[    17.116]     compiled for 1.13.3, module version = 2.7.3
[    17.116]     Module class: X.Org XInput Driver
[    17.116]     ABI class: X.Org XInput driver, version 18.0
[    17.116] (II) Using input driver 'evdev' for 'Power Button'
[    17.116] (**) Power Button: always reports core events
[    17.116] (**) evdev: Power Button: Device: "/dev/input/event1"
[    17.116] (--) evdev: Power Button: Vendor 0 Product 0x1
[    17.116] (--) evdev: Power Button: Found keys
[    17.116] (II) evdev: Power Button: Configuring as keyboard
[    17.116] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input1/event1"
[    17.116] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
[    17.116] (**) Option "xkb_rules" "evdev"
[    17.116] (**) Option "xkb_model" "pc105"
[    17.116] (**) Option "xkb_layout" "jp"
[    17.120] (II) XKB: reuse xkmfile /var/lib/xkb/server-136F8830CC0B96C789D21368BFFFDDAD610C2926.xkm
[    17.120] (II) config/udev: Adding input device Power Button (/dev/input/event0)
[    17.120] (**) Power Button: Applying InputClass "evdev keyboard catchall"
[    17.120] (II) Using input driver 'evdev' for 'Power Button'
[    17.120] (**) Power Button: always reports core events
[    17.120] (**) evdev: Power Button: Device: "/dev/input/event0"
[    17.120] (--) evdev: Power Button: Vendor 0 Product 0x1
[    17.120] (--) evdev: Power Button: Found keys
[    17.120] (II) evdev: Power Button: Configuring as keyboard
[    17.121] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input0/event0"
[    17.121] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 7)
[    17.121] (**) Option "xkb_rules" "evdev"
[    17.121] (**) Option "xkb_model" "pc105"
[    17.121] (**) Option "xkb_layout" "jp"
[    17.121] (II) config/udev: Adding drm device (/dev/dri/card0) card0 /sys/devices/pci0000:00/0000:00:01.0/0000:01:00.0/drm/card0
[    17.121] (II) config/udev: Ignoring already known drm device (/dev/dri/card0)
[    17.121] (II) config/udev: Adding input device HD-Audio Generic HDMI/DP,pcm=3 (/dev/input/event13)
[    17.121] (II) No input driver specified, ignoring this device.
[    17.121] (II) This device may have been added with another device file.
[    17.121] (II) config/udev: Adding input device CHESEN USB Keyboard (/dev/input/event2)
[    17.121] (**) CHESEN USB Keyboard: Applying InputClass "evdev keyboard catchall"
[    17.121] (II) Using input driver 'evdev' for 'CHESEN USB Keyboard'
[    17.122] (**) CHESEN USB Keyboard: always reports core events
[    17.122] (**) evdev: CHESEN USB Keyboard: Device: "/dev/input/event2"
[    17.122] (--) evdev: CHESEN USB Keyboard: Vendor 0xa81 Product 0x101
[    17.122] (--) evdev: CHESEN USB Keyboard: Found keys
[    17.122] (II) evdev: CHESEN USB Keyboard: Configuring as keyboard
[    17.122] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1a.0/usb3/3-1/3-1:1.0/input/input2/event2"
[    17.122] (II) XINPUT: Adding extended input device "CHESEN USB Keyboard" (type: KEYBOARD, id 8)
[    17.122] (**) Option "xkb_rules" "evdev"
[    17.122] (**) Option "xkb_model" "pc105"
[    17.122] (**) Option "xkb_layout" "jp"
[    17.122] (II) config/udev: Adding input device CHESEN USB Keyboard (/dev/input/event3)
[    17.122] (**) CHESEN USB Keyboard: Applying InputClass "evdev keyboard catchall"
[    17.122] (II) Using input driver 'evdev' for 'CHESEN USB Keyboard'
[    17.122] (**) CHESEN USB Keyboard: always reports core events
[    17.122] (**) evdev: CHESEN USB Keyboard: Device: "/dev/input/event3"
[    17.122] (--) evdev: CHESEN USB Keyboard: Vendor 0xa81 Product 0x101
[    17.122] (--) evdev: CHESEN USB Keyboard: Found keys
[    17.122] (II) evdev: CHESEN USB Keyboard: Configuring as keyboard
[    17.122] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1a.0/usb3/3-1/3-1:1.1/input/input3/event3"
[    17.122] (II) XINPUT: Adding extended input device "CHESEN USB Keyboard" (type: KEYBOARD, id 9)
[    17.122] (**) Option "xkb_rules" "evdev"
[    17.122] (**) Option "xkb_model" "pc105"
[    17.122] (**) Option "xkb_layout" "jp"
[    17.123] (II) config/udev: Adding input device HDA Intel Line (/dev/input/event10)
[    17.123] (II) No input driver specified, ignoring this device.
[    17.123] (II) This device may have been added with another device file.
[    17.123] (II) config/udev: Adding input device HDA Intel Front Mic (/dev/input/event11)
[    17.123] (II) No input driver specified, ignoring this device.
[    17.123] (II) This device may have been added with another device file.
[    17.123] (II) config/udev: Adding input device HDA Intel Rear Mic (/dev/input/event12)
[    17.123] (II) No input driver specified, ignoring this device.
[    17.123] (II) This device may have been added with another device file.
[    17.123] (II) config/udev: Adding input device HDA Intel Front Headphone (/dev/input/event5)
[    17.123] (II) No input driver specified, ignoring this device.
[    17.123] (II) This device may have been added with another device file.
[    17.124] (II) config/udev: Adding input device HDA Intel Line Out Side (/dev/input/event6)
[    17.124] (II) No input driver specified, ignoring this device.
[    17.124] (II) This device may have been added with another device file.
[    17.124] (II) config/udev: Adding input device HDA Intel Line Out CLFE (/dev/input/event7)
[    17.124] (II) No input driver specified, ignoring this device.
[    17.124] (II) This device may have been added with another device file.
[    17.124] (II) config/udev: Adding input device HDA Intel Line Out Surround (/dev/input/event8)
[    17.124] (II) No input driver specified, ignoring this device.
[    17.124] (II) This device may have been added with another device file.
[    17.124] (II) config/udev: Adding input device HDA Intel Line Out Front (/dev/input/event9)
[    17.124] (II) No input driver specified, ignoring this device.
[    17.124] (II) This device may have been added with another device file.
[    17.125] (II) config/udev: Adding input device USB Optical Mouse (/dev/input/event4)
[    17.125] (**) USB Optical Mouse: Applying InputClass "evdev pointer catchall"
[    17.125] (II) Using input driver 'evdev' for 'USB Optical Mouse'
[    17.125] (**) USB Optical Mouse: always reports core events
[    17.125] (**) evdev: USB Optical Mouse: Device: "/dev/input/event4"
[    17.125] (--) evdev: USB Optical Mouse: Vendor 0x1bcf Product 0x7
[    17.125] (--) evdev: USB Optical Mouse: Found 3 mouse buttons
[    17.125] (--) evdev: USB Optical Mouse: Found scroll wheel(s)
[    17.125] (--) evdev: USB Optical Mouse: Found relative axes
[    17.125] (--) evdev: USB Optical Mouse: Found x and y relative axes
[    17.125] (--) evdev: USB Optical Mouse: Found absolute axes
[    17.125] (II) evdev: USB Optical Mouse: Forcing absolute x/y axes to exist.
[    17.125] (II) evdev: USB Optical Mouse: Configuring as mouse
[    17.125] (II) evdev: USB Optical Mouse: Adding scrollwheel support
[    17.125] (**) evdev: USB Optical Mouse: YAxisMapping: buttons 4 and 5
[    17.125] (**) evdev: USB Optical Mouse: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
[    17.125] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1d.0/usb6/6-2/6-2:1.0/input/input4/event4"
[    17.125] (II) XINPUT: Adding extended input device "USB Optical Mouse" (type: MOUSE, id 10)
[    17.125] (II) evdev: USB Optical Mouse: initialized for relative axes.
[    17.125] (WW) evdev: USB Optical Mouse: ignoring absolute axes.
[    17.125] (**) USB Optical Mouse: (accel) keeping acceleration scheme 1
[    17.125] (**) USB Optical Mouse: (accel) acceleration profile 0
[    17.125] (**) USB Optical Mouse: (accel) acceleration factor: 2.000
[    17.125] (**) USB Optical Mouse: (accel) acceleration threshold: 4
[    17.125] (II) config/udev: Adding input device USB Optical Mouse (/dev/input/mouse0)
[    17.125] (II) No input driver specified, ignoring this device.
[    17.125] (II) This device may have been added with another device file.
[    18.718] (II) RADEON(0): EDID vendor "FUJ", prod id 529
[    18.718] (II) RADEON(0): Using EDID range info for horizontal sync
[    18.718] (II) RADEON(0): Using EDID range info for vertical refresh
[    18.718] (II) RADEON(0): Printing DDC gathered Modelines:
[    18.718] (II) RADEON(0): Modeline "1600x1200"x0.0  162.00  1600 1664 1856 2160  1200 1201 1204 1250 +hsync -vsync (75.0 kHz eP)
[    18.718] (II) RADEON(0): Modeline "800x600"x0.0   40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz e)
[    18.718] (II) RADEON(0): Modeline "640x480"x0.0   25.18  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz e)
[    18.718] (II) RADEON(0): Modeline "720x400"x0.0   28.32  720 738 846 900  400 412 414 449 -hsync +vsync (31.5 kHz e)
[    18.718] (II) RADEON(0): Modeline "1024x768"x0.0   65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz e)
[    18.718] (II) RADEON(0): Modeline "1280x1024"x0.0  108.00  1280 1328 1440 1688  1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
[    18.718] (II) RADEON(0): Modeline "1600x1200"x0.0  162.00  1600 1664 1856 2160  1200 1201 1204 1250 +hsync +vsync (75.0 kHz e)
[    19.835] (II) RADEON(0): EDID vendor "FUJ", prod id 529
[    19.835] (II) RADEON(0): Using hsync ranges from config file
[    19.835] (II) RADEON(0): Using vrefresh ranges from config file
[    19.835] (II) RADEON(0): Printing DDC gathered Modelines:
[    19.835] (II) RADEON(0): Modeline "1600x1200"x0.0  162.00  1600 1664 1856 2160  1200 1201 1204 1250 +hsync -vsync (75.0 kHz eP)
[    19.835] (II) RADEON(0): Modeline "800x600"x0.0   40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz e)
[    19.835] (II) RADEON(0): Modeline "640x480"x0.0   25.18  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz e)
[    19.835] (II) RADEON(0): Modeline "720x400"x0.0   28.32  720 738 846 900  400 412 414 449 -hsync +vsync (31.5 kHz e)
[    19.835] (II) RADEON(0): Modeline "1024x768"x0.0   65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz e)
[    19.835] (II) RADEON(0): Modeline "1280x1024"x0.0  108.00  1280 1328 1440 1688  1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
[    19.835] (II) RADEON(0): Modeline "1600x1200"x0.0  162.00  1600 1664 1856 2160  1200 1201 1204 1250 +hsync +vsync (75.0 kHz e)
[    28.699] (II) RADEON(0): EDID vendor "FUJ", prod id 529
[    28.699] (II) RADEON(0): Using hsync ranges from config file
[    28.699] (II) RADEON(0): Using vrefresh ranges from config file
[    28.699] (II) RADEON(0): Printing DDC gathered Modelines:
[    28.699] (II) RADEON(0): Modeline "1600x1200"x0.0  162.00  1600 1664 1856 2160  1200 1201 1204 1250 +hsync -vsync (75.0 kHz eP)
[    28.699] (II) RADEON(0): Modeline "800x600"x0.0   40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz e)
[    28.699] (II) RADEON(0): Modeline "640x480"x0.0   25.18  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz e)
[    28.699] (II) RADEON(0): Modeline "720x400"x0.0   28.32  720 738 846 900  400 412 414 449 -hsync +vsync (31.5 kHz e)
[    28.699] (II) RADEON(0): Modeline "1024x768"x0.0   65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz e)
[    28.699] (II) RADEON(0): Modeline "1280x1024"x0.0  108.00  1280 1328 1440 1688  1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
[    28.699] (II) RADEON(0): Modeline "1600x1200"x0.0  162.00  1600 1664 1856 2160  1200 1201 1204 1250 +hsync +vsync (75.0 kHz e)
[    29.773] (II) RADEON(0): EDID vendor "FUJ", prod id 529
[    29.773] (II) RADEON(0): Using hsync ranges from config file
[    29.773] (II) RADEON(0): Using vrefresh ranges from config file
[    29.773] (II) RADEON(0): Printing DDC gathered Modelines:
[    29.773] (II) RADEON(0): Modeline "1600x1200"x0.0  162.00  1600 1664 1856 2160  1200 1201 1204 1250 +hsync -vsync (75.0 kHz eP)
[    29.773] (II) RADEON(0): Modeline "800x600"x0.0   40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz e)
[    29.773] (II) RADEON(0): Modeline "640x480"x0.0   25.18  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz e)
[    29.773] (II) RADEON(0): Modeline "720x400"x0.0   28.32  720 738 846 900  400 412 414 449 -hsync +vsync (31.5 kHz e)
[    29.773] (II) RADEON(0): Modeline "1024x768"x0.0   65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz e)
[    29.773] (II) RADEON(0): Modeline "1280x1024"x0.0  108.00  1280 1328 1440 1688  1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
[    29.773] (II) RADEON(0): Modeline "1600x1200"x0.0  162.00  1600 1664 1856 2160  1200 1201 1204 1250 +hsync +vsync (75.0 kHz e)
[    34.853] (II) RADEON(0): EDID vendor "FUJ", prod id 529
[    34.853] (II) RADEON(0): Using hsync ranges from config file
[    34.853] (II) RADEON(0): Using vrefresh ranges from config file
[    34.853] (II) RADEON(0): Printing DDC gathered Modelines:
[    34.853] (II) RADEON(0): Modeline "1600x1200"x0.0  162.00  1600 1664 1856 2160  1200 1201 1204 1250 +hsync -vsync (75.0 kHz eP)
[    34.853] (II) RADEON(0): Modeline "800x600"x0.0   40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz e)
[    34.853] (II) RADEON(0): Modeline "640x480"x0.0   25.18  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz e)
[    34.853] (II) RADEON(0): Modeline "720x400"x0.0   28.32  720 738 846 900  400 412 414 449 -hsync +vsync (31.5 kHz e)
[    34.853] (II) RADEON(0): Modeline "1024x768"x0.0   65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz e)
[    34.853] (II) RADEON(0): Modeline "1280x1024"x0.0  108.00  1280 1328 1440 1688  1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
[    34.853] (II) RADEON(0): Modeline "1600x1200"x0.0  162.00  1600 1664 1856 2160  1200 1201 1204 1250 +hsync +vsync (75.0 kHz e)
[    40.925] (II) RADEON(0): EDID vendor "FUJ", prod id 529
[    40.925] (II) RADEON(0): Using hsync ranges from config file
[    40.925] (II) RADEON(0): Using vrefresh ranges from config file
[    40.925] (II) RADEON(0): Printing DDC gathered Modelines:
[    40.925] (II) RADEON(0): Modeline "1600x1200"x0.0  162.00  1600 1664 1856 2160  1200 1201 1204 1250 +hsync -vsync (75.0 kHz eP)
[    40.925] (II) RADEON(0): Modeline "800x600"x0.0   40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz e)
[    40.925] (II) RADEON(0): Modeline "640x480"x0.0   25.18  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz e)
[    40.925] (II) RADEON(0): Modeline "720x400"x0.0   28.32  720 738 846 900  400 412 414 449 -hsync +vsync (31.5 kHz e)
[    40.925] (II) RADEON(0): Modeline "1024x768"x0.0   65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz e)
[    40.925] (II) RADEON(0): Modeline "1280x1024"x0.0  108.00  1280 1328 1440 1688  1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
[    40.925] (II) RADEON(0): Modeline "1600x1200"x0.0  162.00  1600 1664 1856 2160  1200 1201 1204 1250 +hsync +vsync (75.0 kHz e)
[    44.318] (II) XKB: reuse xkmfile /var/lib/xkb/server-77FFB5C176442A9A604C45C0FFCF1C672516838D.xkm
[    54.989] (II) RADEON(0): EDID vendor "FUJ", prod id 529
[    54.989] (II) RADEON(0): Using hsync ranges from config file
[    54.989] (II) RADEON(0): Using vrefresh ranges from config file
[    54.989] (II) RADEON(0): Printing DDC gathered Modelines:
[    54.989] (II) RADEON(0): Modeline "1600x1200"x0.0  162.00  1600 1664 1856 2160  1200 1201 1204 1250 +hsync -vsync (75.0 kHz eP)
[    54.989] (II) RADEON(0): Modeline "800x600"x0.0   40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz e)
[    54.989] (II) RADEON(0): Modeline "640x480"x0.0   25.18  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz e)
[    54.989] (II) RADEON(0): Modeline "720x400"x0.0   28.32  720 738 846 900  400 412 414 449 -hsync +vsync (31.5 kHz e)
[    54.989] (II) RADEON(0): Modeline "1024x768"x0.0   65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz e)
[    54.989] (II) RADEON(0): Modeline "1280x1024"x0.0  108.00  1280 1328 1440 1688  1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
[    54.989] (II) RADEON(0): Modeline "1600x1200"x0.0  162.00  1600 1664 1856 2160  1200 1201 1204 1250 +hsync +vsync (75.0 kHz e)
[   207.157] (II) RADEON(0): EDID vendor "FUJ", prod id 529
[   207.158] (II) RADEON(0): Using hsync ranges from config file
[   207.158] (II) RADEON(0): Using vrefresh ranges from config file
[   207.158] (II) RADEON(0): Printing DDC gathered Modelines:
[   207.158] (II) RADEON(0): Modeline "1600x1200"x0.0  162.00  1600 1664 1856 2160  1200 1201 1204 1250 +hsync -vsync (75.0 kHz eP)
[   207.158] (II) RADEON(0): Modeline "800x600"x0.0   40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz e)
[   207.158] (II) RADEON(0): Modeline "640x480"x0.0   25.18  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz e)
[   207.158] (II) RADEON(0): Modeline "720x400"x0.0   28.32  720 738 846 900  400 412 414 449 -hsync +vsync (31.5 kHz e)
[   207.158] (II) RADEON(0): Modeline "1024x768"x0.0   65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz e)
[   207.158] (II) RADEON(0): Modeline "1280x1024"x0.0  108.00  1280 1328 1440 1688  1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
[   207.158] (II) RADEON(0): Modeline "1600x1200"x0.0  162.00  1600 1664 1856 2160  1200 1201 1204 1250 +hsync +vsync (75.0 kHz e)
[  4029.610] (II) RADEON(0): EDID vendor "FUJ", prod id 529
[  4029.610] (II) RADEON(0): Using hsync ranges from config file
[  4029.610] (II) RADEON(0): Using vrefresh ranges from config file
[  4029.610] (II) RADEON(0): Printing DDC gathered Modelines:
[  4029.610] (II) RADEON(0): Modeline "1600x1200"x0.0  162.00  1600 1664 1856 2160  1200 1201 1204 1250 +hsync -vsync (75.0 kHz eP)
[  4029.610] (II) RADEON(0): Modeline "800x600"x0.0   40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz e)
[  4029.610] (II) RADEON(0): Modeline "640x480"x0.0   25.18  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz e)
[  4029.610] (II) RADEON(0): Modeline "720x400"x0.0   28.32  720 738 846 900  400 412 414 449 -hsync +vsync (31.5 kHz e)
[  4029.610] (II) RADEON(0): Modeline "1024x768"x0.0   65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz e)
[  4029.611] (II) RADEON(0): Modeline "1280x1024"x0.0  108.00  1280 1328 1440 1688  1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
[  4029.611] (II) RADEON(0): Modeline "1600x1200"x0.0  162.00  1600 1664 1856 2160  1200 1201 1204 1250 +hsync +vsync (75.0 kHz e)
[  4563.705] (II) RADEON(0): EDID vendor "FUJ", prod id 529
[  4563.705] (II) RADEON(0): Using hsync ranges from config file
[  4563.705] (II) RADEON(0): Using vrefresh ranges from config file
[  4563.705] (II) RADEON(0): Printing DDC gathered Modelines:
[  4563.705] (II) RADEON(0): Modeline "1600x1200"x0.0  162.00  1600 1664 1856 2160  1200 1201 1204 1250 +hsync -vsync (75.0 kHz eP)
[  4563.705] (II) RADEON(0): Modeline "800x600"x0.0   40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz e)
[  4563.705] (II) RADEON(0): Modeline "640x480"x0.0   25.18  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz e)
[  4563.705] (II) RADEON(0): Modeline "720x400"x0.0   28.32  720 738 846 900  400 412 414 449 -hsync +vsync (31.5 kHz e)
[  4563.705] (II) RADEON(0): Modeline "1024x768"x0.0   65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz e)
[  4563.705] (II) RADEON(0): Modeline "1280x1024"x0.0  108.00  1280 1328 1440 1688  1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
[  4563.705] (II) RADEON(0): Modeline "1600x1200"x0.0  162.00  1600 1664 1856 2160  1200 1201 1204 1250 +hsync +vsync (75.0 kHz e)
satoshi@satoshi-EP35-DS3R:~$

オフライン

 

#4 2013-07-08 03:08:40

miraihack
メンバ
From: 東京都千代田区
登録日: 2011-10-09

Re: winXPとUbuntu Ver13.デュアルブートについて

こんにちは。キーボードはUSBキーボードをお使いでしょうか?

起動画面(GRUB)でキーボードを認識しない件は以下の記事が参考になるかと思います。
https://forums.ubuntulinux.jp/viewtopic.php?id=6782

また以下のURLも参考になります。
http://fumixlog.blogspot.jp/2009/09/grub.html

BIOSの中で
Legacy USB Supportを有効 または、
[Features Setup]→[USB Function For DOS]を「Enable」などの項目がないでしょうか。

BIOSの種類によって名称が異なりますので、機種名を教えて頂ければと思います。

オフライン

 

#5 2013-07-08 06:08:27

初心者z
新しいメンバ
登録日: 2013-07-07

Re: winXPとUbuntu Ver13.デュアルブートについて

無事解決致しました。

ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー
BIOSの中で
Legacy USB Supportを有効 または、
[Features Setup]→[USB Function For DOS]を「Enable」などの項目がないでしょうか。
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー

BIOSの設定でキーボード及びwindowsが利用出きるようになりました。


ご指導頂きました

utora様

miraihak様

感謝及びお礼申し上げます。
有難うございました。

オフライン

 

Board footer

Powered by FluxBB