Kernel Bench

Kernel News and How To

Key things

- I touch on CUDA and trying to get it to work with SLI’d NVidia configuration.. It’s there, just a lot of work to get working, and I didn’t..

- the machine isn’t working with Ubuntu Studio in the realtime kernel like I had expected.. I tried both 64-bit and 32-bit versions of 9.04..

- The realtime kernel gives me all sorts of “DRDY” messages.. Stuff like
[ 90.703396] ata4.00: status: { DRDY }
I think that my deprecated BIOS (XFX dropped support for it) is probably to blaim. So if you get a 750i, get the Core2Duo’s, you’ll probably have a better experience. My next machine may be AMD based.. Seems like AMD has it more together than Intel.

- Got “Mass Effect” running in wine (toward the end of this video).. I’m surprised that the computer was fast enough to capture the video without the audio falling off..

- (not covered in the video) steam wouldn’t install with positive confirmation from wine-doors, but it did anyhow.. IT works.. I downloaded gecko with winetricks, I couldn’t get wine-doors to do it.. I installed Art Rage 2 demo, with Wine-doors (that did install). MASS EFFECT was downloaded over a period of about 10 hours on Friday..

- Art Rage 2 recognizes pressure sensitivity from my Intuos 3, I made no special changes in the X config (I had to do that back with 7.10, but 9.04 seems to support the wacoms better). Someone was asking me if I was able to get it to work because she hadn’t.. So I tested.. And it works.. However GIMP doesn’t seem to work now.. Hmmmm.. Maybe I don’t know how to turn it on. Heard that Canonical is moving away from the xorg.conf and changing the way programs are configured that have to use X. So wacom support now is not from X but from within the Kernel or somewhere in Ubuntu.

- I demonstrate GISH.. After I had trouble getting mass effect to work the first time. BTW, the last time I ran Mass effect, the protagonists face was black (it wasn’t being rendered with a texture). This time was the first time I had seen the faces in full..

- Last, I show off the “super_pi” of the system.. I think a i7 is .68, and Core2Duo is like .88 . So 1.03 is not bad for this machine.. But keep in mind “super_pi” only tests the power of one processor (with a select set of operations) so it’s not a determining factor of the power of the computer.

Duration : 0:45:26

Read the rest of this entry »

Why the hell are people still SO SCARED to try out something new??? say linux… i mean if you truly look at the concept and philosophy of an open source the possibilities are endless. Its somehow like comparing a closed family owned business to a cooperation. DO you see the big picture here? look at how much linux have evolved in this short amount of time. compare that to a closed sourced company. glitches and bugs will be fixed on the fly.
There are couple of old sayings that say: United we stand and we are strong, break up to pieces and we are weak. The second one would be, Sharing is truly caring. Just imagine the power of gathering all these intelligent and smart programmers working for a single cause. Imagine a guy in china fixing up the kernel to suit their specific chinese governmental and educational districts, while another guy in brazil using teh same kernel and source code to Compile something that would suit their needs. Now imagine teh power.1 world that stands united.

Sounds nice, but better for the computer/technology forum.

I want something like GRUB for linux but I am wondering if there is any windows software that I can use to boot windows and linux?

One more vote for Wubi. Dyne:bolic claims to be able to be run from inside Windows but I’ve never been able (or frankly interested) in running it from anything but a CD. Debian has a similar installer at http://www.goodbye-microsoft.com and OpenSuse has instalinux, but I really don’t recommend them.

Microsoft really doesn’t want you to run anything but Windows. They are not going to release a boot loader which accommodates other OSes. Linux can do it because it has such a radically different model of what a computer is. I wouldn’t look to Microsoft for a boot loader. Your choices are grub lilo and running Linux on top of Windows.

I have an upload script and it” saving the filename with the original filaname+temp name. I need it to be changed as just temp name because special characters are causing problems and if there is a spacial character in the filename browsers can not read the image.

Here is the code:

