Wednesday, October 3, 2007

就職活動のためのメール文例集データベース

就職活動のためのメール文例集データベース

Sambaの基本設定

Sambaの基本設定

KURO-BOX/PRO » Debian 環境を整える(その1, アップデートと samba)

KURO-BOX/PRO » Debian 環境を整える(その1, アップデートと samba)

Successful xorg setting !!!

1.First I installed Debian etch without any X Window System .

2.I want to have a swift Desktop manger and I found xfce is one of them . Get the install reffarance from here .


3.Then I install xorg .
#apt-get install xorg
My sources.list was as below
#########################################################################]

deb http://ftp2.jp.debian.org/debian/ etch main contrib non-free
deb http://ftp2.jp.debian.org/debian/ etch-proposed-updates contrib non-free
deb http://ftp2.jp.debian.org/debian-security/ etch/updates main contrib non-free
deb http://security.debian.org etch/updates main contrib non-free

deb-src http://ftp2.jp.debian.org/debian/ etch main contrib non-free
deb-src http://ftp2.jp.debian.org/debian/ etch-proposed-updates contrib non-free
deb-src http://ftp2.jp.debian.org/debian-security/ etch/updates main contrib non-free
deb-src http://security.debian.org etch/updates main contrib non-free

#
# deb cdrom:[Debian GNU/Linux 4.0 r1 _Etch_ - Official i386 CD Binary-1 20070819-11:52]/ etch contrib main

#deb cdrom:[Debian GNU/Linux 4.0 r1 _Etch_ - Official i386 CD Binary-1 20070819-11:52]/ etch contrib main
# Line commented out by installer because it failed to verify:
deb http://security.debian.org/ etch/updates main contrib
# Line commented out by installer because it failed to verify:
#deb-src http://security.debian.org/ etch/updates main contrib
(END)

####################################################################################


4.I face problem with my xorg . So cant start xfce . It was a problem with built in video card .
Ref
I use the following command .
#grep -n "(EE)\|(WW)" /var/log/XFree86.0.log
to get the error message .

#X -version
#dpkg -l | grep xserver-
to get the version

lspci | grep VGA
to get the video chipset information .

4.Then I check how can I configure xorg . Just execute the following command .
#dpkg-reconfigure xserver-xorg

It will ask you some information about your hardware . Pls select correctly .

Determining the video card's bus identifier just execute this .
lspci -X
Ref

I found my chipset like this
00:02.0 VGA compatible controller: Intel Corporation 82845G/GL[Brookdale-G]/GE Chipset Integrated Graphics Device (rev 01)

Find the correct configartion of your monitor by doing some google . I found mine as this .

Horizontal Frequenct:31-80 KHz
Vertical Frequency:56-75 Hz
Maximun Resolution:1280 X 1024@ 75Hz:
1280 X 1024@ 60Hz

after finishing configaration execute startx.
#startx
you have done .

Ref
Ref

My /etc/X11/xorg.conf is as follows .
#######################################################################################
# /etc/X11/xorg.conf (xorg X Window System server configuration file)
#
# This file was generated by dexconf, the Debian X Configuration tool, using
# values from the debconf database.
#
# Edit this file with caution, and see the /etc/X11/xorg.conf manual page.
# (Type "man /etc/X11/xorg.conf" at the shell prompt.)
#
# This file is automatically updated on xserver-xorg package upgrades *only*
# if it has not been modified since the last upgrade of the xserver-xorg
# package.
#
# If you have edited this file but would like it to be automatically updated
# again, run the following command:
# sudo dpkg-reconfigure -phigh xserver-xorg

Section "Files"
FontPath "/usr/share/fonts/X11/misc"
FontPath "/usr/X11R6/lib/X11/fonts/misc"
FontPath "/usr/share/fonts/X11/cyrillic"
FontPath "/usr/X11R6/lib/X11/fonts/cyrillic"
FontPath "/usr/share/fonts/X11/100dpi/:unscaled"
FontPath "/usr/X11R6/lib/X11/fonts/100dpi/:unscaled"
FontPath "/usr/share/fonts/X11/75dpi/:unscaled"
FontPath "/usr/X11R6/lib/X11/fonts/75dpi/:unscaled"
FontPath "/usr/share/fonts/X11/Type1"
FontPath "/usr/X11R6/lib/X11/fonts/Type1"
FontPath "/usr/share/fonts/X11/100dpi"
FontPath "/usr/X11R6/lib/X11/fonts/100dpi"
FontPath "/usr/share/fonts/X11/75dpi"
FontPath "/usr/X11R6/lib/X11/fonts/75dpi"
# path to defoma fonts
FontPath "/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType"
EndSection

Section "Module"
Load "bitmap"
Load "ddc"
Load "dri"
Load "extmod"
Load "freetype"
Load "glx"
Load "int10"
Load "vbe"
EndSection

Section "InputDevice"
Identifier "Generic Keyboard"
Driver "kbd"
Option "CoreKeyboard"
Option "XkbRules" "xorg"
Option "XkbModel" "jp106"
Option "XkbLayout" "jp"
EndSection

Section "InputDevice"
Identifier "Configured Mouse"
Driver "mouse"
Option "CorePointer"
Option "Device" "/dev/input/mice"
Option "Protocol" "ImPS/2"
Option "Emulate3Buttons" "true"
EndSection

Section "Device"
Identifier "ntel 8284G"
Driver "i810"
BusID "PCI:0:2:0"
VideoRam 128000
EndSection

Section "Monitor"
Identifier "Generic Monitor"
Option "DPMS"
HorizSync 31-80
VertRefresh 56-75
EndSection

Section "Screen"
Identifier "Default Screen"
Device "ntel 8284G"
Monitor "Generic Monitor"
Section "Screen"
Identifier "Default Screen"
Device "ntel 8284G"
Monitor "Generic Monitor"
DefaultDepth 24
SubSection "Display"
Depth 1
Modes "1280x1024" "1024x768" "800x600" "640x480"
EndSubSection
SubSection "Display"
Depth 4
Modes "1280x1024" "1024x768" "800x600" "640x480"
EndSubSection
SubSection "Display"
Depth 8
Modes "1280x1024" "1024x768" "800x600" "640x480"
EndSubSection
SubSection "Display"
Depth 15
Modes "1280x1024" "1024x768" "800x600" "640x480"
EndSubSection
SubSection "Display"
Depth 16
Modes "1280x1024" "1024x768" "800x600" "640x480"
EndSubSection
SubSection "Display"
Depth 24
Modes "1280x1024" "1024x768" "800x600" "640x480"
EndSubSection
EndSection

Section "ServerLayout"
Identifier "Default Layout"
Screen "Default Screen"
InputDevice "Generic Keyboard"
InputDevice "Configured Mouse"
EndSection

Section "DRI"
Mode 0666
EndSection
#####################################################################################

Determining the video card's bus identifier - SeriosWiki

Determining the video card's bus identifier - SeriosWiki

Search