<?xml version="1.0" encoding="UTF-8"?> <rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" ><channel><title>Talking about Gadget and Computer Freak &#187; 5 way installing Backtrack 4 to hardisk</title> <atom:link href="http://www.allfreesource.com/tag/5-way-installing-backtrack-4-to-hardisk/feed" rel="self" type="application/rss+xml" /><link>http://www.allfreesource.com</link> <description>Talking about Gadget,Software,Tweak, Games and Tutorial</description> <lastBuildDate>Wed, 08 Sep 2010 14:33:05 +0000</lastBuildDate> <generator>http://wordpress.org/?v=2.9.2</generator> <language>en</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" /> <item><title>5 way installing Backtrack 4 to hardisk</title><link>http://www.allfreesource.com/tutorial/5-way-installing-backtrack-4-to-hardisk.html</link> <comments>http://www.allfreesource.com/tutorial/5-way-installing-backtrack-4-to-hardisk.html#comments</comments> <pubDate>Mon, 30 Mar 2009 11:07:55 +0000</pubDate> <dc:creator>Radikal Zen</dc:creator> <category><![CDATA[Tutorial]]></category> <category><![CDATA[5 way installing Backtrack 4]]></category> <category><![CDATA[5 way installing Backtrack 4 to hardisk]]></category> <category><![CDATA[backtrack 4]]></category> <category><![CDATA[installing Backtrack 4]]></category> <category><![CDATA[installing Backtrack 4 to hardisk]]></category><guid isPermaLink="false">http://www.allfreesource.com/tutorial/5-way-installing-backtrack-4-to-hardisk.html</guid> <description><![CDATA[BackTrack 4 Beta does not contain an  installer  in it yet  Weve compiled this  for getting the perfect BT4 install up and running quickly. The assumption is that you are installing BT4 on an empty disk (/dev/sda in our case).  Make sure to adjust this accordingly if needed. thank for BT forum. Iam just copy and paste [...]]]></description> <content:encoded><![CDATA[<p><img class="alignleft" src="http://i608.photobucket.com/albums/tt168/radiaku/backtrack.png" alt="Backtrack 4" width="104" height="83" />BackTrack 4 Beta does not contain an  installer  in it yet  Weve compiled this  for getting the perfect<br /> BT4 install up and running quickly. The assumption is that you are installing BT4 on an empty<br /> disk (/dev/sda in our case).  Make sure to adjust this accordingly if needed. thank for BT forum. Iam just copy and paste here !!</p><p><span id="more-674"></span><br /> 1.  Start by partitioning the disk. Create 3 partitions for boot, swap and root.</p><blockquote><p>root@bt:~# fdisk /dev/sda</p><p>The number of cylinders for this disk is set to 1044.<br /> There is nothing wrong with that, but this is larger than 1024,<br /> and could in certain setups cause problems with:<br /> 1) software that runs at boot time (e.g., old versions of LILO)<br /> 2) booting and partitioning software from other OSs<br /> (e.g., DOS FDISK, OS/2 FDISK)</p><p>Command (m for help): n<br /> Command action<br /> extended<br /> primary partition (1-4)</p><p>Partition number (1-4): 1<br /> First cylinder (1-1044, default 1):<br /> Using default value 1<br /> Last cylinder, +cylinders or +size{K,M,G} (1-1044, default 1044): +128M</p><p>Command (m for help): n<br /> Command action<br /> extended<br /> primary partition (1-4)</p><p>Partition number (1-4): 2<br /> First cylinder (10-1044, default 10):<br /> Using default value 10<br /> Last cylinder, +cylinders or +size{K,M,G} (10-1044, default 1044): +1024M</p><p>Command (m for help): n<br /> Command action</p></blockquote><blockquote><p>extended<br /> primary partition (1-4)</p><p>Partition number (1-4): 3<br /> First cylinder (142-1044, default 142):<br /> Using default value 142<br /> Last cylinder, +cylinders or +size{K,M,G} (142-1044, default 104<br /> Using default value 1044</p><p>Command (m for help): t<br /> Partition number (1-4): 2<br /> Hex code (type L to list codes): 82<br /> Changed system type of partition 2 to 82 (Linux swap / Solaris)</p><p>Command (m for help): a<br /> Partition number (1-4): 1</p><p>Command (m for help): w<br /> The partition table has been altered!</p><p>Calling ioctl() to re-read partition table.<br /> Syncing disks.<br /> root@bt:~#</p></blockquote><p>2.  Format  the  file  systems,  mount  them  and  copy  over  the  directory  structure.  Chroot  into  new<br /> environment.</p><blockquote><p>root@bt:~# mke2fs /dev/sda1<br /> root@bt:~# mkswap /dev/sda2<br /> root@bt:~# swapon /dev/sda2<br /> root@bt:~# mkreiserfs /dev/sda3<br /> root@bt:~# mkdir /mnt/bt<br /> root@bt:~# mount /dev/sda3 /mnt/bt/<br /> root@bt:~# mkdir /mnt/bt/boot<br /> root@bt:~# mount /dev/sda1 /mnt/bt/boot<br /> root@bt:~# cp &#8211;preserveÂ  -R \<br /> /{bin,dev,home,pentest,root,usr,boot,etc,lib,opt,sbin,var} /mnt/bt/<br /> root@bt:~# mkdir /mnt/bt/{mnt,tmp,proc,sys}<br /> root@bt:~# chmod 1777 /mnt/bt/tmp/<br /> root@bt:~# mount -t proc proc /mnt/bt/proc<br /> root@bt:~# mount -o bind /dev /mnt/bt/dev/<br /> root@bt:~# chroot /mnt/bt/ /bin/bash</p></blockquote><p>3.  Configure /etc/lilo.conf to reflect your setup.</p><blockquote><p>lba32<br /> boot=/dev/sda<br /> root=/dev/sda3</p><p># bitmap=/boot/sarge.bmp<br /> # bmp-colors=1,,0,2,,0<br /> # bmp-table=120p,173p,1,15,17<br /> # bmp-timer=254p,432p,1,0,0<br /> # install=bmp</p><p># delay=20</p><p>prompt<br /> timeout=50</p><p># map=/boot/map</p><p>vga=0&#215;317</p><p>image=/boot/vmlinuz<br /> label=&#8221;BT4&#8243;<br /> read-only<br /> initrd=/boot/splash.initrd<br /> append=quiet</p></blockquote><p>4.  Fix first line in /etc/fstab, and remove unnecessary mount lines. Add the swap partition to the fstab<br /> so it gets loaded at boot time. Your fstab should look similar to this:</p><blockquote><p>/dev/sda3 / reiserfs defaults 0 0 # AutoUpdate<br /> /dev/sda2 none swap sw 0 0<br /> proc /proc proc defaults 0 0 # AutoUpdate<br /> sysfs /sys sysfs defaults 0 0 # AutoUpdate<br /> devpts /dev/pts devpts gid=5,mode=620 0 0 # AutoUpdate<br /> tmpfs /dev/shm tmpfs defaults 0 0 # AutoUpdate</p></blockquote><p>5.  Execute lilo and reboot!</p><blockquote><p>root@bt:/# lilo -v<br /> LILO version 22.8, Copyright (C) 1992-1998 Werner Almesberger<br /> Development beyond version 21 Copyright (C) 1999-2006 John Coffman<br /> Released 19-Feb-2007, and compiled at 14:08:06 on May 15 2008<br /> Ubuntu</p><p>Reading boot sector from /dev/sda<br /> Using MENU secondary loader<br /> Calling map_insert_data</p><p>Boot image: /boot/vmlinuz<br /> Mapping RAM disk /boot/splash.initrd<br /> Added BT4 *</p><p>Writing boot sector.<br /> Backup copy of boot sector in /boot/boot.0800<br /> root@bt:/# exit<br /> exit<br /> root@bt:~# reboot</p></blockquote><p>Not enough <a href="http://www.allfreesource.com/tag/download"title="Download" >download</a> the tutorial on pdf</p><p>Download <a href="http://www.4shared.com/file/95763095/3dd593c9/bt4install.html" rel="nofollow">here </a></p><p>Thank to shawn, fixed the link download. enjoy</p><p>Maybe <strong>you need at least 5 GB hard drive size for Backtrack 4 installation</strong>.</p><div class="ad"><h2> Interesting Stuff</h2> <script type="text/javascript">google_ad_client="pub-8338369608713732";google_ad_slot="7503365297";google_ad_width=336;google_ad_height=280;</script> <script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script> </div><div style="clear:both;"></div> <br /><div class="ad"><h2>Related Posts:</h2> <a href="http://www.allfreesource.com/software/backtrack-4-beta-has-been-release.html" rel="bookmark" class="crp_title">Backtrack 4 Beta has Been Release !</a><br><div class="crp_excerpt">Yeah, to every security user, its has a great news. We will rock you brother. cause what ? Backtrack 4 ...</div> <a href="http://www.allfreesource.com/software/backtrack-4-beta-has-been-release.html" class="crp_adurl">www.allfreesource.com</a><div class="clearads"></div> <a href="http://www.allfreesource.com/tutorial/removing-stock-apps-with-root-explorer-tutorial.html" rel="bookmark" class="crp_title">Removing stock apps with Root Explorer Tutorial</a><br><div class="crp_excerpt">Finally I has found a tutorial about how to removing stock apps with Root Explorer in your samsung moment. I ...</div> <a href="http://www.allfreesource.com/tutorial/removing-stock-apps-with-root-explorer-tutorial.html" class="crp_adurl">www.allfreesource.com</a><div class="clearads"></div> <a href="http://www.allfreesource.com/tutorial/app2sd-for-spica-tutorial.html" rel="bookmark" class="crp_title">Apps to Sd for spica tutorial</a><br><div class="crp_excerpt"> For you that search for app2sd tutorial for spica, now i has found a tutorial about it. This app2sd for ...</div> <a href="http://www.allfreesource.com/tutorial/app2sd-for-spica-tutorial.html" class="crp_adurl">www.allfreesource.com</a><div class="clearads"></div> <a href="http://www.allfreesource.com/gadget/ps3-swiss-army-knife-sak-tool-that-you-must-have-for-your-ps3.html" rel="bookmark" class="crp_title">PS3 Swiss Army Knife (SAK), Tool That you must have for your PS3</a><br><div class="crp_excerpt"> This is you need for your PS3, the PS3 Swiss Army Knife, Doing almost you can do. But I warn ...</div> <a href="http://www.allfreesource.com/gadget/ps3-swiss-army-knife-sak-tool-that-you-must-have-for-your-ps3.html" class="crp_adurl">www.allfreesource.com</a><div class="clearads"></div> <a href="http://www.allfreesource.com/phone/load-apps-from-sdcard-not-your-phone.html" rel="bookmark" class="crp_title">Load Apps from SDCard not your Phone</a><br><div class="crp_excerpt"> By default, Apps directory path is on your phone. But I found out how to move Default Apps Location to ...</div> <a href="http://www.allfreesource.com/phone/load-apps-from-sdcard-not-your-phone.html" class="crp_adurl">www.allfreesource.com</a><div class="clearads"></div></div><a href="http://www.allfreesource.com/tutorial/5-way-installing-backtrack-4-to-hardisk.html" title="installing bt4">installing bt4</a>, <a href="http://www.allfreesource.com/tutorial/5-way-installing-backtrack-4-to-hardisk.html" title="backtrack 4 partition size">backtrack 4 partition size</a>, <a href="http://www.allfreesource.com/tutorial/5-way-installing-backtrack-4-to-hardisk.html" title="backtrack root@bt">backtrack root@bt</a>, <a href="http://www.allfreesource.com/tutorial/5-way-installing-backtrack-4-to-hardisk.html" title="root@bt">root@bt</a>, <a href="http://www.allfreesource.com/tutorial/5-way-installing-backtrack-4-to-hardisk.html" title="How to install BT4">How to install BT4</a>, <a href="http://www.allfreesource.com/tutorial/5-way-installing-backtrack-4-to-hardisk.html" title="bt4 backtrack">bt4 backtrack</a>, <a href="http://www.allfreesource.com/tutorial/5-way-installing-backtrack-4-to-hardisk.html" title="root@bt backtrack">root@bt backtrack</a>, <a href="http://www.allfreesource.com/tutorial/5-way-installing-backtrack-4-to-hardisk.html" title="BT4 INSTALL">BT4 INSTALL</a>, <a href="http://www.allfreesource.com/tutorial/5-way-installing-backtrack-4-to-hardisk.html" title="backtrack 4 root@bt">backtrack 4 root@bt</a>, <a href="http://www.allfreesource.com/tutorial/5-way-installing-backtrack-4-to-hardisk.html" title="install bt4">install bt4</a>]]></content:encoded> <wfw:commentRss>http://www.allfreesource.com/tutorial/5-way-installing-backtrack-4-to-hardisk.html/feed</wfw:commentRss> <slash:comments>2</slash:comments> </item> </channel> </rss>
<!-- Served from: www.allfreesource.com @ 2010-09-09 17:03:57 by W3 Total Cache -->