Kernel Bench

Kernel News and How To

un video dimostrativo come funziona backtrak3 su eee pc 1000h tutto è supportato tranne l’audio.
scaricatevi backtrack 3 final versione usb : http://www.remote-exploit.org/backtrack_download.html
scaricatevi il kernel 901_net_gfx.lzm : http://www.mediafire.com/?jhjutbjjyfh
saricatevi unetbootin : http://www.mediafire.com/?inigwilflz3
Avviate unetbootin selezionate diskimage e selezionate la iso di backtrack 3 final usb e selezionate in fondo in quale disco usb volete istarlarlo una volta finito andate nella cartella boot\syslinux e aprite il file syslinux.cfg e copiate dentro questa riga:
LABEL EEE 1000h
MENU LABEL BT3 eee mode
KERNEL /boot/vmlinuz
APPEND vga=0×315 initrd=/boot/Initrd.gz ramdisk_size=6666 root=/dev/ram0 rw load=901_net_gfx.lzm autoexec=xconf;kdm

salvate e riavviate l’eee pc premete esc all’avvio e cliccate su menu label bt3 eee mode e si avvierà backtrack 3 ! buon divertimento!

Duration : 0:2:7

Read the rest of this entry »

Technorati Tags: , ,

This guide is for YDL 6.1 if your running YDL 6.0 or previous, This guide will not work for you, Unless you update your kernel to atleast kernel-2.6.24 or later. Which in that case you might as well just upgrade to YDL 6.1!

You need to be running fullscreen mode in order to use this fix, Fbset is only able to down-scale the resolution it cannot up-scale the resolution. So if you are not already running fullscreen because of the overscan issue, go ahead and switch to fullscreen mode now.

To switch to fullscreen mode open up the terminal and run the command below.

su –
enter your root password
gedit /etc/yaboot.conf

This will open up the yaboot.conf file with the text editor.

To enable fullscreen mode just add 128 to your current mode number under the (default=linux) heading . In the example below you can see the previous mode:# was 3 (3+128=131) So I needed to switch the

append=”video=ps3fb:mode:3 rhgb quiet root=LABEL=/1″

line to

append=”video=ps3fb:mode:131 rhgb quiet root=LABEL=/1″

Before

default=linux
image=/vmlinux-2.6.25.5
label=2.6.25.5
read-only
initrd=/initrd-2.6.25.5.img
append=”video=ps3fb:mode:3 rhgb quiet root=LABEL=/1″

After

default=linux
image=/vmlinux-2.6.25.5
label=2.6.25.5
read-only
Initrd=/initrd-2.6.25.5.img
append=”video=ps3fb:mode:131 rhgb quiet root=LABEL=/1″

Now reboot the system.Once you’ve rebooted into fullscreen mode open up the terminal and run the commands below.

su -
enter your root password
fbset

This will display your current mode settings. Should look like this but your mode/geometry lines will vary.

mode “1280×720-60″
# D: 74.178 MHz, H: 44.957 kHz, V: 59.942 Hz
geometry 1280 720 1280 720 32
timings 13481 260 110 39 26 80 5
bcast true
rgba 8/16,8/8,8/0,8/24
endmode

Take a look at the geometry line. Your going to be copying them to use for a startup script.

geometry 1280 720 1280 720 32

The first line is your xres, in the example above the xres is 1280.

The second line is your yres, in the example above the yres is 720.

The third line is your -vxres, in the example above the -vxres is 1280.

The fourth line is your -vyres, in the example above the -vyres is 720.

xres and vxres = horizontal screen size

yres and vyres = vertical screen size

Copy these numbers your going to need them. Now you need to create a startup script. Open up the terminal and run the commands below to create fbset and open it in the text editor!

su -
enter root password
gedit /etc/init.d/fbset

Replace the -xres -vxres and -yres -vyres with your xres and yres numbers from the fbset test above.

#!/bin/sh
/usr/sbin/fbset -a -xres 1280 -yres 720 -vxres 1280 -vyres 720
exit 0

Now once you’ve created the startup script in /etc/init.d open up the terminal and run the commands below. This will create a symbolic link to your startup script in your rc5.d or rc3.d directory.

If you done a text based install of YDL 6.1 use this command to create youyr symbolic link.

su -
enter root password
ln -s /etc/init.d/fbset /etc/rc3.d/S99fbset

If you done a graphical install of YDL 6.1 then use this command below to create your symbolic link.

su -
enter root password
ln -s /etc/init.d/fbset /etc/rc5.d/S99fbset

Once you’ve created the startup script and the symbolic link, You need to make it executable using chmod. Open up the terminal and run the commands below.

su –
enter root password
chmod 775 /etc/init.d/fbset

Now to fix your overscan issue open up the terminal and run the command below.

su -
enter root password
gedit /etc/init.d/fbset

To get rid of the overscan just modify the -xres -yres -vxres -vyres lines by deducting 10 from each one and save the changes and reboot. It will take multiple reboots to get the correct settings but you will get it. Note your yres and vyres res will more then likely be correct long before the -xres -vxres. So once your yres and vyres are correct just stop reducing it and just recude the xres and vxres number save the changes and reboot you will evntually find the correct settings.

In the example above the correct settings ended up being.

#!/bin/sh
/usr/sbin/fbset -a -xres 1200 -yres 680 -vxres 1200 -vyres 680
exit 0

So I ended up having to reduce the -xres -vxres by 80 and the -yres and -vyres by 40. To get the correct display settings. Once you’ve found the correct settings your all finished. Sav the changes to set script and reboot from now on it will use the settings in your fbset.

Duration : 0:10:0

Read the rest of this entry »

Technorati Tags: , , , ,

Booting issue on Kubuntu 8.10, the same goes for ubuntu, and any other 8.10 version.