<?php
// $Id: uploader.php 888 2007-07-28 09:03:03Z phppp $
// ———————————————————————— //
// XOOPS – PHP Content Management System //
// Copyright (c) 2000 XOOPS.org //
// <http://www.xoops.org/> //
// ———————————————————————— //
// This program is free software; you can redistribute it and/or modify //
// it under the terms of the GNU General Public License as published by //
// the Free Software Foundation; either version 2 of the License, or //
// (at your option) any later version. //
// //
// You may not change or alter any portion of this comment or credits //
// of supporting developers from this source code or any supporting //
// source code which is considered copyrighted (c) material of the //
// original comment or credit authors. //
// //
// This program is distributed in the hope that it will be useful, //
// but WITHOUT ANY WARRANTY; without even the implied warranty of //
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the //
// GNU General Public License for more details. //
// //
// You should have received a copy of the GNU General Public License //
// along with this program; if not, write to the Free Software //
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA //
// ———————————————————————— //
// Author: Kazumi Ono (AKA onokazu) //
// URL: http://www.myweb.ne.jp/, http://www.xoops.org/, http://jp.xoops.org/ //
// Project: The XOOPS Project //
// ————————————————————————- //
/*!
Example

include_once ‘uploader.php’;
$allowed_mimetypes = array(’image/gif’, ‘image/jpeg’, ‘image/pjpeg’, ‘image/x-png’);
$maxfilesize = 50000;
$maxfilewidth = 120;
$maxfileheight = 120;
$uploader = new XoopsMediaUploader(’/home/xoops/uploads’, $allowed_mimetypes, $maxfilesize, $maxfilewidth, $maxfileheight);
if ($uploader->fetchMedia($_POST['uploade_file_name'])) {
if (!$uploader->upload()) {
echo $uploader->getErrors();
} else {
echo ‘<h4>File uploaded successfully!</h4>’
echo ‘Saved as: ‘ . $uploader->getSavedFileName() . ‘<br />’;
echo ‘Full path: ‘ . $uploader->getSavedDestination();
}
} else {
echo $uploader->getErrors();
}

*/

