29.): You can install software on Backtrack 3 and save 'Snapshots' to save your place or
follow another tutorial about making any changes 'sticky' to preserve your work between
boots. Go back to your "Settings" and change the "Radio Button" to finish using the
Backtrack 3 installation .ISO image on your HD.
30.): See these threads for info on copying the CD/DVD-ROM .ISO image to VirtualBox's virtual
HD drives so you can make changes and update your software without resorting to Snapshots
to make things sticky.
How to install backtrack 3 final from the shell
hxxp://forums.remote-exploit.org/showthread.php?t=14751
Install BT3 live onto flash, save changes, with compiz
hxxp://forums.remote-exploit.org/showthread.php?t=14812
TUTORIAL: live install with changes, swap and data partitions
hxxp://forums.remote-exploit.org/showthread.php?t=7844
How to install BT3Final onto external USB HDD - Solve the Kernel Panic
hxxp://forums.remote-exploit.org/showthread.php?t=16593
I mainly used the fourth Tutorial (and modified the commands from the above suggestions
to suit a Virtual HD with Backtrack 3, instead of a USB Drive with BT2). I then went into
VirtualBox's "Settings", "Details", "CD/DVD-ROM" settings. I unchecked "Mount CD/DVD-ROM"
to unmounted the "bt3final_usb.iso" file and made the first virtual HD the boot drive,
upon rebooting all changes were sticky.
Use "fdisk /dev/hda" to make your first partition (boot) 1.5GB, your swap 1GB and use the
rest for the root (using an 8GB HD). You can type "p" in fdisk and it should print a table
as shown below (use "m" as needed, and don't forget to "w"rite). You may prefer to use cfdisk
instead of fdisk as it is easier to use and may have fewer bugs.
Code:
bt ~ # fdisk -l /dev/hda
Disk /dev/hda: 8589 MB, 8589934592 bytes
16 heads, 63 sectors/track, 16644 cylinders
Units = cylinders of 1008 * 512 = 516096 bytes
Device Boot Start End Blocks Id System
/dev/hda1 * 1 2906 1464592+ 83 Linux
/dev/hda2 2907 4844 976752 82 Linux swap
/dev/hda3 4845 16644 5947200 83 LinuxYou can use QTParted to format your HDs but I recommend using fdisk to partition them.
You will now type the following to get setup (thanks to goon123 in thread 16593):
Code:
bt ~ # mkswap /dev/hda2
bt ~ # swapon /dev/hda2
bt ~ # mkdir /mnt/backtrack
bt ~ # mount /dev/hda3 /mnt/backtrack/
bt ~ # mkdir /mnt/backtrack/boot
bt ~ # mount /dev/hda1 /mnt/backtrack/boot/
bt ~ # cp --preserve -R /{bin,dev,home,pentest,root,usr,etc,lib,opt,sbin,var} /mnt/backtrack/
bt ~ # mkdir /mnt/backtrack/{mnt,proc,sys,tmp}
bt ~ # mount --bind /dev/ /mnt/backtrack/dev/
bt ~ # mount -t proc proc /mnt/backtrack/proc/
bt ~ # cp /boot/vmlinuz /mnt/backtrack/boot/
bt ~ # chroot /mnt/backtrack/ /bin/bash
bt ~ # nano /etc/lilo.confYou want the following in your lilo.conf file. Set your vga correctly, here are some
suggested values: "vga=ask" (gives a menu), "vga=normal" (default), or use one of these:
Code:
640x480 800x600 1024x768 1280x1024
32K 784 787 790 793
64K 785 788 791 794
16M 786 789 792 795Code:
# Start LILO global section
lba32
boot /dev/hda
prompt
timeout = 60
change-rules
reset
compact
vga = 792
# End LILO global section
# Linux bootable partition config begins
image = /boot/vmlinuz
root = /dev/hda3
label = Backtrack3
append = ”rootdelay=10”
# Linux bootable partition config ends
The "BT3 Graphics mode (VESA KDE)" command line is:
Code:
/boot/vmlinuz vga=0x317 initrd=/boot/initrd.gz ramdisk_size=6666 root=/dev/ram0 rw autoexec=kdm
Save that and then execute lilo (I like to use the very verbose flag)
bt ~ # lilo -v -v
Exit your chroot enviorment and your Konsole shell.
bt ~ # exit
bt ~ # exit
If you ever wish to edit your lilo.conf after the above create and copy procedure you
can return to where you were by using these commands instead of the above procedure.
First use the CD/DVD-ROM boot disk to start Backtrack 3 and then enter these commands
to adjust your mounts:
Code:
bt ~ # umount /dev/hda1
bt ~ # umount /dev/hda3
bt ~ # swapoff -a
bt ~ # mkdir /mnt/backtrack
bt ~ # mount /dev/hda3 /mnt/backtrack
bt ~ # mount /dev/hda1 /mnt/backtrack/boot
bt ~ # mount --bind /dev/ /mnt/backtrack/dev/
bt ~ # mount -t proc proc /mnt/backtrack/proc/
bt ~ # chroot /mnt/backtrack/ /bin/bash
bt ~ # nano /etc/lilo.conf
bt ~ # lilo -v
Use the "Start" button "Log Out", "Turn Off Computer" to exit Backtrack3.
In VirtualBox's "Settings", "Details", "CD/DVD-ROM" pane you can click on the
"Mount CD/DVD-ROM Drive" to disengage the "bt3final_usb.iso" from the CD/DVD-ROM
drive or better still go to "Settings", "General", "Advanced", "Boot Order" and
click on "Hard Disk" and the "Up Arrow" (to the right) to make the HD boot first.
Click "OK" and now click the green "Start" right-arrow to restart Backtrack 3 (from the VHD).
Ensure that Backtrack 3 is working and use the "Start" button to "Log Out","
31.): In some Wireless Network Drivers you are able to use Bridging, and some you can not.
If you have a very new computer then, when configuring VirtualBox, you are able to set
on the "General", "Settings", "Advanced" tab the "Extended Features", "Enable VT-x/AMD-V"
checkbox. With this set you can use VT-d to directly access your Wireless Network card.
My computer is new, but not that new so I had to use Bridging, here is what I did:
In Windows open the "Network Connections", locate and click on both your "Wireless
Network Adapter" and your "VirtualBox TAP Adapter", now right-click and choose Bridge.
32.): When you have everything correctly installed on your HD you can add the Virtual Tools.
In the VirtualBox menu "Devices" there is an entry called "Install Guest Additions...".
To install these tools go to the VirtualBox Toolbar (bottom right of the window) and
right-click on the CD/DVD-ROM, choose "Unmount CD/DVD-ROM" to unmount the Backtrack 3
installation CD/DVD-ROM.
Now select "Install Guest Additions..." and it will appear on your Backtrack 3 Desktop
as a CD Icon. The file is called VBOXADDITIONS_2.0.2_36486. In order to mount this file
you will need to open Konsole and create a new directory called /mnt/hdc first.
When you have it mounted in your Konsole type this and then reboot:
Code:
cd /mnt/hdc
./VBoxLinuxAdditions-x86.run
echo 98vboxadd-xclient > ~/.xinitrc
reboot
33.): Start Backtrack 3 in VirtualBox and type "ifconfig", notice that you have "eth1" and "lo".
If you can use VT-d then you might have your Wireless Networking already working but for
the rest of use that must use Bridging you can enable Promiscuous mode on the Bridge:
Code:
ifconfig eth0 up
ip link set dev eth0 promisc onNow type "ifconfig" and you will see "PROMISC" working for eth0 (your Wireless Bridge).
Notice your HWaddr, it should be the MAC of your "Wireless Network Adapter".
When following tips given you will use eth0 instead of wifi0 or ath0 and likely will
need to tweak the tips a bit to get everything working to the extent it is possible.
You will find that some programs only work if they can detect a "Wireless Network
Adapter". Wireshark works but you might want to filter out "STP" packets. You can
also use any of Backtrack 3's tools on capture files saved from OmniPeek (you can use
Wireshark to read OmniPeek ".pkt" files and save them to ".cap" format.
write by Nokii@forums.remote-exploit.org
Search Hacking Mode Trick Updates
Installing Backtrack 3 under VirtualBox - Part 3
Subscribe to:
Post Comments (Atom)
Post Friends Link
CATEGORY
- aircrack (1)
- Airdecloak-ng (1)
- AiroWizard (1)
- Airtun-ng (1)
- Application Patching (1)
- Arpwatch (1)
- backtrack (23)
- Backtract DOWNLOAD (2)
- Beer Pong Table (2)
- Bluetooth (2)
- Cain (1)
- cracking (2)
- Download Airowizard Manual (1)
- Dual Boot (1)
- Easside-ng (1)
- Email Spoofing (1)
- Ettercap (1)
- Exploit Hacking (1)
- Fast-Track (1)
- Gateway (1)
- Generator (1)
- hacking (26)
- Hacking Basics (1)
- handphone (8)
- HUAWEI (1)
- Huawei EC506 (1)
- Injection (1)
- Intel Wireless Wi-Fi 5100 Card injection OK (2)
- Introduction (1)
- Local Password Cracking (1)
- Lock Picking (3)
- Lock Picking Basics (1)
- McAfee (1)
- Metasploit Autopwn (1)
- nokia (1)
- Packet Injection wifi Intel 4965 AGN (1)
- Packetforge-ng (1)
- Panen Password (1)
- Password (1)
- phising (1)
- phone hacking (3)
- Phone Phreaking (1)
- Recovering an Acer Computer (1)
- SIUC’s Network (1)
- Sniffing VoIP (1)
- Snipper (2)
- Spoonwep2 (1)
- Sql Injection (3)
- ssldump (1)
- Staying Secure - SSH Tunnel (1)
- t (1)
- TCP / IP (3)
- The 60 Minutes Effect (1)
- Tkiptun-ng (2)
- Tool Spoonwpa Wpa Key (1)
- trik (12)
- Triple Boot (1)
- tutorial (9)
- ubuntu (1)
- usb (2)
- USB Worm (Jamesgo.dll) (1)
- video (10)
- Website Hacking (2)
- Wesside-ng (1)
- Wi-Fi (9)
- windows (5)
- wireless (9)
- Wireless 3945ABG (2)
- WPA (1)
- WPA wireless encryption cracked (1)
- XSS Tunnel (1)
Archive
-
▼
2008
(105)
-
▼
November
(57)
- Installasi Program di Backtrack [ Part I ]
- Compiling and Installing The Latest Xorg 7.2
- Koneksi ke OPEN/WEP WLAN ( DHCP )
- Koneksi ke OPEN/WEP WLAN ( Setup IP Manual )
- Kumpulan Perintah iwconfig
- Gateway Backtrack2
- Manajemen User di Backtrack
- BackTrack
- Mdk3 Secret Destruction Mode
- Sniffing SSL traffic using MITM attack / ettercap,...
- ssldump
- Nokia Energy Profiler 1.1
- FTD FieldTest NetMonitor S60v3 SymbianOS9.1/9.2
- JoikuSpot Light v2.1 Beta S60v3 SymbianOS [Updated...
- Counter measurements of FTE against copying their ...
- Sucking Data off of Cell Phones
- Packet Injection wifi Intel 4965 AGN
- Destruction Mode Charon 2 GUI
- WPA Wi-Fi Security Gets Cracked
- tkiptun-ng
- WPA wireless encryption cracked
- Tkiptun-ng
- Airdecloak-ng
- Airtun-ng
- Packetforge-ng
- Wesside-ng
- Easside-ng
- Installing Backtrack 3 under VirtualBox
- Installing Backtrack 3 under VirtualBox - Part 2
- Installing Backtrack 3 under VirtualBox - Part 2
- Installing Backtrack 3 under VirtualBox - Part 3
- Tool Spoonwpa Wpa Key
- Spoonwep2
- Fast-Track version 3.4
- AiroWizard 1.0 Beta revision 240
- aircrack-ptw in Windows using AirPcap Tx and Cain
- WEP cracked, using BackTrack 3 on my EeePc 900
- Giga Password Generator
- Cracking WPA with GPU support
- Wich cheap usb card to buy ?
- Wich cheap usb card to buy ?
- Intel Wireless Wi-Fi 5100 Card injection OK
- How to catch hackers on your wireless network
- How to catch hackers on your wireless network
- Arpwatch
- Wirelessly Keyboard Hack
- Fujitsu Siemens Bluetooth V2.0 - BC4
- Super Bluetooth Hack 1.8
- Super Bluetooth Hack 1.8 Free Download Super B...
- Wireless Gateway Huawei
- Download Airowizard Manual
- Packet Injection wifi Intel 4965 AGN
- TUTORIAL MENJEBOL PROTEKSI WEP
- Panen Password email dengan Ettercap
- Install BackTrack 3 dual boot with Windows XP
- Backtract 3 Final Released
- Howto Install Backtrack 3 Final ke Hardisk menggun...
-
▼
November
(57)
0 comments:
Post a Comment