UniX;d3cyPl3
D4rKoD3rZ

new shit ive learned that i now want to share beware technical programmatical .iso,dvd,hdkill,hd rezorecttion from the grave,bt4.beta

If anyone in the digital community ever killed their Fuckin garbage ass Microsoft before and knows anything about Linux or Unix systems then,"Fuckin Congrad's," your already thinking of superior computing and Unique Intellectuals.

 This article of knowledge is tipically for me to retain knowledge but I felt like this particular subject was one of great interest to me.Recently I have came across operation systems that say "Live Distro,"and "No" Installer for some Operation systems till now I thought "not much I could do about that."

 I want to teach you how to Install Operation System "X" through the "X-terminal",this method you can use to Install any Linux system on the harddrive. But for starters you will have to download a complete operation system,now from here I would give you links and shit but its not like you care if your not already a Linux user and if you are you already know where to go to get them.If you really are interested in it drop me a line.Im at scriptkiddy666@yahoo.com 

 Once you have your Operation system downloaded onto your computer it should spit out a ".iso"-file so for example     "x-beta-i386.iso" if you have that completed your almost there.So any fuckin way,excuse me Im a lil tired and its right about 9:45pm,march,3rd,2009 so Im still debating why I am writing this other than to kill another day logically bringing about information that is usefull on all levels. So #1 we have .iso-file located on your computer step two burn the data image onto disk some possible recommendations burn at low levels first then gradually get higher like for example:2X,4X,8X,then try 24X if needed but to have viable data on disk after burn heed my warning.Anyway once that is accomplished you should test your disk first to see if you have a "Running Operation System" but always fuckin remember to jump into your "COMPUTER-BIO'S" and go to "Boot-Settings" and put your CD drive at the top of the list.Now  REBOOT and make sure your fuckin disk is in the tray! Once power is on "If all is well you just got your system up and running and have a live CD/DVD," again fuckin congratz.

 So you now have a bootable CD/DVD but while you were going through it you said to yourself fuck I love this distro!Let me Install it to my harddrive and "Boom" theres no fuckin G.U.I. installer I used to say "%$@#,@!$@,%%@ so you get the picture! Now I say fuck them Use the terminal Install this takes steps however. Step#1 have a bootable CD/DVD. Step#2 Wipe your entire fuckin drive completely!!!!!!! The heres where My Info pays off I will be installing BT4 today but this method works with all Linux systems as long as you know what the file systems look like there are only usually 2-folders the system and boot.For this particular situation I will be using the BT4 system folder but again you can replace BT4 with any system file that is on the CD/DVD's and I will NOT go into how to see the data files if you wanna know email me at scriptkiddy666@yahoo.com

 Fuckin anyways you got your BIO's saying CD/DVD drive on top and your bootable LINUX Operation System and a Partitioned Now Blank drive.Ok excellent your almost there ya shit like this takes an amatuer like 2-8hours, and professionals like me still like 30min-1hour "such as myself".....lol! Well now you can power up the old computer and get ready for your world to change these methods can be used again and again. So here is how to get a linux install over the X-terminal or Command prompt......

 Here is my potion for poison data injections threw the command line..fuckin enjoy....."lol"                       "I WILL NOT BE RESPONSIBLE FOR ANY DAMAGE,LIABILITY,HARDWARE,OR IF YOU DIDNT READ MY INSTRUCTIONS CLEARLY YOUR FAULT NOT MINE I WILL NOT BE HELD RESPONSIBLE FOR ANY AND ALL DAMAGES FOR YOUR OWN ACTIONS TAKE THIS INFORMATION AT YOUR OWN PERIL......

"REMEMBER TO GO TO YOUR COMPUTER BIO'S TO GET TO YOUR BOOTING DEVICES-"SET CD/DVD ON TOP THEN SAVE AND REBOOT."

 

 Here is The Perfect Hard Disk Install for BT4

 Strat by partitioning the disk. Create 3 partitions for root,swap,and boot.

 Pull up a terminal and lets get to work....after your disk loads and your system is running off of CD/DVD.

 

 root@bt:~# fdisk /dev/sda

 The number of cylinders for this disk is set to 1044.

 There is nothing wrong with that, but this is larger than 1024, and could in certain setups cause problems with:

 1) software that runs at boot time (e.g., old versions of LILO)(e.g., DOS FDISK, OS/2 FDISK)

 Command (m for help):n

 Command action

         e          extended

         p          primary partition (1-4)

   p

 Partition number (1-4): 1

 First cylinder (1-1044, default 1) :1         "note:1044 is just default for what space you have to play with

 Using default value 1                                            so technically if you have 9899 +cylinders use 75% of that room."

 Last cylinder, +cylinders or +size{K,M,G} (1-1044, default 1044):+70G               "Im using an 80Gig harddrive."

 

Command (m for help):n

 Command action

         e          extended

         p          primary partition (1-4)

p

Partition number (1-4):2                                     "Partition #2 will be for the swap file system"

 First cylinder (10-1044, default 10):10

 Using default value 10

 Last cylinder, +cylinders or +size{K,M,G} (10-1044, default 1044: +2048M

Command (m for help):n

 Command action

         e          extended

         p          primary partition (1-4)

   p

 Partition number (1-4): 3

 First cylinder (142-1044, default 142: 142

 Using default value 142

 Last cylinder, +cylinders or +size{K,M,G} (142-1044, default 1044):+2048M

 Using default value 1044

 Command  (m for help): t

 Partition number (1-4): 2

 Hex code (type L to list codes): 2

 Changed system type of partition 2 to 82 (Linux swap / Solaris)

 Command (m for help): a

 Partition number (1-4): 3                                      "Shows where the boot partition will be placed"

 Command (m for help): w

 The partition table has been altered!

 Calling ioctl ( ) to re-read partition table.

 Syncing disks.

 root@bt:~#

 

 

 

 

format the "fILEsYSTEM" and  mount them and copy over the dirECTORY structure. chroot into new environment

root@bt:~# mke2fs /dev/sda3

root@bt:~# mkswap /dev/sda2

root@bt:~# swapon /dev/sda2

root@bt:~# mkreiserfs /dev/sda1

root@bt:~# mkdir /mnt/bt

root@bt:~# mount /dev/sda1 /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}

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:~#lilo -v

LILO version 22.8, Copyright (C)  1992-1998 Werner Almesberger

Development beyond version 21 Copyright  (C)  1999-2006 John Coffman

Released 19-Feb-2009,  and compiled at 14:08:06 on May  15 2009

 

 

Reading boot secondary loader

Calling map_insert_data

Boot image: /boot/vmlinuz

Mapping RAM disk  /boot/splash.initrd

Added BT4 *

Writing boot sector.

Backup copy of boot sector in /boot/boot.0800

root@bt:~# exit

exit

root@bt:~# reboot

When you reboot eject cd/dvd

If your at all lucky with the .iso file+data CD/DVD+wiping your entire system+ambition+modifications+some help through the terminal=Happy New Operation System,So Im trying to show you that with some knowledge some people are lethal and dangerous when they are focused and in tune with what one has to do to complete their objectives.I would like to dedicate this to everyone that understands me. Till next time I will try to get to questions if anyone has any..........KrUx_9164

                Another tutorial about Operation systems and "How to" why I put these out I have no fuckin Idea. But I have faith this will intreague another soul or enlighten people hopefully locally for I still question the intellectual standards for where I live..."lol" and if anything gave some stranger a project to do for the day its better to stimulate your mind from time to time rather than waist the chance to enlighten yourself better than just fuckin off time and waisting your lives....till next time.

I will be bringing you all new projects to build and hardware hacking,and new ideaz.