Table of Contents

Linux Graduate Machine Install

Install Cloned Drive

Set-up Graphics

$ lspci
# dpkg-reconfigure xserver-xorg
  • note: Although the xfree86 xserver had no problems with the Intel i810 graphics chip, xorg does. To correct the problem, specify the amount of memory to use (try 64MB, or 64000kB) during dpkg-reconfigure xserver-xorg.

install modem

    #!/bin/bash
    ln -s ttyS_PCTEL0 /dev/modem
    ln -s /etc/init.d/setmodemlink S37setmodemlink
  # copy these line first
  dmesg | grep -i tty | grep -w -v -e ttyS0 -e ttyS1
  # be sure to set the bw_tty variable below to the correct serial port, e.g. ttyS_PCTEL0
  bw_tty=/dev/ttyS14
  
  # copy'n'paste these lines
  cd /etc/init.d/
  cat <<eof > setmodemlink
  #!/bin/bash
  ln -s ${bw_tty} /dev/modem
  eof
  chmod +x setmodemlink
  cd /etc/rcS.d/
  ln -s /etc/init.d/setmodemlink S37setmodemlink
  tail +1  /etc/init.d/setmodemlink /etc/rcS.d/S37setmodemlink
  # done

install sound

set up dialup networking

update software

  # become root
  su -
  # enable networking
  ifup eth0
  # update and upgrade
  apt-get update && apt-get -y upgrade
  # done