Then what we need is prepare for partition, we can use QTparted,but in BT4 beta, if we want to use it we must edit the shortcut from qtparted-root to qtparted or you can open console then type qtparted and press "enter", after window open then make partition for /, swap and mybee another partition.
To start installation, open console and write in console like this :
root@bt:~# mkswap /dev/sda8 (this for swap)
root@bt:~# swapon /dev/sda8 (make swap partition on)
root@bt:~# mkreiserfs /dev/sda2 (make /dev/sda2 for / with type reiserFS)
root@bt:~# mkdir /mnt/bt
root@bt:~# mount /dev/sda2 /mnt/bt
root@bt:~# cp --preserve -R /{bin,dev,home,pentest,root,usr,boot,etc,lib,opt,sbin,var} /mnt/bt/
root@bt:~# mkdir /mnt/bt/{mnt,tmp,proc,sys,media} <== this my modification, we make media directory
root@bt:~# chmod 1777 /mnt/bt/tmp/
root@bt:~# mount -t proc proc /mnt/bt/proc
root@bt:~# mount -o bind /dev /mnt/bt/dev/
root@bt:~# chroot /mnt/bt/ /bin/bash
root@bt:~# nano /etc/lilo.conf
for example this is my config for lilo.conf
==================================================================
lba32
boot=/dev/sda
root=/dev/sda2
# bitmap=/boot/sarge.bmp
# bmp-colors=1,,0,2,,0
# bmp-table=120p,173p,1,15,17
# bmp-timer=254p,432p,1,0,0
# install=bmp
# delay=20
prompt
timeout=50
# map=/boot/map
vga=0x317
image=/boot/vmlinuz
label="BT4-Console"
read-only
initrd=/boot/splash.initrd
append=quiet
image=/boot/vmlinuz
label="BT4-ConsoleNoFB"
image =/boot/mt86p
label ="MemtestUtility"
other = /dev/sda1
label ="Windows7"
table = /dev/sda
==================================================================
root@bt:~# nano /etc/fstab
for example this is my config for fstab, make your's similar like this
==================================================================
/dev/sda2 / reiserfs defaults 0 0 # AutoUpdate
proc /proc proc defaults 0 0 # AutoUpdate
sysfs /sys sysfs defaults 0 0 # AutoUpdate
devpts /dev/pts devpts gid=5,mode=620 0 0 # AutoUpdate
tmpfs /dev/shm tmpfs defaults 0 0 # AutoUpdate
/dev/sda8 none swap auto,defaults,pri=1 0 0 # AutoUpdate
==================================================================
root@bt:~# lilo -v
root@bt:~# exit
root@bt:~# reboot
Then after it reboot set it to "start with empty session", to do this just
from K menu => Settings => KDE Components => Session Manager
take from Backtrack 4 Beta The Perfect Harddisk Install v2, muts@remote-exploit.org with any modification
