Image
 
linkedin_logo.png rss_logo.jpg
twitter_logo.png youtube_logo.jpg
Latest Additions
 
EH-Net Login
Welcome Guest.






Lost Password?
No account yet? Register
Who's Online
We have 397 guests and 2 members online
 
Advertisement

You are here: Home arrow Ethical Hacking Discussions and Related Certificationsarrow Network Pen Testingarrow help with CEH-backtrack ?
EH-Net
May 20, 2013, 03:32:51 AM *
Welcome, Guest. Please login or register.
Did you miss your activation email?

Login with username, password and session length
News: Go back to The Ethical Hacker Network Online Magazine Home Page
 
   Home   Help Calendar Login Register  
Pages: 1 [2]   Go Down
  Print  
Author Topic: help with CEH-backtrack ?  (Read 17655 times)
0 Members and 1 Guest are viewing this topic.
rebrov
Full Member
***
Offline Offline

Posts: 130



View Profile
« Reply #15 on: June 20, 2009, 07:22:15 AM »

its hda not sda and if im not sure how can i know ??

Logged
rebrov
Full Member
***
Offline Offline

Posts: 130



View Profile
« Reply #16 on: June 20, 2009, 07:25:41 AM »

i done every thing and the first commands working well

umount /dev/hda1


Run QTParted to resize the NTFS partition
KDE menu > System > QTParted
Resize sda1 to make free space for BackTrack and save changes. Exit QTParted.

Create Linux partitions for BackTrack
Code:

fdisk /dev/hda

Create a primary partition number hda2 name it linux
Create a primary partition number hda3 1 GB in size, this will be swap

Format the new partitions
Code:

mkfs.ext3 /dev/hda2
mkswap /dev/hda3
swapon /dev/hda3


untill i begone to start copying the directories with this command

bt ~ # cp --preserve -R /{bin,dev,home,pentest,root,usr,etc,lib,opt,sbin,var} /mnt/backtrack/


its said can't create /mnt/backtrack/bin    ready only file system

and it says this also for the rest files not bin only :S:S
Logged
viruz
Jr. Member
**
Offline Offline

Posts: 50


View Profile
« Reply #17 on: June 20, 2009, 12:32:21 PM »

did u do this befoe u start the copy the files?

bt ~ # mkdir /mnt/backtrack
bt ~ # mount /dev/hda2 /mnt/backtrack/
bt ~ # mkdir /mnt/backtrack/boot/
bt ~ # mount /dev/hda2 /mnt/backtrack/boot/

you have to do that first.. or if u can get an installer, it will ease your problems...you just have to do the above and after run the self installer. after installer finishes the installation, then you will have to configure lilo.
Logged
rebrov
Full Member
***
Offline Offline

Posts: 130



View Profile
« Reply #18 on: June 20, 2009, 03:00:15 PM »

did u do this befoe u start the copy the files?

bt ~ # mkdir /mnt/backtrack
bt ~ # mount /dev/hda2 /mnt/backtrack/
bt ~ # mkdir /mnt/backtrack/boot/
bt ~ # mount /dev/hda2 /mnt/backtrack/boot/

you have to do that first.. or if u can get an installer, it will ease your problems...you just have to do the above and after run the self installer. after installer finishes the installation, then you will have to configure lilo.

ya i did all of this commands thats wat make it strange i did this commands be4 i start the copying command dunno wat to do else :S
Logged
viruz
Jr. Member
**
Offline Offline

Posts: 50


View Profile
« Reply #19 on: June 20, 2009, 10:11:17 PM »

ok, lets take another way around it, now you gonna use the installer..ok?

after these,

fdisk /dev/hda

mkfs.ext3 /dev/hda2
mkswap /dev/hda3
swapon /dev/hda3

do

bt ~ # mkdir /mnt/backtrack
bt ~ # mount /dev/hda2 /mnt/backtrack/

after that run the installer which i have attached, it will auto install the files and dir and all you need to get BT up and running.

In the Installation method on the installer, SELECT "REAL" and make sure you uncheck "Restore original MBR after lilo", very neccessary, also in the Install backtrack to, make sure it is "/mnt/backtrack"

after that is done, click on install and let it run, after it says 100% complete, config your lilo.

i think you still know how to config lilo like te way i wrote earlier,

you can edit it with your favorite editor, eg nano, i prefer kwrite..much easier.

"kwrite /etc/lilo.conf"  after edit and save then "lilo -v"

it may be needed you chroot so you dont recong the lilo of the live cd or rather you reboot, once you reboot your machine, you will boot directly into BT, then you config your lilo and specify your other boot options which is windows, after you on start up you will be presented with lilo so you can select where you wanna boot into.
« Last Edit: June 20, 2009, 10:13:06 PM by viruz » Logged
rebrov
Full Member
***
Offline Offline

