• Home
  • Posts RSS
  • Comments RSS
  • ediant.wordpress.com
Blue Orange Green Pink Purple

Install Backtrack 4 Beta with Modification

Backtrack 4 Beta does not contain an installer in it yet, so we've compiled this cookbook for getting the "perfect" BT4 install up and running quickly. The assumption is that you are installing BT4 on an empty disk /dev/sda (mybee diffrent with your's). Make sure to adjust this accordingly if needed.

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

Read More 0 komentar | Diposting oleh ediant edit post

Customizing Backtrack 4 Beta

First login with username "root" and password "toor" then do what you want
  • Enable networking

root@bt:~# /etc/init.d/networking start
root@bt:~# /etc/init.d/NetworkManager start
root@bt:~# update-rc.d networking defaults
root@bt:~# update-rc.d NetworkManager defaults

command update-rc.d is for start the service at startup, so in future we don't have to configure it again.

  • Enable Firewall
ufw is program for managing a Linux firewall and aims to provide an easy to use interface for the user. To enable and make it auto start at startup just do like this :

root@bt:~# /etc/init.d/ufw enable

To turning off just do the same thing but at last replace enable with disable

  • Enable tinyproxy
tinyproxy is an HTTP proxy server designed to consume a minimum of system resources. It listens on a given TCP port and handles HTTP proxy requests.
To enable it just do like this :

root@bt:~# /etc/init.d/tinyproxy start

  • Install Kmix
Kmix is a mini audio mixer for kde. It allows the user to change volume settings for each sound device (master, CD, line, mic, ...), in default Backtrack doesn't come with this program, so for installing it just do like this :
a. Open Synaptic packagemanager from Kmenu then search package name kmix-kde3
b. Install it with give a checkmark and press apply
c. To run it just open terminal and type

root@bt:~# /opt/kde3/bin/kmix

and to make it start at startup just do like this, open terminal and type

root@bt:~# cd .kde3/Autostart/
root@bt:~/.kde3/Autostart# ln -s /opt/kde3/bin/kmix kmix
Read More 0 komentar | Diposting oleh ediant edit post

My "Customize" Firefox and Add-ons

Firefox is My favorite browser, it's because Firefox is build with secure and also free for costumize, now I wanna share my configuration on Firefox, type about:config in web address,then customize like this

network.http.max-connections integer set to 64
network.http.max-connections-per-server integer set to 20
network.http.max-persistent-connections-per-proxy integer set to 10
network.http.pipelining boolean set to true
network.http.pipelining.maxrequests integer set to 100
network.http.proxy.pipelining boolean set to true
network.http.request.max-start-delay integer set to 0

add this :
nglayout.initialpaint.delay integer 0

Then my favorite Add-ons is :
1. Access Me
2. Adblock Plus
3. Advanced Dork
4. ASnumber
5. Sidebar Autohide
6. Better Lifehacker
7. Better Youtube
8. Cooliris
9. Download Statusbar
10.Firebug
11.FireFTP
12.FoxyProxy
13.FoxyTunes
14.Ghostery
15.Greasemonkey
16.HackBar
17.HttpFox
18.LiveHTTPheaders
19.NoScript
20.Page Hacker
21.Poster
22.Server Spy
23.SQLInjectMe
24.View Cookies
25.Web Developer
26.wmlbrowser
27.XSS Me
28.DownThemAll
Read More 0 komentar | Diposting oleh ediant edit post

Boot Linux from USB drive

Making is easy for anyone to install, boot and run Linux portably from a USB drive! What we need is download a UNetbootin that can run from Windows or Linux, you just double click at the program and then you just follow the instruction then you will get your bootable usb. Many distro that we can install,like Ubuntu nice Linux for home user, NTPasswda utility which can rescue Windows Password and Registry,

Installation and Screenshots
1. If using Windows, run the file, select a distribution and also the version, then find the disk image or kernel/initrd to load, select a target drive (USB Drive or Hard Disk), then reboot once done.





2. If using Linux, make the file executable (using either the command chmod +x ./unetbootin-linux, or going to Properties->Permissions and checking "Execute"), then start the application, you will be prompted for your password to grant the application administrative rights, then the main dialog will appear, where you select a distribution and install target (USB Drive or Hard Disk), then reboot when prompted.

3. After rebooting, if you created a Live USB drive by selecting "USB Drive" as your install target, press the appropriate button (usually F1, F2, F12, ESC, or backspace) while your computer is starting up to get to your BIOS boot menu and select USB drive as the startup target; otherwise if there's no boot selection option, go to the BIOS setup menu and change the startup order to boot USB by default. Otherwise, if you did a "frugal install" by selecting "Hard Disk" as your install target, select the UNetbootin entry from the Windows Boot Menu as the system boots up.

click here for more information

Read More 0 komentar | Diposting oleh ediant edit post

What this blog's for

Actually i want to learn how to create article with english leanguage, so i create this blog and i'm so sory if my english is poor, in other wise this blog is support for ediant.wordpress.com that use Indonesian leanguage.
thank's and happy reading.......
Read More 0 komentar | Diposting oleh ediant edit post

WaNNa be anT !!

  • About
      Blog support for ediant.wordpress.com
      I hope this little word can helping you!
      Welcome and thanks for reading.....
  • YM! Online

    Arsip Blog

    • ▼  2009 (5)
      • ▼  April (4)
        • Install Backtrack 4 Beta with Modification
        • Customizing Backtrack 4 Beta
        • My "Customize" Firefox and Add-ons
        • Boot Linux from USB drive
      • ►  Januari (1)

    Search Engine Optimization and SEO Tools
  • Search






    • Home
    • Posts RSS
    • Comments RSS
    • ediant.wordpress.com

    © Copyright ediant world !!. All rights reserved.
    Designed by FTL Wordpress Themes | Bloggerized by FalconHive.com
    brought to you by Smashing Magazine

    Back to Top