Then, insert RH's cdrom and restart the system: I can see the first installation screen. Now if you press Enter the system go on with a graphics installation - don't worry! RH 7.1 can play better with the SiS630 card. The program change the video mode to vesa-framebuffer, show some crazy boot messages and finally draw a big red hat...check if the usb mouse works: you can use it on installation procedure!!!. In the first text-mode menu you can start the installation without vesa-framebuffer support: DON'T use this method, because of video problems.
Let's go on:
you can use a different number of partition or a different size. The important is: use the partitions in your hard disk!!! in particular, try to separate your personal data,
system files, shared partitions/directories, html pages...
Device
begin
end
Block
System
Mount
/dev/hda1
1
588
4445248
Win95 FAT32
windows
/dev/hda2
589
927
2562840
Linux
/ (root)
/dev/hda3
928
2584
12526920
Extended
(extended)
/dev/hda5
928
1659
5533888
Linux
/usr
/dev/hda6
1660
2201
4097488
Linux
/home
/dev/hda7
2202
2499
2252848
Linux
/usr/local
/dev/hda8
2500
2584
642568
Swap
swap partition
...
image=/boot/vmlinuz-2.4.2-2
label=linux
vga=791
read-only
root=/dev/hda2
image=/boot/vmlinuz-2.4.2-2
label=prelinux
read-only
root=/dev/hda2
...
When we restart the system, linux uses vesa-framebuffer video mode: if there is any problem we can swith to text-mode shell (using "prelinux" at boot).
# /etc/X11/XF86Config
Section "Files"
RgbPath "/usr/X11R6/lib/X11/rgb"
FontPath "unix/:7100"
EndSection
Section "ServerFlags"
#NoTrapSignals
#DontZoom
EndSection
Section "Keyboard"
Protocol "Standard"
AutoRepeat 250 30
LeftAlt Meta
RightAlt Meta
ScrollLock Compose
RightCtl Control
XkbKeycodes "xfree86"
XkbTypes "default"
XkbCompat "default"
XkbSymbols "us(pc101)"
XkbGeometry "pc"
XkbRules "xfree86"
XkbModel "pc101"
XkbLayout "it"
EndSection
Section "Pointer"
Protocol "IMPS/2" # THIS IS USB MOUSE!!!!!
Device "/dev/mouse"
ZAxisMapping 4 5
EndSection
Section "Monitor"
Identifier "Generic Laptop Display Panel 1024x768"
VendorName "Asus"
ModelName "A1360"
HorizSync 31.5-56.6
VertRefresh 40-70
# 1024x768 @ 100Hz, 80.21 kHz hsync
Modeline "1024x768" 115.5 1024 1056 1248 1440 768 771 781 802 -HSync -VSync
# 1024x768 @ 60 Hz, 48.4 kHz hsync
Modeline "1024x768" 65 1024 1032 1176 1344 768 771 777 806 -hsync -vsync
# 1024x768 @ 70 Hz, 56.5 kHz hsync
Modeline "1024x768" 75 1024 1048 1184 1328 768 771 777 806 -hsync -vsync
# 1024x768 @ 76 Hz, 62.5 kHz hsync
Modeline "1024x768" 85 1024 1032 1152 1360 768 784 787 823
# 1024x768 @ 85 Hz, 70.24 kHz hsync
Modeline "1024x768" 98.9 1024 1056 1216 1408 768 782 788 822 -HSync -VSync
EndSection
Section "Device"
Identifier "SiS 630"
VendorName "Unknown"
BoardName "Unknown"
#VideoRam 8192
EndSection
Section "Screen"
Driver "svga"
Device "SiS 630"
Monitor "Generic Laptop Display Panel 1024x768"
DefaultColorDepth 32
Subsection "Display"
Depth 32
Modes "1024x768"
ViewPort 0 0
EndSubsection
EndSection
id:3:initdefault:and replace with:
id:5:initdefault:
With this changes, your linux system will restart in graphic mode. We don't need a text-mode shell because we have a more comfortable graphic terminals in ours desktop...
/etc/X11/XF86Config.usb:
...
Section "Pointer"
Protocol "IMPS/2"
Device "/dev/mouse"
ZAxisMapping 4 5
EndSection
...
/etc/X11/XF86Config.touch:
...
Section "Pointer"
Protocol "PS/2"
Device "/dev/psaux"
Emulate3Buttons
EndSection
...
Append this text to /etc/rc.d/rc.local:
... #Mouse configuration: rm -rf /etc/X11/XF86Config if dmesg | grep "USB Mouse" then echo "I use USB mouse..." ln -s /etc/X11/XF86Config.usb /etc/X11/XF86Config else echo "It's better if I use touchpad !!!..." ln -s /etc/X11/XF86Config.touch /etc/X11/XF86Config fiNext time you reboot the system, Linux search "USB Mouse" string into boot messages; if present, Linux use the USB mouse, otherwise the touchpad will be active.
I say: use RH7 installation procedure to configure all network cards!