Posts: 130



View Profile
« Reply #20 on: June 21, 2009, 04:53:10 AM »

ok, lets take another way around it, now you gonna use the installer..ok?

after these,

fdisk /dev/hda

mkfs.ext3 /dev/hda2
mkswap /dev/hda3
swapon /dev/hda3

do

bt ~ # mkdir /mnt/backtrack
bt ~ # mount /dev/hda2 /mnt/backtrack/

after that run the installer which i have attached, it will auto install the files and dir and all you need to get BT up and running.

In the Installation method on the installer, SELECT "REAL" and make sure you uncheck "Restore original MBR after lilo", very neccessary, also in the Install backtrack to, make sure it is "/mnt/backtrack"

after that is done, click on install and let it run, after it says 100% complete, config your lilo.

i think you still know how to config lilo like te way i wrote earlier,

you can edit it with your favorite editor, eg nano, i prefer kwrite..much easier.

"kwrite /etc/lilo.conf"  after edit and save then "lilo -v"

it may be needed you chroot so you dont recong the lilo of the live cd or rather you reboot, once you reboot your machine, you will boot directly into BT, then you config your lilo and specify your other boot options which is windows, after you on start up you will be presented with lilo so you can select where you wanna boot into.
Undecided

thanks bro i will try this but question : how can i run this installer ?
Logged
viruz
Jr. Member
**
Offline Offline

Posts: 50


View Profile
« Reply #21 on: June 21, 2009, 01:27:17 PM »

just double click on it in your root dir, or right click and select open. like you do to exe files in windows.
Logged
UNIX
Hero Member
*****
Offline Offline

Posts: 1234


View Profile
« Reply #22 on: June 22, 2009, 02:28:04 AM »

Maybe it would help you to go first with another linux distribution and learn some basics and get more familiar with linux in general.
Logged
rebrov
Full Member
***
Offline Offline

Posts: 130



View Profile
« Reply #23 on: June 22, 2009, 07:35:46 AM »

i did it and then i began to copy files from the installer it hang on 50 % why :S ?

at the copying of the pentest

i make the write to MBR : /dev/hda    and there's no another choice was that wrong wat i did ?
Logged
viruz
Jr. Member
**
Offline Offline

Posts: 50


View Profile
« Reply #24 on: June 22, 2009, 05:42:59 PM »

no, but make sure u do not click restore original mbr, also if it seems to hang at a % try to press X like you want to close it, it wont close but resume.
Logged
rebrov
Full Member
***
Offline Offline

Posts: 130



View Profile
« Reply #25 on: June 22, 2009, 06:28:28 PM »

no, but make sure u do not click restore original mbr, also if it seems to hang at a % try to press X like you want to close it, it wont close but resume.

the problem is this dist got its own installer but it doesn't have this option : restore original mbr :S
Logged
viruz
Jr. Member
**
Offline Offline

Posts: 50


View Profile
« Reply #26 on: June 22, 2009, 07:25:07 PM »

then use the installer that came with it bro
Logged
rebrov
Full Member
***
Offline Offline

Posts: 130



View Profile
« Reply #27 on: June 23, 2009, 12:54:20 PM »

but it doesn't have this option : resote original mbr

is this alright ?

im sorry cuz it took too long to install this sorry but i hope u not upset guys from answering me espicially u Viruz
Logged
viruz
Jr. Member
**
Offline Offline

Posts: 50


View Profile
« Reply #28 on: June 23, 2009, 07:55:04 PM »

never mind, i learn from sharing....broadens knowledge and experience. If it does not have restore original mbr, then its good coz you do not need it anyway, yea it may take long to install, do like you want to close it by clicking on cancel, it wont cancel but resume installation.
Logged
rebrov
Full Member
***
Offline Offline

Posts: 130



View Profile
« Reply #29 on: June 24, 2009, 09:23:00 AM »

i will try okay thanks:)
Logged
Pages: 1 [2]   Go Up
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.18 | SMF © 2013, Simple Machines
Joomla Bridge by JoomlaHacks.com
Valid XHTML 1.0! Valid CSS!
Page created in 0.078 seconds with 22 queries.
 
Exclusive Deal

sansfire13_245x90_cw90.jpg
SANSFIRE 2013
June 15 - 22

5% Off w/ Code: EHN_5

SANS Deals 4 EH-Netters
5% OFF Any SANS Course in Any Format!
Coupon Code: EHN_5 Including SANS Rocky Mountain 2013 & SANS Boston 2013
Polls
Compared to this year, 2013 will be:
 
Recent Forum Topics
EH-Net News Feeds
Latest Additions
 
         
Free Business and Tech Magazines and eBooks

© 2013 The Ethical Hacker Network
Joomla! is Free Software released under the GNU/GPL License.