Siemens Lifebook
Solaris 10 für x86 auf einem Fujitsu Siemens Lifebook 2100
Hardware
Viel ist ja nicht eingebaut in diesem Modell.Basisinstallation
Eine 08/15 Installation von der DVD durchführen. Falls auf der Fetplatte noch Linux installiert ist oder werden soll besser für Solaris den Partitionstyp BF statt 82 verwenden. Diese würde von Linux als Swap-Partition erkannt werden. Wer mag kann noch eine Datenaustauchpartition mit vfat-Formatierung vorsehen. Zusammen mit Linux und Windows sieht das dann beispielsweise so aus:Disk /dev/hda: 40.0 GB, 40007761920 bytes 255 heads, 63 sectors/track, 4864 cylinders Units = cylinders of 16065 * 512 = 8225280 bytes Device Boot Start End Blocks Id System /dev/hda1 1 1912 15358108+ 7 HPFS/NTFS /dev/hda2 * 1913 3500 12755610 bf Solaris /dev/hda3 4501 4864 2923830 c W95 FAT32 (LBA) /dev/hda4 3501 4500 8032500 83 Linux Partition table entries are not in disk order
X und Keyboard
Bei der Konfiguration ist die Wahl des Xsun-Server eine gute Wahl. Erstens ist die Unterstützung für die ATI Grafikkarte besser, und zweitens ist es einfacher, das deutsche Keyboard einzubinden.
Press F3 to exit kdmconfig without making any changes.
X Server Selection
------------------
- [X] Xsun server
Nach einigen Konfigurationen ergibt sich folgendes Bild
q kdmconfig - View and Edit Window System Configuration ------------------------
Current or Proposed Window System Configuration:
Video Device: ATI Technologies Inc Radeon IGP 340M
Video Driver: XF86-RADEON
Resolution/Colors: 1400x1050 - 65536 colors ***
Screen Size: 17-inch (43cm)
Monitor Type: MultiFrequency 64kHz (up to 1600x1200 interlaced)
Keyboard Type: Generic German
Pointing Device: Built-in PS/2 Mouse (2 Button+ 25ms 3 Button Emulation)
Configure Devices
------------------------------------------
[X] No changes needed - Test/Save and Exit
[ ] Change Video Device/Monitor
[ ] Change Keyboard
[ ] Change Pointing Device
Sound
Solaris 10 bringt keine Unterstützung für den ALi M5451 Soundchip mit. Hier hilft der Treiber von 4Front, der als Solaris-pkg installiert wird.Datentauschpartition
Damit auf die vfat Datenpartition zugegriffen werden kann ist ein Eintrag in der vfstab notwendig./dev/dsk/c0d0p3 - /mnt/D pcfs - yes -
Bootloader
Per Default wird Sun's Bootloader installiert. Leistungsfähiger ist grub, der eine Konfigurationsdatei benötigt. Im folgenden Beispiel kann zwischen Solaris, Linux und Windows gewählt werden.
# menu.lst - See: grub(8), info grub, update-grub(8)
# grub-install(8), grub-floppy(8),
# grub-md5-crypt, /usr/share/doc/grub
# and /usr/share/doc/grub-doc/.
# You can specify 'saved' instead of a number. In this case, the default entry
# is the entry saved with the command 'savedefault'.
default 0
timeout 5
color cyan/blue white/blue
title Debian GNU/Linux, kernel 2.4.27-2-386
root (hd0,3)
kernel /boot/vmlinuz-2.4.27-2-386 root=/dev/hda4 ro
initrd /boot/initrd.img-2.4.27-2-386
savedefault
boot
title Debian GNU/Linux, kernel 2.4.27-2-386 (recovery mode)
root (hd0,3)
kernel /boot/vmlinuz-2.4.27-2-386 root=/dev/hda4 ro single
initrd /boot/initrd.img-2.4.27-2-386
savedefault
boot
# This entry automatically added by the Debian installer for a non-linux OS
# on /dev/hda1
title Microsoft Windows XP Professional
root (hd0,0)
savedefault
makeactive
chainloader +1
title SUN Solaris 10 (5.10) Generic i386
rootnoverify (hd0,1)
makeactive
chainloader +1
Die Erweiterung der PATH Variable kann in /etc/profile erfolgen. Entweder statisch, oder dynamisch, falls ein Verzeichnis vorhanden ist (sehr geschickt!). Hier der Ausschnitt:
# construct PATH according to what's available
PATH=/sbin
for p in /usr/sbin /usr/local/sbin /usr/opt/SUNWmd/sbin /usr/platform/`uname -i`/sbin /opt/SUNWcluster/bin /opt/SUNWssp/bin /opt/VRTSvmsa/bin /bin /usr/bin /usr/local/bin /usr/openwin/bin /usr/dt/bin /usr/X/bin /usr/ccs/bin /usr/ucb ; do
if [ -d $p ] ; then
PATH=$PATH:$p
fi
done
export PATH