Debian Logs
1/26/2011 Installed debian 5 installed vmware tools 2/15/2011 Install apps apt=get install rxvt apt=get install konsole sdb fdisk -l Setup partitions on sdb cfdisk /dev/sdb To make two primary partitions sdb1 1024 as linux swap(82) sdb2 1024 as linux (83) To set files system to sdb2 mkfs.ext3 /dev/sdb2 To make an empty directory to mount sda2 into mkdir -p /mnt/sdb2 To mount drive into that dir mount -t ext3 /dev/sdb2 /mnt/sdb2 To verify drive was mounted df -a To edit fstab file so drive is mounted on boot vi /etc/fstab reboot fdisk -l To make swap space out of hard drive partition mkswap /dev/sdb1 To turn on swap swapon /dev/sdb1 SQLSCRIPT