|
Ubuntu 5.10 on Satellite
M65-S9065
I have Ubuntu 5.10 installed and functioning on a
Toshiba M65-S9065.
I tried Ubuntu 4.10 with no luck, the install could
not see my hard
drive. I also tried to install Fedora Core 4 with
no luck as X would
not load and FC just hangs to the point that I need
to do a hard
reboot. Solaris 10 x86 did not do any better and just
to see I tried
RHEL4.0. Still no X, but I had a working system if
I wanted my laptop
to be a server. Anyways, I downloaded Ubuntu 5.10
and it works great.
I have officially replaced my old HP laptop running
windowz with a
nice new Toshiba, 1.7Ghz CPU, 512MB RAM, CDRW/DVDRW,
17 inch
wide screen 1400x900 display with wireless support
running Breezy Badger!
It literally took all night to get everything to
work, however,
it works. Here are a few words of advise.
- do not worry about wireless configuration at bootup,
it will not work.
- install using the onboard NIC and after the system
automatically
updates go to system->admin->Networking and
configure your wireless
interface. Deactivate the eth0 device and reboot.
- when setting up X ctrl-alt-backspace is your friend,
use it to go
back to the command line when the screen does not
load.
Follow these steps as user root in the same order
to setup X:
- get and run a program called 915resolution (search
google for examples)
- run the following command to reconfigure your X
system:
# dpkg-reconfigure xserver-xorg
- I used the Frame Buffer device (i'm not gaming and
I don't plan on
watching dvd's so this should be fine for me)
(update: I just watched the last samurai, only problem
is the sound
goes away when I do full screen, however, Ogle allows
for maximize
window to the entire screen minus the top and bottom
icon/tool bars)
- run the command 'startx'
To have X start at system boot, simply echo the 915resolution
command
with the full path into the following file /etc/init.d/res-fix
here is my configuration:
# echo "/full/path/to/915resolution 3c 1400 900"
> /etc/init.d/res-fix
Change permissions for execute:
# chmod u+x /etc/init.d/res-fix
Link the program to all of your rc directories, before
gdm starts
# for scriptdir in 1 2 3 4 5 6; do ln -s /etc/init.d/res-fix
/etc/rc.$scriptdir.d/S12res-fix;done
(at this point I do not know of a different way to
enable a service in ubuntu)
Test it by rebooting, and use caution with the hibernate
functionality.
If all else fails, get back to a command line and
do a fresh reboot.
For those that are interested here is my xorg.conf:
################################################################
# /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/X11/fonts/misc"
FontPath "/usr/share/X11/fonts/cyrillic"
FontPath "/usr/share/X11/fonts/100dpi/:unscaled"
FontPath "/usr/share/X11/fonts/75dpi/:unscaled"
FontPath "/usr/share/X11/fonts/Type1"
FontPath "/usr/share/X11/fonts/CID"
FontPath "/usr/share/X11/fonts/100dpi"
FontPath "/usr/share/X11/fonts/75dpi"
# paths to defoma fonts
FontPath "/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType"
FontPath "/var/lib/defoma/x-ttcidfont-conf.d/dirs/CID"
EndSection
Section "Module"
Load "GLcore"
Load "bitmap"
Load "ddc"
Load "dri"
Load "extmod"
Load "freetype"
Load "glx"
Load "int10"
Load "type1"
Load "vbe"
EndSection
Section "InputDevice"
Identifier "Generic Keyboard"
Driver "kbd"
Option "CoreKeyboard"
Option "XkbRules" "xorg"
Option "XkbModel" "pc104"
Option "XkbLayout" "us"
EndSection
Section "InputDevice"
Identifier "Configured Mouse"
Driver "mouse"
Option "CorePointer"
Option "Device" "/dev/input/mice"
Option "Protocol" "ImPS/2"
EndSection
Section "InputDevice"
Identifier "Synaptics Touchpad"
Driver "synaptics"
Option "SendCoreEvents" "true"
Option "Device" "/dev/psaux"
Option "Protocol" "auto-dev"
Option "HorizScrollDelta" "0"
EndSection
Section "Device"
Identifier "Intel Corporation Intel Default Card"
Driver "i810"
BusID "PCI:0:2:0"
VideoRam 131072
Option "UseFBDev" "true"
EndSection
Section "Monitor"
Identifier "Monitor0"
Option "DPMS"
EndSection
Section "Screen"
Identifier "Default Screen"
Device "Intel Corporation Intel Default Card"
Monitor "Monitor0"
DefaultDepth 16
SubSection "Display"
Depth 1
Modes "1440x900" "1280x768" "1200x800"
"1024x768" "800x600" "640x480"
EndSubSection
SubSection "Display"
Depth 4
Modes "1440x900" "1280x768" "1200x800"
"1024x768" "800x600" "640x480"
EndSubSection
SubSection "Display"
Depth 8
Modes "1440x900" "1280x768" "1200x800"
"1024x768" "800x600" "640x480"
EndSubSection
SubSection "Display"
Depth 15
Modes "1440x900" "1280x768" "1200x800"
"1024x768" "800x600" "640x480"
EndSubSection
SubSection "Display"
Depth 16
Modes "1440x900" "1280x768" "1200x800"
"1024x768" "800x600" "640x480"
EndSubSection
SubSection "Display"
Depth 24
Modes "1440x900" "1280x768" "1200x800"
"1024x768" "800x600" "640x480"
EndSubSection
EndSection
Section "ServerLayout"
Identifier "Default Layout"
Screen "Default Screen"
InputDevice "Generic Keyboard"
InputDevice "Configured Mouse"
InputDevice "Synaptics Touchpad"
EndSection
Section "DRI"
Mode 0666
EndSection
#####################################################
I hope this helps someone.
|