/**
* Upload Media files
*
* Example of usage:
* <code>
* include_once ‘uploader.php’;
* $allowed_mimetypes = array(’image/gif’, ‘image/jpeg’, ‘image/pjpeg’, ‘image/x-png’);
* $maxfilesize = 50000;
* $maxfilewidth = 120;
* $maxfileheight = 120;
* $uploader = new XoopsMediaUploader(’/home/xoops/uploads’, $allowed_mimetypes, $maxfilesize, $maxfilewidth, $maxfileheight);
* if ($uploader->fetchMedia($_POST['uploade_file_name'])) {
* if (!$uploader->upload()) {
* echo $uploader->getErrors();
* } else {
* echo ‘<h4>File uploaded successfully!</h4>’
* echo ‘Saved as: ‘ . $uploader->getSavedFileName() . ‘<br />’;
* echo ‘Full path: ‘ . $uploader->getSavedDestination();
* }
* } else {
* echo $uploader->getErrors();
* }
* </code>
*
* @package kernel
* @subpackage core
*
* @author Kazumi Ono <onokazu@xoops.org>
* @author phppp
* @copyright The Xoops Project
*/
class XoopsMediaUploader
{
/**
* Flag indicating if unrecognized mimetypes should be allowed (use with precaution ! may lead to security issues )
**/
var $allowUnknownTypes = false;

var $mediaName;
var $mediaType;
var $mediaSize;
var $mediaTmpName;
var $mediaError;
var $mediaRealType = ”;

var $uploadDir = ”;

var $allowedMimeTypes = array();
var $deniedMimeTypes = array("application/x-httpd-php");

var $maxFileSize = 0;
var $maxWidth;
var $maxHeight;

var $targetFileName;

var $prefix;

var $errors = array();

var $savedDestination;

var $savedFileName;

va

it’s funny but all that code you pasted in there is totally irrelevant to your problem..

Anyhow I went and looked up this class for you here, http://www.xoops.info/doc/nav.html?_classes/index.html and researched the problem..

After this – $uploader = new XoopsMediaUploader

slide in this:
$uploader->setTargetFileName($value);

Where $value is the random file name you wish to use.
A very simply way to create a random string would be:
$value = mt_rand(5, 15);

Keep in mind you will need to concat the extension onto that random number!!!

I Installed VISTA 1st On C Drive.Then Installed XP64 On D Drive.But After Installing XP VISTA Boot Kernel Disabled.I Know This Is Normal.It’s Always Recommended To Install Earlier Version OS First.But Several Ways I Followed Already.Also used EasyBCD And VistaBoot Pro.But None Of Them Worked.I have Previous Experience With Dual Booting With 98,ME,2000,XP Etc.I’m Already familier Wth All Of Those.But As U Know The Vista Boot Kernel Can’t Be Directly Modified Via BOOT.INI. There Might Be A File Called Boot Manager In Vista. I Know The Easiest way To Get This Probs Solved Is,Reinstall Vista While Leaving XP64 Installed On My System.But Is There Any Other way To Put The XP64 Boot Option In Vista Boot Manager as "Earlier version OS".Pls Help Me To Continue R&D With VISTA Dual Boot.

why not just use virtualpc? it’s free and then you don’t have to keep booting:

http://www.microsoft.com/windows/products/winfamily/virtualpc/default.mspx

Key things

- I touch on CUDA and trying to get it to work with SLI’d NVidia configuration.. It’s there, just a lot of work to get working, and I didn’t..

- the machine isn’t working with Ubuntu Studio in the realtime kernel like I had expected.. I tried both 64-bit and 32-bit versions of 9.04..

- The realtime kernel gives me all sorts of “DRDY” messages.. Stuff like
[ 90.703396] ata4.00: status: { DRDY }
I think that my deprecated BIOS (XFX dropped support for it) is probably to blaim. So if you get a 750i, get the Core2Duo’s, you’ll probably have a better experience. My next machine may be AMD based.. Seems like AMD has it more together than Intel.

- Got “Mass Effect” running in wine (toward the end of this video).. I’m surprised that the computer was fast enough to capture the video without the audio falling off..

- (not covered in the video) steam wouldn’t install with positive confirmation from wine-doors, but it did anyhow.. IT works.. I downloaded gecko with winetricks, I couldn’t get wine-doors to do it.. I installed Art Rage 2 demo, with Wine-doors (that did install). MASS EFFECT was downloaded over a period of about 10 hours on Friday..

- Art Rage 2 recognizes pressure sensitivity from my Intuos 3, I made no special changes in the X config (I had to do that back with 7.10, but 9.04 seems to support the wacoms better). Someone was asking me if I was able to get it to work because she hadn’t.. So I tested.. And it works.. However GIMP doesn’t seem to work now.. Hmmmm.. Maybe I don’t know how to turn it on. Heard that Canonical is moving away from the xorg.conf and changing the way programs are configured that have to use X. So wacom support now is not from X but from within the Kernel or somewhere in Ubuntu.

- I demonstrate GISH.. After I had trouble getting mass effect to work the first time. BTW, the last time I ran Mass effect, the protagonists face was black (it wasn’t being rendered with a texture). This time was the first time I had seen the faces in full..

- Last, I show off the “super_pi” of the system.. I think a i7 is .68, and Core2Duo is like .88 . So 1.03 is not bad for this machine.. But keep in mind “super_pi” only tests the power of one processor (with a select set of operations) so it’s not a determining factor of the power of the computer.

Duration : 0:45:26

Read the rest of this entry »

VMware Fusion 3 (10 Pack)

Allume VMware Fusion 3 is simple the best way to run Windows on your Mac. With VMware Fusion, run the most demanding Mac and Windows applications side-by-side at maximum speeds without rebooting. With over 40 new features and a new ultra-fast Migration Assistant for Windows, its never been easier to run Windows on your Mac. This product allows installation for up to ten users. Optimized for Snow Leopard. Built from the ground up for the Mac, VMware Fusion 3 leverages Mac OS X Snow Leopards advanced architecture with a new 64-bit core engine and native support for the 64-bit kernel, delivering even better Windows on Mac performance.Ultimate Windows 7 Experience. VMware Fusion 3 is the first to enable the full Windows 7 experience, side-by-side with your Mac, complete with Windows Aero and Flip 3D. Switching Made Easy. VMware Fusion 3 makes it easy for users to bring their entire PC to their Mac in a few easy steps a simple Ethernet or Firewire cable allowing customers to protect investments in existing Windows software, and to keep using the programs they still need. Best-in-Class 3D Graphics. Support for OpenGL 2.1 and DirectX 9.0c Shader Model 3 enables users to run their favorite 3D Windows games and applications all without rebooting. More Mac-Like than Ever. Run Windows applications even more like Mac applications with new features like an always-on applications menu to find and launch Windows apps, even when Fusion isnt running. Award-winning VMware Fusion is the best way to run Windows on the Mac with more than a dozen awards for its unparalleled excellence, including the industry-acclaimed Macworld Editors Choice award, PC Worlds Top 100 Products for 2008, and Editors Choice Awards from Macworld UK, PC Pro UK, Redmond Magazine and many others.The Company You Trust Brought to you by the undisputed virtualization industry leader, VMware Fusion is backed by over a decade of proven engineering and trusted by millions of users worldwide.Windows Devices that

Read the rest of this entry »

Green Esteem Petal Glass Seed Bird Feeder

Bring a touch of design and sculpture to your bird garden with the Green Esteem Petal Glass Seed Bird Feeder. This exciting feeder offers shape and style to your patio or backyard, with its curved reservoir and stylized frame. Black metal rods flare outward and then inward, ending with a point at the top. Additional curved rods inside this metal frame lend added detail, and evoke the look of flower petals. A wide copper colored metal roof brings more interest to the unit, and a matching copper colored base completes the effect. The large, clear glass reservoir holds a generous 4 quarts of bird seed, and four openings at the base allow seed to exit onto the tray. Holes on the tray enable water to drain, for fresh and dry seed, and a baffle at the base of the tube keeps seed moving to the ports. The upward angle of the base tray adds dimension to the piece, and helps seed remain there for easy reach. A ring at the top of the item keeps the lid securely attached, and unscrews for cleaning or refilling the unit. Use this ring to hang the feeder from your favorite shepherd hook or bracket. Crafted from glass and metal, this feeder will surely offer several seasons of use for your birds. Highlight flower shapes in your yard using this Petal Glass Seed Bird Feeder.Birds that use this feeder:blackbirds, bluebirds, cardinals, chickadees, finches, flickers, goldfinches, grackles, grosbeaks, jays, juncos, kinglets, nuthatches, redpolls, siskins, sparrows, starlings, titmice, towhees, woodpeckers, and wrensSeed or Feed Options: cracked corn, mixed seed, peanut chunks, safflower seed, sunflower kernels, and sunflower seedCapacity: 4 qts., 6 lbs.; 4 portsDimensions: 8.25″ dia. base x 13.5″HMounting: may be hung Construction: metal, glass

Read the rest of this entry »

this is the iso like for the Japanese game you must have CFW for this to work

http://www.megaupload.com/?d=P08ZEXSQ

***PLEASE READ***
sorry for the late announcement but you have to wait until either

1. Someone patches the game for CFW

2.wait until December 15 for CFW 5.50 GEN D3 to come out

but in good news youll have it when it comes out

***UPDATE***
5.03 GEN C – Hen users
http://pspcustomfirmware.com/wp-content/plugins/wordpress-toolbar/toolbar.php?wp-toolbar-tourl=http://www.psp-.tk/psp.php?325&wp-toolbar-fromurl=http://pspcustomfirmware.com/features/psp-custom-firmware-5-03-gen-c-cfw-5-03-hen-c.htm&wp-toolbar-fromtitle=PSP%20Custom%20Firmware%205.03%20Gen-C%20|%20CFW%205.03%20Hen-C&wp-toolbar-blogurl=http://pspcustomfirmware.com&wp-toolbar-blogtitle=PSP%20Custom%20Firmware%20-%20PSP%20CFW

Copy and Paste

5.50 GEN D3 – Offical Pandora battery and other CFW users
http://pspcustomfirmware.com/wp-content/plugins/wordpress-toolbar/toolbar.php?wp-toolbar-tourl=http://www.psp-.tk/psp.php?330&wp-toolbar-fromurl=http://pspcustomfirmware.com/features/psp-custom-firmware-5-50-gen-d3-psp-cfw-5-50gen-d3.htm&wp-toolbar-fromtitle=PSP%20Custom%20Firmware%205.50%20GEN-D3%20|%20PSP%20CFW%205.50GEN-D3&wp-toolbar-blogurl=http://pspcustomfirmware.com&wp-toolbar-blogtitle=PSP%20Custom%20Firmware%20-%20PSP%20CFW

If the Game gets an error try this
Step 1:Push Select it will open the GEN VSH Menu or GEN Recovery Menu
Step 2:Click Recovery Menu (If you push select it open GEN Recovery Menu so you you don’t need this step)
Step 3:Click Configuration
Step 4:In Configuration change the Game folder homebrew(currently: 1.50 Kernel) to Game folder homebrew(currently: 5.xx Kernel)
Step 5: In configuration enable all
Step 6:Click Back and go to this: Run program at /PSP/GAME/RECOVERY/EBOOT.PBP
Step 7: Click Advanced configuration
In advanced configuration disable: Plan modules in UMD/ISO and Execute BOOT.BIN in UMD/ISO

Duration : 0:2:1

Read the rest of this entry »

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

VMware Fusion 3 (10 Pack)

Allume VMware Fusion 3 is simple the best way to run Windows on your Mac. With VMware Fusion, run the most demanding Mac and Windows applications side-by-side at maximum speeds without rebooting. With over 40 new features and a new ultra-fast Migration Assistant for Windows, its never been easier to run Windows on your Mac. This product allows installation for up to ten users. Optimized for Snow Leopard. Built from the ground up for the Mac, VMware Fusion 3 leverages Mac OS X Snow Leopards advanced architecture with a new 64-bit core engine and native support for the 64-bit kernel, delivering even better Windows on Mac performance.Ultimate Windows 7 Experience. VMware Fusion 3 is the first to enable the full Windows 7 experience, side-by-side with your Mac, complete with Windows Aero and Flip 3D. Switching Made Easy. VMware Fusion 3 makes it easy for users to bring their entire PC to their Mac in a few easy steps a simple Ethernet or Firewire cable allowing customers to protect investments in existing Windows software, and to keep using the programs they still need. Best-in-Class 3D Graphics. Support for OpenGL 2.1 and DirectX 9.0c Shader Model 3 enables users to run their favorite 3D Windows games and applications all without rebooting. More Mac-Like than Ever. Run Windows applications even more like Mac applications with new features like an always-on applications menu to find and launch Windows apps, even when Fusion isnt running. Award-winning VMware Fusion is the best way to run Windows on the Mac with more than a dozen awards for its unparalleled excellence, including the industry-acclaimed Macworld Editors Choice award, PC Worlds Top 100 Products for 2008, and Editors Choice Awards from Macworld UK, PC Pro UK, Redmond Magazine and many others.The Company You Trust Brought to you by the undisputed virtualization industry leader, VMware Fusion is backed by over a decade of proven engineering and trusted by millions of users worldwide.Windows Devices that

Read the rest of this entry »