
Ubuntu日本語フォーラム

ログインしていません。
この前富士通の FMV-6866NU にxubuntu 9.04 デスクトップ版をインストールし
解像度を変更しようとしたのですが640x480しか選択できません(これしか選択肢がありません)
過去スレを見て色々やってみましたがうまくいきません
初心者なので詳しく教えていただけないでしょうか、よろしくお願いします
仕様
FMV-6866NU
メモリ:256MB (Winでは256MBと表示されましたが、メモリチェックでは254MBでした
ubuntu wubiでは"インストールには256MB以上必要"と言う旨のメッセージが表示されました)
グラフィック:Intelintel(R) 830MGチップセット?
富士通 仕様ページ
http://www.fmworld.net/biz/fmv/product/hard/blb0110/spec_nu.html
オフライン
wi_dakota さん、こんにちは。
いくらか古いマシンなので、ビデオメモリが足りないせいかも知れません。
下記のように、xorg.conf に変更を加えて試してみてください。
まず、xorg.conf をバックアップします。
sudo cp /etc/X11/xorg.conf /etc/X11/xorg.conf.orig
このあと、エディタで xorg.conf を開いて下記のように変更します。
sudo gedit /etc/X11/xorg.conf
xorg.conf が開いたら、Section "Screen" という行を探して下記のように追記します。
Section "Screen"
Identifier "Default Screen"
Monitor "Configured Monitor"
Device "Configured Video Device"
SubSection "Display" #<- この行を追加
Depth 16 #<- この行を追加
Modes "1024x768" #<- この行を追加
EndSubSection #<- この行を追加
EndSection
これで、システム -> 設定 -> ディスプレイから、1024x768 を選択出来るようになる(はず)です。
xorg.conf に記述しただけではシステムに反映されないので、一端ログアウト & 再ログインしてください。
もし再ログインでダメなら、一度システムを再起動してみてください。
これでダメなら、どのようにダメか挙動を教えてください。
オフライン
petitbootangさんの方法でやってみましたが
システム -> 設定 -> ディスプレイで1024x768を選択できませんでした(表示されませんでした)
オフライン
最近のLinuxではxorg.confをいじらない方向の様ですね。いじっても、設定に反映しない。
「システム」→「設定」→「ディスプレイ」で解像度を変更できなかったら、xrandrを使用してみたらいかがでしょう。
手元の環境だと
~$ xrandr Screen 0: minimum 640 x 400, current 1280 x 1024, maximum 1280 x 1024 default connected 1280x1024+0+0 0mm x 0mm 1280x1024 60.0* 75.0 1280x960 60.0 1152x864 75.0 70.0 60.0 1024x768 75.0 70.0 60.0 832x624 75.0 800x600 75.0 72.0 60.0 56.0 640x480 75.0 73.0 67.0 60.0 720x400 70.0
と言う表示になります。
wi_dakotaさんのご希望だと
~$ xrandr -s 1024x768 # "x" はアルファベットのエックス
とすると、表示領域が変更できるはずです。
オフライン
ダメでした
~$ xrandr
Screen 0: minimum 640 x 480, current 640 x 480, maximum 640 x 480
default connected 640x480+0+0 0mm x 0mm
640x480 60.0*
~$ xrandr -s 1024x768
Size 1024x768 not found in available modes
となり変化がありませんでした
このPCでは変更できないという事もあるのでしょうか?
オフライン
取り敢えず、#3 の Depth の値を 8 にしてみた場合どうでしょう?
それで、ダメな場合、下記を順番に試してみてください。
https://forums.ubuntulinux.jp/viewtopic.php?pid=34699#p34699
https://forums.ubuntulinux.jp/viewtopic.php?pid=34735#p34735
https://forums.ubuntulinux.jp/viewtopic.php?pid=34736#p34736
このどれかで上手くいくと良いのですが・・・。
オフライン
# お昼の餃子がかほる・・・
wi_dakotaさん による投稿:
~$ xrandr
Screen 0: minimum 640 x 480, current 640 x 480, maximum 640 x 480
default connected 640x480+0+0 0mm x 0mm
640x480 60.0*
~$ xrandr -s 1024x768
Size 1024x768 not found in available modes
i830なのでxserver-xorg-video-intel で対応しているはずです。
現状、ドライバが正常に認識(もしくはインストール)されていないような感じですね。
$ sudo apt-cache xserver-xorg-video-intel
として、
Package: xserver-xorg-video-intel
と言う文字列が返ってこないようなら、xserver-xorg-video-intelをインストールしてみてください。
現象回避しない時は、xrandrを再試行した結果を張り付けてください。
オフライン
#8試しましたがダメでした
Section "Module"の追記は変化なし
DefaultDepthとDepthそれぞれ8・16で試しましたが
DefaultDepthを追記し起動したら
途中から黒い画面のままでしばらくしても表示されませんでした
(guiでログインもできません)
#9の結果は
~$ sudo apt-cache xserver-xorg-video-intel
E: 不正な操作 xserver-xorg-video-intel
となりました
ただしSynapticで見たところxserver-xorg-video-intelはインストールされていて
再インストール後、再起動しましたが変化がありませんでした
~$ xrandr
Screen 0: minimum 640 x 480, current 640 x 480, maximum 640 x 480
default connected 640x480+0+0 0mm x 0mm
640x480 60.0*
これも前回と同じ結果のようです
オフライン
ドライバに関しては、起動時のXのログとロードされているモジュールを
ぼ ~っと眺めれば 何かわかるかも。(うーん、分かんないかも)
xorg.0.logの内容と
$ lsmod
の結果を下さい。
オフライン
上部パネル、システムからログビューアです。コピペ出来たかな?出来なかったら端末から
$ sudo gedit /var/log/xorg.0.log
オフライン
hir0 による投稿:
上部パネル、システムからログビューアです。コピペ出来たかな?出来なかったら端末から
$ sudo gedit /var/log/xorg.0.log
/var/log/Xorg.0.log だし、コピペするつもりで見るだけなら sudo つけてエディタで起動しちゃマズいっすよ。
オフライン
すいません、そう言う気配りが全くダメダメです。
$ sudo gedit は実行しないで下さい。
間違って変更、保存をしてしまうと適用されてしまいます。
sudo を外すと変更は権限が無いため適用されません。
n_saitoさん、ご指摘ありがとう御座います。
オフライン
念の為、アプリケーション->アクセサリ->端末を起動し、
lspci | grep -i vga
と打ち込んだときの出力を投稿して下さい。これとXorg.0.logをあわせればなんとなくあたりはつくような気がします。
また、BIOS設定画面の方でVIDEO MEMORY(か、なにか、そのような項目)の設定値を確認してみてください。できれば4M程度は欲しいところです。もし、BIOS設定画面の呼び出し方が判らなければ、PCを再起動して、すかさず、F2を連打してみてください。ちょっとググってみた感じでは、これでBIOS設定が起動できそうです。
オフライン
失礼、外出していたため遅くなりました
Xorg.0.logは
X.Org X Server 1.6.0
Release Date: 2009-2-25
X Protocol Version 11, Revision 0
Build Operating System: Linux 2.6.24-23-server i686 Ubuntu
Current Operating System: Linux FMV-6866NU 2.6.28-15-generic #49-Ubuntu SMP Tue Aug 18 18:40:08 UTC 2009 i686
Build Date: 09 April 2009 02:10:02AM
xorg-server 2:1.6.0-0ubuntu14 ([email protected])
Before reporting problems, check http://wiki.x.org
to make sure that you have the latest version.
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/Xorg.0.log", Time: Tue Aug 25 17:09:47 2009
(==) Using config file: "/etc/X11/xorg.conf"
(==) No Layout section. Using the first Screen section.
(**) |-->Screen "Default Screen" (0)
(**) | |-->Monitor "Configured Monitor"
(**) | |-->Device "Configured Video Device"
(==) Automatically adding devices
(==) Automatically enabling devices
(WW) The directory "/usr/share/fonts/X11/cyrillic" does not exist.
Entry deleted from font path.
(==) FontPath set to:
/usr/share/fonts/X11/misc,
/usr/share/fonts/X11/100dpi/:unscaled,
/usr/share/fonts/X11/75dpi/:unscaled,
/usr/share/fonts/X11/Type1,
/usr/share/fonts/X11/100dpi,
/usr/share/fonts/X11/75dpi,
/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType,
built-ins
(==) ModulePath set to "/usr/lib/xorg/modules"
(II) Cannot locate a core pointer device.
(II) Cannot locate a core keyboard device.
(II) The server relies on HAL to provide the list of input devices.
If no devices become available, reconfigure HAL or disable AllowEmptyInput.
(II) Loader magic: 0x3bc0
(II) Module ABI versions:
X.Org ANSI C Emulation: 0.4
X.Org Video Driver: 5.0
X.Org XInput driver : 4.0
X.Org Server Extension : 2.0
(II) Loader running on linux
(++) using VT number 7
(--) PCI:*(0@0:2:0) Intel Corporation 82830 CGC [Chipset Graphics Controller] rev 3, Mem @ 0xe8000000/134217728, 0xe0080000/524288
(II) Open ACPI successful (/var/run/acpid.socket)
(II) System resource ranges:
[0] -1 0 0xffffffff - 0xffffffff (0x1) MX[b]
[1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
[2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
[3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
[4] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
[5] -1 0 0x00000000 - 0x00000000 (0x1) IX[b]
(II) LoadModule: "extmod"
(II) Loading /usr/lib/xorg/modules/extensions//libextmod.so
(II) Module extmod: vendor="X.Org Foundation"
compiled for 1.6.0, module version = 1.0.0
Module class: X.Org Server Extension
ABI class: X.Org Server Extension, version 2.0
(II) Loading extension MIT-SCREEN-SAVER
(II) Loading extension XFree86-VidModeExtension
(II) Loading extension XFree86-DGA
(II) Loading extension DPMS
(II) Loading extension XVideo
(II) Loading extension XVideo-MotionCompensation
(II) Loading extension X-Resource
(II) LoadModule: "dbe"
(II) Loading /usr/lib/xorg/modules/extensions//libdbe.so
(II) Module dbe: vendor="X.Org Foundation"
compiled for 1.6.0, module version = 1.0.0
Module class: X.Org Server Extension
ABI class: X.Org Server Extension, version 2.0
(II) Loading extension DOUBLE-BUFFER
(II) LoadModule: "glx"
(II) Loading /usr/lib/xorg/modules/extensions//libglx.so
(II) Module glx: vendor="X.Org Foundation"
compiled for 1.6.0, module version = 1.0.0
ABI class: X.Org Server Extension, version 2.0
(==) AIGLX enabled
(II) Loading extension GLX
(II) LoadModule: "record"
(II) Loading /usr/lib/xorg/modules/extensions//librecord.so
(II) Module record: vendor="X.Org Foundation"
compiled for 1.6.0, module version = 1.13.0
Module class: X.Org Server Extension
ABI class: X.Org Server Extension, version 2.0
(II) Loading extension RECORD
(II) LoadModule: "dri"
(II) Loading /usr/lib/xorg/modules/extensions//libdri.so
(II) Module dri: vendor="X.Org Foundation"
compiled for 1.6.0, module version = 1.0.0
ABI class: X.Org Server Extension, version 2.0
(II) Loading extension XFree86-DRI
(II) LoadModule: "dri2"
(II) Loading /usr/lib/xorg/modules/extensions//libdri2.so
(II) Module dri2: vendor="X.Org Foundation"
compiled for 1.6.0, module version = 1.0.0
ABI class: X.Org Server Extension, version 2.0
(II) Loading extension DRI2
(II) LoadModule: "vesa"
(II) Loading /usr/lib/xorg/modules/drivers//vesa_drv.so
(II) Module vesa: vendor="X.Org Foundation"
compiled for 1.5.99.902, module version = 1.3.0
Module class: X.Org Video Driver
ABI class: X.Org Video Driver, version 5.0
(II) VESA: driver for VESA chipsets: vesa
(II) Primary Device is: PCI 00@00:02:0
(II) resource ranges after probing:
[0] -1 0 0xffffffff - 0xffffffff (0x1) MX[b]
[1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
[2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
[3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
[4] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
[5] -1 0 0x00000000 - 0x00000000 (0x1) IX[b]
(II) Loading sub module "vbe"
(II) LoadModule: "vbe"
(II) Loading /usr/lib/xorg/modules//libvbe.so
(II) Module vbe: vendor="X.Org Foundation"
compiled for 1.6.0, module version = 1.1.0
ABI class: X.Org Video Driver, version 5.0
(II) Loading sub module "int10"
(II) LoadModule: "int10"
(II) Loading /usr/lib/xorg/modules//libint10.so
(II) Module int10: vendor="X.Org Foundation"
compiled for 1.6.0, module version = 1.0.0
ABI class: X.Org Video Driver, version 5.0
(II) VESA(0): initializing int10
(II) VESA(0): Bad V_BIOS checksum
(II) VESA(0): Primary V_BIOS segment is: 0xc000
(II) VESA(0): VESA BIOS detected
(II) VESA(0): VESA VBE Version 3.0
(II) VESA(0): VESA VBE Total Mem: 832 kB
(II) VESA(0): VESA VBE OEM: Almador Graphics Chip Accelerated VGA BIOS
(II) VESA(0): VESA VBE OEM Software Rev: 1.0
(II) VESA(0): VESA VBE OEM Vendor: Intel Corporation
(II) VESA(0): VESA VBE OEM Product: Almador Graphics Controller
(II) VESA(0): VESA VBE OEM Product Rev: Hardware Version 0.0
(==) VESA(0): Depth 16, (--) framebuffer bpp 16
(==) VESA(0): RGB weight 565
(==) VESA(0): Default visual is TrueColor
(==) VESA(0): Using gamma correction (1.0, 1.0, 1.0)
(II) Loading sub module "ddc"
(II) LoadModule: "ddc"
(II) Module "ddc" already built-in
(II) VESA(0): VESA VBE DDC supported
(II) VESA(0): VESA VBE DDC Level none
(II) VESA(0): VESA VBE DDC transfer in appr. 0 sec.
(II) VESA(0): VESA VBE DDC read failed
(II) VESA(0): Searching for matching VESA mode(s):
Mode: 107 (1280x1024)
ModeAttributes: 0x9a
WinAAttributes: 0x7
WinBAttributes: 0x0
WinGranularity: 64
WinSize: 64
WinASegment: 0xa000
WinBSegment: 0x0
WinFuncPtr: 0xc00060c5
BytesPerScanline: 1280
XResolution: 1280
YResolution: 1024
XCharSize: 8
YCharSize: 16
NumberOfPlanes: 1
BitsPerPixel: 8
NumberOfBanks: 1
MemoryModel: 4
BankSize: 0
NumberOfImages: 0
RedMaskSize: 0
RedFieldPosition: 0
GreenMaskSize: 0
GreenFieldPosition: 0
BlueMaskSize: 0
BlueFieldPosition: 0
RsvdMaskSize: 0
RsvdFieldPosition: 0
DirectColorModeInfo: 0
PhysBasePtr: 0xe8000000
LinBytesPerScanLine: 1280
BnkNumberOfImagePages: 0
LinNumberOfImagePages: 0
LinRedMaskSize: 0
LinRedFieldPosition: 0
LinGreenMaskSize: 0
LinGreenFieldPosition: 0
LinBlueMaskSize: 0
LinBlueFieldPosition: 0
LinRsvdMaskSize: 0
LinRsvdFieldPosition: 0
MaxPixelClock: 230000000
Mode: 112 (640x480)
ModeAttributes: 0x9a
WinAAttributes: 0x7
WinBAttributes: 0x0
WinGranularity: 64
WinSize: 64
WinASegment: 0xa000
WinBSegment: 0x0
WinFuncPtr: 0xc00060c5
BytesPerScanline: 2560
XResolution: 640
YResolution: 480
XCharSize: 8
YCharSize: 16
NumberOfPlanes: 1
BitsPerPixel: 32
NumberOfBanks: 1
MemoryModel: 6
BankSize: 0
NumberOfImages: 0
RedMaskSize: 8
RedFieldPosition: 16
GreenMaskSize: 8
GreenFieldPosition: 8
BlueMaskSize: 8
BlueFieldPosition: 0
RsvdMaskSize: 8
RsvdFieldPosition: 24
DirectColorModeInfo: 0
PhysBasePtr: 0xe8000000
LinBytesPerScanLine: 2560
BnkNumberOfImagePages: 0
LinNumberOfImagePages: 0
LinRedMaskSize: 8
LinRedFieldPosition: 16
LinGreenMaskSize: 8
LinGreenFieldPosition: 8
LinBlueMaskSize: 8
LinBlueFieldPosition: 0
LinRsvdMaskSize: 8
LinRsvdFieldPosition: 24
MaxPixelClock: 230000000
Mode: 115 (800x600)
ModeAttributes: 0x9a
WinAAttributes: 0x7
WinBAttributes: 0x0
WinGranularity: 64
WinSize: 64
WinASegment: 0xa000
WinBSegment: 0x0
WinFuncPtr: 0xc00060c5
BytesPerScanline: 3200
XResolution: 800
YResolution: 600
XCharSize: 8
YCharSize: 16
NumberOfPlanes: 1
BitsPerPixel: 32
NumberOfBanks: 1
MemoryModel: 6
BankSize: 0
NumberOfImages: 0
RedMaskSize: 8
RedFieldPosition: 16
GreenMaskSize: 8
GreenFieldPosition: 8
BlueMaskSize: 8
BlueFieldPosition: 0
RsvdMaskSize: 8
RsvdFieldPosition: 24
DirectColorModeInfo: 0
PhysBasePtr: 0xe8000000
LinBytesPerScanLine: 3200
BnkNumberOfImagePages: 0
LinNumberOfImagePages: 0
LinRedMaskSize: 8
LinRedFieldPosition: 16
LinGreenMaskSize: 8
LinGreenFieldPosition: 8
LinBlueMaskSize: 8
LinBlueFieldPosition: 0
LinRsvdMaskSize: 8
LinRsvdFieldPosition: 24
MaxPixelClock: 230000000
Mode: 116 (1024x768)
ModeAttributes: 0x9a
WinAAttributes: 0x7
WinBAttributes: 0x0
WinGranularity: 64
WinSize: 64
WinASegment: 0xa000
WinBSegment: 0x0
WinFuncPtr: 0xc00060c5
BytesPerScanline: 2048
XResolution: 1024
YResolution: 768
XCharSize: 8
YCharSize: 16
NumberOfPlanes: 1
BitsPerPixel: 15
NumberOfBanks: 1
MemoryModel: 6
BankSize: 0
NumberOfImages: 0
RedMaskSize: 5
RedFieldPosition: 10
GreenMaskSize: 5
GreenFieldPosition: 5
BlueMaskSize: 5
BlueFieldPosition: 0
RsvdMaskSize: 0
RsvdFieldPosition: 0
DirectColorModeInfo: 0
PhysBasePtr: 0xe8000000
LinBytesPerScanLine: 2048
BnkNumberOfImagePages: 0
LinNumberOfImagePages: 0
LinRedMaskSize: 5
LinRedFieldPosition: 10
LinGreenMaskSize: 5
LinGreenFieldPosition: 5
LinBlueMaskSize: 5
LinBlueFieldPosition: 0
LinRsvdMaskSize: 0
LinRsvdFieldPosition: 0
MaxPixelClock: 230000000
Mode: 117 (1024x768)
ModeAttributes: 0x9a
WinAAttributes: 0x7
WinBAttributes: 0x0
WinGranularity: 64
WinSize: 64
WinASegment: 0xa000
WinBSegment: 0x0
WinFuncPtr: 0xc00060c5
BytesPerScanline: 2048
XResolution: 1024
YResolution: 768
XCharSize: 8
YCharSize: 16
NumberOfPlanes: 1
BitsPerPixel: 16
NumberOfBanks: 1
MemoryModel: 6
BankSize: 0
NumberOfImages: 0
RedMaskSize: 5
RedFieldPosition: 11
GreenMaskSize: 6
GreenFieldPosition: 5
BlueMaskSize: 5
BlueFieldPosition: 0
RsvdMaskSize: 0
RsvdFieldPosition: 0
DirectColorModeInfo: 0
PhysBasePtr: 0xe8000000
LinBytesPerScanLine: 2048
BnkNumberOfImagePages: 0
LinNumberOfImagePages: 0
LinRedMaskSize: 5
LinRedFieldPosition: 11
LinGreenMaskSize: 6
LinGreenFieldPosition: 5
LinBlueMaskSize: 5
LinBlueFieldPosition: 0
LinRsvdMaskSize: 0
LinRsvdFieldPosition: 0
MaxPixelClock: 230000000
Mode: 118 (1024x768)
ModeAttributes: 0x9a
WinAAttributes: 0x7
WinBAttributes: 0x0
WinGranularity: 64
WinSize: 64
WinASegment: 0xa000
WinBSegment: 0x0
WinFuncPtr: 0xc00060c5
BytesPerScanline: 4096
XResolution: 1024
YResolution: 768
XCharSize: 8
YCharSize: 16
NumberOfPlanes: 1
BitsPerPixel: 32
NumberOfBanks: 1
MemoryModel: 6
BankSize: 0
NumberOfImages: 0
RedMaskSize: 8
RedFieldPosition: 16
GreenMaskSize: 8
GreenFieldPosition: 8
BlueMaskSize: 8
BlueFieldPosition: 0
RsvdMaskSize: 8
RsvdFieldPosition: 24
DirectColorModeInfo: 0
PhysBasePtr: 0xe8000000
LinBytesPerScanLine: 4096
BnkNumberOfImagePages: 0
LinNumberOfImagePages: 0
LinRedMaskSize: 8
LinRedFieldPosition: 16
LinGreenMaskSize: 8
LinGreenFieldPosition: 8
LinBlueMaskSize: 8
LinBlueFieldPosition: 0
LinRsvdMaskSize: 8
LinRsvdFieldPosition: 24
MaxPixelClock: 230000000
Mode: 11a (1280x1024)
ModeAttributes: 0x9a
WinAAttributes: 0x7
WinBAttributes: 0x0
WinGranularity: 64
WinSize: 64
WinASegment: 0xa000
WinBSegment: 0x0
WinFuncPtr: 0xc00060c5
BytesPerScanline: 2560
XResolution: 1280
YResolution: 1024
XCharSize: 8
YCharSize: 16
NumberOfPlanes: 1
BitsPerPixel: 16
NumberOfBanks: 1
MemoryModel: 6
BankSize: 0
NumberOfImages: 0
RedMaskSize: 5
RedFieldPosition: 11
GreenMaskSize: 6
GreenFieldPosition: 5
BlueMaskSize: 5
BlueFieldPosition: 0
RsvdMaskSize: 0
RsvdFieldPosition: 0
DirectColorModeInfo: 0
PhysBasePtr: 0xe8000000
LinBytesPerScanLine: 2560
BnkNumberOfImagePages: 0
LinNumberOfImagePages: 0
LinRedMaskSize: 5
LinRedFieldPosition: 11
LinGreenMaskSize: 6
LinGreenFieldPosition: 5
LinBlueMaskSize: 5
LinBlueFieldPosition: 0
LinRsvdMaskSize: 0
LinRsvdFieldPosition: 0
MaxPixelClock: 230000000
Mode: 11b (1280x1024)
ModeAttributes: 0x9a
WinAAttributes: 0x7
WinBAttributes: 0x0
WinGranularity: 64
WinSize: 64
WinASegment: 0xa000
WinBSegment: 0x0
WinFuncPtr: 0xc00060c5
BytesPerScanline: 5120
XResolution: 1280
YResolution: 1024
XCharSize: 8
YCharSize: 16
NumberOfPlanes: 1
BitsPerPixel: 32
NumberOfBanks: 1
MemoryModel: 6
BankSize: 0
NumberOfImages: 0
RedMaskSize: 8
RedFieldPosition: 16
GreenMaskSize: 8
GreenFieldPosition: 8
BlueMaskSize: 8
BlueFieldPosition: 0
RsvdMaskSize: 8
RsvdFieldPosition: 24
DirectColorModeInfo: 0
PhysBasePtr: 0xe8000000
LinBytesPerScanLine: 5120
BnkNumberOfImagePages: 0
LinNumberOfImagePages: 0
LinRedMaskSize: 8
LinRedFieldPosition: 16
LinGreenMaskSize: 8
LinGreenFieldPosition: 8
LinBlueMaskSize: 8
LinBlueFieldPosition: 0
LinRsvdMaskSize: 8
LinRsvdFieldPosition: 24
MaxPixelClock: 230000000
Mode: 101 (640x480)
ModeAttributes: 0x9b
WinAAttributes: 0x7
WinBAttributes: 0x0
WinGranularity: 64
WinSize: 64
WinASegment: 0xa000
WinBSegment: 0x0
WinFuncPtr: 0xc00060c5
BytesPerScanline: 640
XResolution: 640
YResolution: 480
XCharSize: 8
YCharSize: 16
NumberOfPlanes: 1
BitsPerPixel: 8
NumberOfBanks: 1
MemoryModel: 4
BankSize: 0
NumberOfImages: 1
RedMaskSize: 0
RedFieldPosition: 0
GreenMaskSize: 0
GreenFieldPosition: 0
BlueMaskSize: 0
BlueFieldPosition: 0
RsvdMaskSize: 0
RsvdFieldPosition: 0
DirectColorModeInfo: 0
PhysBasePtr: 0xe8000000
LinBytesPerScanLine: 640
BnkNumberOfImagePages: 1
LinNumberOfImagePages: 1
LinRedMaskSize: 0
LinRedFieldPosition: 0
LinGreenMaskSize: 0
LinGreenFieldPosition: 0
LinBlueMaskSize: 0
LinBlueFieldPosition: 0
LinRsvdMaskSize: 0
LinRsvdFieldPosition: 0
MaxPixelClock: 230000000
Mode: 103 (800x600)
ModeAttributes: 0x9b
WinAAttributes: 0x7
WinBAttributes: 0x0
WinGranularity: 64
WinSize: 64
WinASegment: 0xa000
WinBSegment: 0x0
WinFuncPtr: 0xc00060c5
BytesPerScanline: 800
XResolution: 800
YResolution: 600
XCharSize: 8
YCharSize: 16
NumberOfPlanes: 1
BitsPerPixel: 8
NumberOfBanks: 1
MemoryModel: 4
BankSize: 0
NumberOfImages: 0
RedMaskSize: 0
RedFieldPosition: 0
GreenMaskSize: 0
GreenFieldPosition: 0
BlueMaskSize: 0
BlueFieldPosition: 0
RsvdMaskSize: 0
RsvdFieldPosition: 0
DirectColorModeInfo: 0
PhysBasePtr: 0xe8000000
LinBytesPerScanLine: 800
BnkNumberOfImagePages: 0
LinNumberOfImagePages: 0
LinRedMaskSize: 0
LinRedFieldPosition: 0
LinGreenMaskSize: 0
LinGreenFieldPosition: 0
LinBlueMaskSize: 0
LinBlueFieldPosition: 0
LinRsvdMaskSize: 0
LinRsvdFieldPosition: 0
MaxPixelClock: 230000000
Mode: 105 (1024x768)
ModeAttributes: 0x9b
WinAAttributes: 0x7
WinBAttributes: 0x0
WinGranularity: 64
WinSize: 64
WinASegment: 0xa000
WinBSegment: 0x0
WinFuncPtr: 0xc00060c5
BytesPerScanline: 1024
XResolution: 1024
YResolution: 768
XCharSize: 8
YCharSize: 16
NumberOfPlanes: 1
BitsPerPixel: 8
NumberOfBanks: 1
MemoryModel: 4
BankSize: 0
NumberOfImages: 0
RedMaskSize: 0
RedFieldPosition: 0
GreenMaskSize: 0
GreenFieldPosition: 0
BlueMaskSize: 0
BlueFieldPosition: 0
RsvdMaskSize: 0
RsvdFieldPosition: 0
DirectColorModeInfo: 0
PhysBasePtr: 0xe8000000
LinBytesPerScanLine: 1024
BnkNumberOfImagePages: 0
LinNumberOfImagePages: 0
LinRedMaskSize: 0
LinRedFieldPosition: 0
LinGreenMaskSize: 0
LinGreenFieldPosition: 0
LinBlueMaskSize: 0
LinBlueFieldPosition: 0
LinRsvdMaskSize: 0
LinRsvdFieldPosition: 0
MaxPixelClock: 230000000
*Mode: 111 (640x480)
ModeAttributes: 0x9b
WinAAttributes: 0x7
WinBAttributes: 0x0
WinGranularity: 64
WinSize: 64
WinASegment: 0xa000
WinBSegment: 0x0
WinFuncPtr: 0xc00060c5
BytesPerScanline: 1280
XResolution: 640
YResolution: 480
XCharSize: 8
YCharSize: 16
NumberOfPlanes: 1
BitsPerPixel: 16
NumberOfBanks: 1
MemoryModel: 6
BankSize: 0
NumberOfImages: 0
RedMaskSize: 5
RedFieldPosition: 11
GreenMaskSize: 6
GreenFieldPosition: 5
BlueMaskSize: 5
BlueFieldPosition: 0
RsvdMaskSize: 0
RsvdFieldPosition: 0
DirectColorModeInfo: 0
PhysBasePtr: 0xe8000000
LinBytesPerScanLine: 1280
BnkNumberOfImagePages: 0
LinNumberOfImagePages: 0
LinRedMaskSize: 5
LinRedFieldPosition: 11
LinGreenMaskSize: 6
LinGreenFieldPosition: 5
LinBlueMaskSize: 5
LinBlueFieldPosition: 0
LinRsvdMaskSize: 0
LinRsvdFieldPosition: 0
MaxPixelClock: 230000000
Mode: 114 (800x600)
ModeAttributes: 0x9a
WinAAttributes: 0x7
WinBAttributes: 0x0
WinGranularity: 64
WinSize: 64
WinASegment: 0xa000
WinBSegment: 0x0
WinFuncPtr: 0xc00060c5
BytesPerScanline: 1600
XResolution: 800
YResolution: 600
XCharSize: 8
YCharSize: 16
NumberOfPlanes: 1
BitsPerPixel: 16
NumberOfBanks: 1
MemoryModel: 6
BankSize: 0
NumberOfImages: 0
RedMaskSize: 5
RedFieldPosition: 11
GreenMaskSize: 6
GreenFieldPosition: 5
BlueMaskSize: 5
BlueFieldPosition: 0
RsvdMaskSize: 0
RsvdFieldPosition: 0
DirectColorModeInfo: 0
PhysBasePtr: 0xe8000000
LinBytesPerScanLine: 1600
BnkNumberOfImagePages: 0
LinNumberOfImagePages: 0
LinRedMaskSize: 5
LinRedFieldPosition: 11
LinGreenMaskSize: 6
LinGreenFieldPosition: 5
LinBlueMaskSize: 5
LinBlueFieldPosition: 0
LinRsvdMaskSize: 0
LinRsvdFieldPosition: 0
MaxPixelClock: 230000000
(II) VESA(0): Total Memory: 13 64KB banks (832kB)
(II) VESA(0): Configured Monitor: Using default hsync range of 31.50-37.90 kHz
(II) VESA(0): Configured Monitor: Using default vrefresh range of 50.00-70.00 Hz
(II) VESA(0): Not using mode "1024x768" (no mode of this name)
(II) VESA(0): Not using built-in mode "640x480" (no mode of this name)
(WW) VESA(0): No valid modes left. Trying less strict filter...
(II) VESA(0): Configured Monitor: Using hsync range of 31.50-37.90 kHz
(II) VESA(0): Configured Monitor: Using vrefresh range of 50.00-70.00 Hz
(II) VESA(0): Not using mode "1024x768" (no mode of this name)
(--) VESA(0): Virtual size is 640x480 (pitch 640)
(**) VESA(0): Built-in mode "640x480"
(==) VESA(0): DPI set to (96, 96)
(II) VESA(0): Attempting to use 60Hz refresh for mode "640x480" (111)
(**) VESA(0): Using "Shadow Framebuffer"
(II) Loading sub module "shadow"
(II) LoadModule: "shadow"
(II) Loading /usr/lib/xorg/modules//libshadow.so
(II) Module shadow: vendor="X.Org Foundation"
compiled for 1.6.0, module version = 1.1.0
ABI class: X.Org ANSI C Emulation, version 0.4
(II) Loading sub module "fb"
(II) LoadModule: "fb"
(II) Loading /usr/lib/xorg/modules//libfb.so
(II) Module fb: vendor="X.Org Foundation"
compiled for 1.6.0, module version = 1.0.0
ABI class: X.Org ANSI C Emulation, version 0.4
(II) do I need RAC? No, I don't.
(II) resource ranges after preInit:
[0] -1 0 0xffffffff - 0xffffffff (0x1) MX[b]
[1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
[2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
[3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
[4] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
[5] -1 0 0x00000000 - 0x00000000 (0x1) IX[b]
(II) Loading sub module "int10"
(II) LoadModule: "int10"
(II) Reloading /usr/lib/xorg/modules//libint10.so
(II) VESA(0): initializing int10
(II) VESA(0): Bad V_BIOS checksum
(II) VESA(0): Primary V_BIOS segment is: 0xc000
(II) VESA(0): VESA BIOS detected
(II) VESA(0): VESA VBE Version 3.0
(II) VESA(0): VESA VBE Total Mem: 832 kB
(II) VESA(0): VESA VBE OEM: Almador Graphics Chip Accelerated VGA BIOS
(II) VESA(0): VESA VBE OEM Software Rev: 1.0
(II) VESA(0): VESA VBE OEM Vendor: Intel Corporation
(II) VESA(0): VESA VBE OEM Product: Almador Graphics Controller
(II) VESA(0): VESA VBE OEM Product Rev: Hardware Version 0.0
(II) VESA(0): virtual address = 0xb76b7000,
physical address = 0xe8000000, size = 851968
(==) VESA(0): Default visual is TrueColor
(==) VESA(0): Backing store disabled
(II) VESA(0): DPMS enabled
(==) RandR enabled
(II) Initializing built-in extension Generic Event Extension
(II) Initializing built-in extension SHAPE
(II) Initializing built-in extension MIT-SHM
(II) Initializing built-in extension XInputExtension
(II) Initializing built-in extension XTEST
(II) Initializing built-in extension BIG-REQUESTS
(II) Initializing built-in extension SYNC
(II) Initializing built-in extension XKEYBOARD
(II) Initializing built-in extension XC-MISC
(II) Initializing built-in extension SECURITY
(II) Initializing built-in extension XINERAMA
(II) Initializing built-in extension XFIXES
(II) Initializing built-in extension RENDER
(II) Initializing built-in extension RANDR
(II) Initializing built-in extension COMPOSITE
(II) Initializing built-in extension DAMAGE
(II) AIGLX: Screen 0 is not DRI2 capable
(II) AIGLX: Screen 0 is not DRI capable
(II) AIGLX: Loaded and initialized /usr/lib/dri/swrast_dri.so
(II) GLX: Initialized DRISWRAST GL provider for screen 0
(II) config/hal: Adding input device AT Translated Set 2 keyboard
(II) LoadModule: "evdev"
(II) Loading /usr/lib/xorg/modules/input//evdev_drv.so
(II) Module evdev: vendor="X.Org Foundation"
compiled for 1.6.0, module version = 2.1.1
Module class: X.Org XInput Driver
ABI class: X.Org XInput driver, version 4.0
(**) AT Translated Set 2 keyboard: always reports core events
(**) AT Translated Set 2 keyboard: Device: "/dev/input/event4"
(II) AT Translated Set 2 keyboard: Found keys
(II) AT Translated Set 2 keyboard: Configuring as keyboard
(II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD)
(**) Option "xkb_rules" "evdev"
(**) AT Translated Set 2 keyboard: xkb_rules: "evdev"
(**) Option "xkb_model" "jp106"
(**) AT Translated Set 2 keyboard: xkb_model: "jp106"
(**) Option "xkb_layout" "jp,jp"
(**) AT Translated Set 2 keyboard: xkb_layout: "jp,jp"
(**) Option "xkb_variant" "106,"
(**) AT Translated Set 2 keyboard: xkb_variant: "106,"
(**) Option "xkb_options" "grp:alt_shift_toggle,grp_led:scroll"
(**) AT Translated Set 2 keyboard: xkb_options: "grp:alt_shift_toggle,grp_led:scroll"
(II) config/hal: Adding input device Fujitsu FUJ02B1
(**) Fujitsu FUJ02B1: always reports core events
(**) Fujitsu FUJ02B1: Device: "/dev/input/event5"
(II) Fujitsu FUJ02B1: Found keys
(II) Fujitsu FUJ02B1: Configuring as keyboard
(II) XINPUT: Adding extended input device "Fujitsu FUJ02B1" (type: KEYBOARD)
(**) Option "xkb_rules" "evdev"
(**) Fujitsu FUJ02B1: xkb_rules: "evdev"
(**) Option "xkb_model" "jp106"
(**) Fujitsu FUJ02B1: xkb_model: "jp106"
(**) Option "xkb_layout" "jp,jp"
(**) Fujitsu FUJ02B1: xkb_layout: "jp,jp"
(**) Option "xkb_variant" "106,"
(**) Fujitsu FUJ02B1: xkb_variant: "106,"
(**) Option "xkb_options" "grp:alt_shift_toggle,grp_led:scroll"
(**) Fujitsu FUJ02B1: xkb_options: "grp:alt_shift_toggle,grp_led:scroll"
(II) config/hal: Adding input device Video Bus
(**) Video Bus: always reports core events
(**) Video Bus: Device: "/dev/input/event7"
(II) Video Bus: Found keys
(II) Video Bus: Configuring as keyboard
(II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD)
(**) Option "xkb_rules" "evdev"
(**) Video Bus: xkb_rules: "evdev"
(**) Option "xkb_model" "jp106"
(**) Video Bus: xkb_model: "jp106"
(**) Option "xkb_layout" "jp,jp"
(**) Video Bus: xkb_layout: "jp,jp"
(**) Option "xkb_variant" "106,"
(**) Video Bus: xkb_variant: "106,"
(**) Option "xkb_options" "grp:alt_shift_toggle,grp_led:scroll"
(**) Video Bus: xkb_options: "grp:alt_shift_toggle,grp_led:scroll"
(II) config/hal: Adding input device Macintosh mouse button emulation
(**) Macintosh mouse button emulation: always reports core events
(**) Macintosh mouse button emulation: Device: "/dev/input/event3"
(II) Macintosh mouse button emulation: Found 3 mouse buttons
(II) Macintosh mouse button emulation: Found x and y relative axes
(II) Macintosh mouse button emulation: Configuring as mouse
(**) Macintosh mouse button emulation: YAxisMapping: buttons 4 and 5
(**) Macintosh mouse button emulation: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
(II) XINPUT: Adding extended input device "Macintosh mouse button emulation" (type: MOUSE)
(**) Macintosh mouse button emulation: (accel) keeping acceleration scheme 1
(**) Macintosh mouse button emulation: (accel) filter chain progression: 2.00
(**) Macintosh mouse button emulation: (accel) filter stage 0: 20.00 ms
(**) Macintosh mouse button emulation: (accel) set acceleration profile 0
(II) config/hal: Adding input device AlpsPS/2 ALPS GlidePoint
(II) LoadModule: "synaptics"
(II) Loading /usr/lib/xorg/modules/input//synaptics_drv.so
(II) Module synaptics: vendor="X.Org Foundation"
compiled for 1.6.0, module version = 0.99.3
Module class: X.Org XInput Driver
ABI class: X.Org XInput driver, version 4.0
(II) Synaptics touchpad driver version 0.99.3
(**) Option "Device" "/dev/input/event9"
(II) AlpsPS/2 ALPS GlidePoint: x-axis range 0 - 1023
(II) AlpsPS/2 ALPS GlidePoint: y-axis range 0 - 767
(II) AlpsPS/2 ALPS GlidePoint: pressure range 0 - 127
(II) AlpsPS/2 ALPS GlidePoint: finger width range 0 - 0
(II) AlpsPS/2 ALPS GlidePoint: buttons: left right middle
(II) ALPS touchpad detected: AlpsPS/2 ALPS GlidePoint. Applying customised settings...
(--) AlpsPS/2 ALPS GlidePoint touchpad found
(**) AlpsPS/2 ALPS GlidePoint: always reports core events
(II) XINPUT: Adding extended input device "AlpsPS/2 ALPS GlidePoint" (type: TOUCHPAD)
(**) AlpsPS/2 ALPS GlidePoint: (accel) keeping acceleration scheme 1
(**) AlpsPS/2 ALPS GlidePoint: (accel) filter chain progression: 2.00
(**) AlpsPS/2 ALPS GlidePoint: (accel) filter stage 0: 20.00 ms
(**) AlpsPS/2 ALPS GlidePoint: (accel) set acceleration profile 0
(--) AlpsPS/2 ALPS GlidePoint touchpad found
(II) config/hal: Adding input device PS/2 Mouse
(**) PS/2 Mouse: always reports core events
(**) PS/2 Mouse: Device: "/dev/input/event8"
(II) PS/2 Mouse: Found 3 mouse buttons
(II) PS/2 Mouse: Found x and y relative axes
(II) PS/2 Mouse: Configuring as mouse
(**) PS/2 Mouse: YAxisMapping: buttons 4 and 5
(**) PS/2 Mouse: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
(II) XINPUT: Adding extended input device "PS/2 Mouse" (type: MOUSE)
(**) PS/2 Mouse: (accel) keeping acceleration scheme 1
(**) PS/2 Mouse: (accel) filter chain progression: 2.00
(**) PS/2 Mouse: (accel) filter stage 0: 20.00 ms
(**) PS/2 Mouse: (accel) set acceleration profile 0
(II) config/hal: Adding input device HID 04d9:1400
(**) HID 04d9:1400: always reports core events
(**) HID 04d9:1400: Device: "/dev/input/event10"
(II) HID 04d9:1400: Found keys
(II) HID 04d9:1400: Configuring as keyboard
(II) XINPUT: Adding extended input device "HID 04d9:1400" (type: KEYBOARD)
(**) Option "xkb_rules" "evdev"
(**) HID 04d9:1400: xkb_rules: "evdev"
(**) Option "xkb_model" "jp106"
(**) HID 04d9:1400: xkb_model: "jp106"
(**) Option "xkb_layout" "jp,jp"
(**) HID 04d9:1400: xkb_layout: "jp,jp"
(**) Option "xkb_variant" "106,"
(**) HID 04d9:1400: xkb_variant: "106,"
(**) Option "xkb_options" "grp:alt_shift_toggle,grp_led:scroll"
(**) HID 04d9:1400: xkb_options: "grp:alt_shift_toggle,grp_led:scroll"
(II) config/hal: Adding input device HID 04d9:1400
(**) HID 04d9:1400: always reports core events
(**) HID 04d9:1400: Device: "/dev/input/event11"
(II) HID 04d9:1400: Found 5 mouse buttons
(II) HID 04d9:1400: Found x and y relative axes
(II) HID 04d9:1400: Found keys
(II) HID 04d9:1400: Configuring as mouse
(II) HID 04d9:1400: Configuring as keyboard
(**) HID 04d9:1400: YAxisMapping: buttons 4 and 5
(**) HID 04d9:1400: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
(II) XINPUT: Adding extended input device "HID 04d9:1400" (type: KEYBOARD)
(**) Option "xkb_rules" "evdev"
(**) HID 04d9:1400: xkb_rules: "evdev"
(**) Option "xkb_model" "jp106"
(**) HID 04d9:1400: xkb_model: "jp106"
(**) Option "xkb_layout" "jp,jp"
(**) HID 04d9:1400: xkb_layout: "jp,jp"
(**) Option "xkb_variant" "106,"
(**) HID 04d9:1400: xkb_variant: "106,"
(**) Option "xkb_options" "grp:alt_shift_toggle,grp_led:scroll"
(**) HID 04d9:1400: xkb_options: "grp:alt_shift_toggle,grp_led:scroll"
(**) HID 04d9:1400: (accel) keeping acceleration scheme 1
(**) HID 04d9:1400: (accel) filter chain progression: 2.00
(**) HID 04d9:1400: (accel) filter stage 0: 20.00 ms
(**) HID 04d9:1400: (accel) set acceleration profile 0
~$ lspci | grep -i vga の結果は
00:02.0 VGA compatible controller: Intel Corporation 82830 CGC [Chipset Graphics Controller] (rev 03)
BIOSは今から見てみます
よろしくお願いします
オフライン
無かったですか。。
もし、DVMTとかって項目があれば、Disableにしてみて下さい。
VRAMとかの項目があって固定的にメモリを指定できれば一番よいのですが。。
あとは、
Driver "fbdev"
を試すとかでしょうか。下記のものと症状が似ているような。。
https://forums.ubuntulinux.jp/viewtopic.php?pid=33879
オフライン
取り合えず解ったことを。
現在は標準で装備されている凡庸ドライバ VESA が摘要されています。
しかもi830にはグラフィックのバグが有る様です。が今のところ関連性は不明です。
念のために
$ sudo apt-get install xserver-xorg-video-intel-dbg
インストールが始まればドライバが入っていなかった。
インストール済みと出ればxorg.confに記述する。で良かったのでしたっけ?
その辺は解らないのですが、、、
データ,
/usr/bin/intel_reg_dumper
/usr/lib/debug/usr/bin/intel_reg_dumper
/usr/lib/debug/usr/lib/libI810XvMC.so.1.0.0
/usr/lib/debug/usr/lib/libIntelXvMC.so.1.0.0
/usr/lib/debug/usr/lib/xorg/modules/drivers/ch7017.so
/usr/lib/debug/usr/lib/xorg/modules/drivers/ch7xxx.so
/usr/lib/debug/usr/lib/xorg/modules/drivers/intel_drv.so
/usr/lib/debug/usr/lib/xorg/modules/drivers/ivch.so
/usr/lib/debug/usr/lib/xorg/modules/drivers/sil164.so
/usr/lib/debug/usr/lib/xorg/modules/drivers/tfp410.so
/usr/share/doc/xserver-xorg-video-intel-dbg/changelog.Debian.gz
/usr/share/doc/xserver-xorg-video-intel-dbg/changelog.gz
/usr/share/doc/xserver-xorg-video-intel-dbg/copyright
オフライン
失礼します。
「Xorg.0.log」を見る限り、モニターの認識に失敗しているように見えます。
すみませんが、モニターのリフレッシュレート(水平同期周波数、垂直同期周波数)の数値とかは分かりますでしょうか。
オフライン
#18 Driverを"fbdev"に変更してみましたが、ローグラフィックで表示されてしまいました
#19 sudo apt-get install xserver-xorg-video-intel-dbgの結果
パッケージリストを読み込んでいます... 完了
依存関係ツリーを作成しています
状態情報を読み取っています... 完了
以下のパッケージが自動でインストールされましたが、もう必要とされていません:
linux-headers-2.6.28-11 linux-headers-2.6.28-11-generic vnc4-common
これらを削除するには 'apt-get autoremove' を利用してください。
以下のパッケージが新たにインストールされます:
xserver-xorg-video-intel-dbg
アップグレード: 0 個、新規インストール: 1 個、削除: 0 個、保留: 0 個。
1886kB のアーカイブを取得する必要があります。
この操作後に追加で 3781kB のディスク容量が消費されます。
取得:1 http://jp.archive.ubuntu.com jaunty-updates/main xserver-xorg-video-intel-dbg 2:2.6.3-0ubuntu9.3 [1886kB]
1886kB を 16s で取得しました (115kB/s)
未選択パッケージ xserver-xorg-video-intel-dbg を選択しています。
(データベースを読み込んでいます ... 現在 143622 個のファイルとディレクトリがインストールされています。)
(.../xserver-xorg-video-intel-dbg_2%3a2.6.3-0ubuntu9.3_i386.deb から) xserver-xorg-video-intel-dbg を展開しています...
xserver-xorg-video-intel-dbg (2:2.6.3-0ubuntu9.3) を設定しています ...
リフレッシュレートは分かりません
メーカーマニュアルにも無い様に思います
http://www.fmworld.net/biz/fmv/support/fmvmanual/lifebook/fmv-6866nu.html
http://www.fmworld.net/biz/fmv/product/hard/blb0110/spec_nu.html
下のは#1のと同じです
あと#21はリンク切れでした
オフライン
〜以下のパッケージが新たにインストールされます:
xserver-xorg-video-intel-dbg
アップグレード: 0 個、新規インストール: 1 個、削除: 0 個、保留: 0 個。〜
これでUbuntu用のi830グラフィックドライバがインストールされましたがどうでしょう?
再起動後に
$ xrandr
で認識に変化はあるでしょうか?
オフライン