Monthly Archives: October 2006

checkinstall – build .deb’s from .tar.gz’s


sudo aptitude install checkinstall
wget foo.tgz
tar zxvf foo.tgz
cd foo
./configure --prefix=/usr && make
sudo checkinstall make install

using kickstart to automate Redhat/Fedora setups

(tested on Fedora Core 3)

  • copy all of DVD files to a directory, and export via NFS (more features for setups than ftp or http). For example:
 $ cat /etc/exports
 /var/fc3 *(ro,sync)

(more…)