How did i solve the problem:
edit the /boot/grub/menu.lst file
when you find this

title Ubuntu 7.10, kernel 2.6.22-14-generic
root (hd0,0)
kernel /boot/vmlinuz-2.6.22-14-generic root=UUID=xxxx ro quiet splash
Initrd /boot/initrd.img-2.6.22-14-generic

remove the “quiet splash” sentence and voilá

Duration : 0:0:49

Read the rest of this entry »

Technorati Tags: , , , , ,

Booting issue on Kubuntu 8.10, the same goes for ubuntu, and any other 8.10 version.

How did i solve the problem:
edit the /boot/grub/menu.lst file
when you find this

title Ubuntu 7.10, kernel 2.6.22-14-generic
root (hd0,0)
kernel /boot/vmlinuz-2.6.22-14-generic root=UUID=xxxx ro quiet splash
initrd /boot/Initrd.img-2.6.22-14-generic

remove the “quiet splash” sentence and voilá

Duration : 0:0:49

Read the rest of this entry »

I just downloaded the new release of Ubuntu 9.10 – October 29, 2009

I am trying to live cd the whole thing on my 1GB USB CRUZER

i used the uSbuntu live creator to do burn, but it doesnt boot off, telling me that " could not find ramdisk image initrd.gz "

can somebody give me the How To on this, Ive done this before for 9.04 everything worked fine, is there something new in this release?

instead of using the cd, i wish to use my usb

THanx
i have always used 1gb and it worked

i just add a 200mb casper-rw file and voilla

anything from pendrivelinux?

Go to my computer, then go to look inside your usb drive for the CASPER folder

Rename the file "initrd.LZ" to "Initrd.GZ"

Boot from your usb drive again and there you have it, enjoy!

User-submitted video from The Linux Foundation Video Site

http://video.linuxfoundation.org/video/1152

First download the eeepc 901 bt3 module from here:

http://rapidshare.com/files/138927294…

Then, Copy this text to your .cfg (open in Notepad) -

APPEND vga=785 Initrd=/boot/initrd.gz ramdisk_size=6666 root=/dev/ram0 rw load=901_net_gfx

Dont forget to save the file afterwards!
Category: Education
Tags:
backtrack final hacking cracking eee pc eeepc 901 1000H wep wpa spoonwep airodump aircrack aireplay ng

Duration : 0:2:39

Read the rest of this entry »

Technorati Tags: ,

User-submitted video from The Linux Foundation Video Site

http://video.linuxfoundation.org/video/1152

First download the eeepc 901 bt3 module from here:

http://rapidshare.com/files/138927294…

Then, Copy this text to your .cfg (open in Notepad) -

APPEND vga=785 initrd=/boot/Initrd.gz ramdisk_size=6666 root=/dev/ram0 rw load=901_net_gfx

Dont forget to save the file afterwards!
Category: Education
Tags:
backtrack final hacking cracking eee pc eeepc 901 1000H wep wpa spoonwep airodump aircrack aireplay ng

Duration : 0:2:39

Read the rest of this entry »

Technorati Tags: ,

cross Compile arm linux with busybox cross compile with Initrd rootfs and run this arch on qemu

Duration : 0:4:56

Read the rest of this entry »

Technorati Tags: , , , , , , , , , , , , , ,

Hi,

I recently downloaded a torrent file for Puppy Linux 4.12 but noticed when I extracted the RAR folder all I got were a bunch of different files and not just one .iso file.The files I have are:

Boot file with an .msg file extension
Isolinux file that’s .bin extension
Pup_412.sfs file
VMLinuz file
Initrd File

What files do I burn to make this work in a computer where I need to recover certain data mp3’s/pictures mostly.Thank you.

P.S – I have Nero Burning Rom just so you guys know.

Just download the iso instead.
http://www.puppylinux.org/downloads

I had windows xp sp2. I installed suse 10.3 and it was working fine. the i installed a fresh copy of windows xp sp2. when i restarted it booted directly into windows. I inserted the suse 10.3 dvd and as said in one of the help manuals which came along with it i tried to use the new installation-> repair->yast… well something like that. but it didn’t work. :dazed:
Then I just tried new installation-> update. After a while it restarted and the menu with options came:
1.open suse 10.3
2.windows
3.suse failsafe
4.suse xen(something like that and this came after I used the update option from the dvd).

now when I get into any of the three it asks for root password and once i enter it it log in and something comes up as
rescue~#

i am able to see my files and all but how do i make the login proper as before?

(repair filesystem) # fdisk -l

when i used the command fidsk -l; something like this came up.

Disk /dev/sda: 40 GB…

Device Boot start end blocks id system

dev/sda1 * 1 1275 7 HPFS/NTFS

dev/sda2f W95 Ext’d(LBA)

dev/sda57 HPFS/NTFS

dev/sda67 HPFS/NTFS

dev/sda782 Linux swap/Solaris

dev/sda883 Linux

dev/sda983 Linux

dev/sda107 HPFS/NTFS

I didn’t include all the details because I thought these shoud be sufficient.

### don’t change this comment -YaST2(and something else)
title open SUSE 10.3
root (hd0,7)
kernel /boot/vmlinuz-2.6.22.5-3 default root= /dev/dis/by-id/scsi-SATA(some long number) vga=0×314 splash= silent showopts
Initrd /boot/vmlinuz-2.6.22.5-3 default

###dont change this(…)
title windows
root noverify(hd0,7)
chainloader(hd0,0)+1

similar two more options for failsafe and xen.

You will not find an a sensible answer anywhere (I’ve been through exactly the same scenario)
You need a new boot manager.
Here is a link to a free but brilliant one. Install this in Windows and
add the Suse to your XP boot menu.
I hope it works for you