Installation of SuSE 6.0 |
Installation of SuSE 6.0 on a PPro 200 computer (05-06-1999)
dd if=/cdrom/disks/modules of=dev/fd0 |
Finally, we switched the cable to the second IDE connector, and set the jumpers on both disks to be "single". Even though the BIOS still claimed it was only an 8GB disk, Linux fdisk automatically recognized all 13 GB and almost automatically created 2 partitions of the correct size. Formatting took only 3 minutes. Intallation of SuSE linux proceeded flawlessly after this. The only problem was that it was not possible to change where packages were installed. Thus, it is necessary to select the sizes and mount points for each partition carefully in order to avoid running out of space.
cd /usr/src
rm linux
ln -s linux-2.2.7 linux (change to match kernel version)
cd linux
cp /boot/bzImage /boot/bzImage.bak (if present)
make config
make dep; make clean
make
make bzImage
cp /usr/src/linux/arch/i386/boot/bzImage /boot
/sbin/lilo (It should say: added linux *
added linux-old )
(edit /etc/lilo.conf to include old kernel in case
of a problem, see below. No need to use rdev
if you run lilo.) |
# LILO Konfigurations-Datei
# Start LILO global Section
append="sbpcd=0x250,SoundBlaster"
boot=/dev/hda
#compact # faster, but won't work on all systems.
read-only
prompt
timeout=200
vga = 6 # force sane state
# End LILO global section
# Linux bootable partition config begins
root = /dev/hda1
image = /boot/bzImage
label = linux # This line starts with tab
image = /boot/vmlinuz # Or /boot/bzImage.bak
label = linux-old # This line starts with tab
# Linux bootable partition config ends
# |
run_setserial /dev/ttyS2 irq 5
run_setserial /dev/ttyS3 irq 12 |
"\h:\`pwd -P\`# " (for root)
"\h:\`pwd -P\`$ " (for regular user) |
./install-motif lib/install.linx86glibc: error in loading
shared libraries : undefined symbol: _Xglobal_lock |
ping -c 1 {some other host} > /dev/null |
rm /dev/console
ln -s /dev/tty0 /dev/console
chown tjnelson.users /dev/tty0
chmod a+rwx /dev/tty0 |
# This updates the database for 'locate' every day at 3:40 am:
40 03 * * * updatedb 1> /dev/null 2> /dev/null |
ERROR: libc.so.5: cannot open shared object file: No such file or directory
Cant load plugin /usr/X11R6/lib/Acrobat3/Browsers/intellinux/nppdf.so. Ignored. |
# Look for sshd in the two most common locations (compiled with --prefix=/usr
# or with --prefix=/usr/local) and if we find it, start it up
if [ -x /usr/local/sbin/sshd ]; then
echo -n " sshd"
/usr/local/sbin/sshd
elif [ -x /usr/sbin/sshd ]; then
echo -n " sshd"
/usr/sbin/sshd
fi |
aggregate 'struct termios newtio' has incomplete type
and cannot be initialized. |