|
Install
Installing Debian on a new machine:Make sure using correct install cd. Currently using lenny, most machines use 64 bit. 1. Update apt sources.list The first thing we will do is to edit the /etc/apt/sources.list file and replace “etch” or "stable" with “lenny“. If you leave it as stable will change distributions automatically when there is a new release. I follow the recommendation that people use the release name (like etch, lenny) instead of generic names (like stable, testing); this way you will have the control on when you want to upgrade. Contents of sources.list: deb http://ftp.us.debian.org/debian/ lenny main contrib non-free deb-src http://ftp.us.debian.org/debian/ lenny main contrib non-free deb http://security.debian.org/ lenny/updates main contrib non-free 2. Perform the actual upgrade After changing apt sources we need to refresh the indexes, and for this we have to run: aptitude update Once this is done we will want to upgrade first the core apt packages: aptitude install apt dpkg aptitude and finally perform the full upgrade: aptitude full-upgrade (dist-upgrade was renamed to full-upgrade in lenny’s aptitude); or you can use: apt-get dist-upgrade This will take a while depending on what packages you have installed (that will need to be upgraded) and on your internet connection speed. After this is done you will have to reboot your system in order to activate the kernel upgrade to the lenny 2.6.26 kernel. Also you will want to check and see that all the applications you are using are still working as expected after the upgrade. To get time right, install ntp and ntpdate. Remove network-manager as network-manager seems to just screw things up. How to deal with 32bit packages with 64bit kernel
Install the following debian packages on all linux boxes:
On cluster:
#! /bin/sh linux32 /usr/local/matlab7/bin/matlab -nojvm otherwise running 32bit compiled functions give error (at least for Tim)
How to install non-debian packages:
How to install deb files:dpkg -i oneSIS-2.0.2-1.deb |