playstation

Sony is claiming the issues that hit all users who have the older Sony PS3 gaming console, known as the “Fatty” has been restored. The glitch was from a Y2K bug, that apparently was never addressed. All users should be able to sign into the PSN.

Quote from Official PlayStation Blog:

We are aware that the internal clock functionality in the PS3 units other than the slim model, recognized the year 2010 as a leap year. Having the internal clock date change from February 29 to March 1 (both GMT), we have verified that the symptoms are now resolved and that users are able to use their PS3 normally.

If the time displayed on the XMB is still incorrect, users are able to adjust time settings manually or via the internet. If we have new information, we will update you through the PlayStation.Blog or PlayStation.com.

We apologize for any inconvenience this may have caused.

{ 0 comments }

Basically, to sum it all up, don’t turn on your Sony Playstation 3 if it’s not a slim. Doing so could result errors in some functionality, such as recording obtained trophies, and not being able to restore certain data.

Quote from Sony Blog:

As you may be aware, some customers have been unable to connect to the PlayStation Network today. This problem affects the models other than the new slim PS3.

We believe we have identified that this problem is being caused by a bug in the clock functionality incorporated in the system.

Errors include:

  • The date of the PS3 system may be re-set to Jan 1, 2000.
  • When the user tries to sign in to the PlayStation Network, the following
    message appears on the screen; ?An error has occurred. You have been
    signed out of PlayStation Network (8001050F)?.
  • When the user tries to launch a game, the following error message appears
    on the screen and the trophy data may disappear; ?Failed to install
    trophies. Please exit your game.?
  • When the user tries to set the time and date of the system via the
    Internet, the following message appears on the screen; ?The current date
    and time could not be obtained. (8001050F)?
  • Users are not able to play back certain rental video downloaded from the
    PlayStation Store before the expiration date.

We hope to resolve this problem within the next 24 hours. In the meantime, if you have a model other than the new slim PS3, we advise that you do not use your PS3 system, as doing so may result in errors in some functionality, such as recording obtained trophies, and not being able to restore certain data.

As mentioned above, please be advised that the new slim PS3 is not affected with this error. We are doing our best to resolve the issue and do apologize for any inconvenience caused.

For the latest status on this situation please continue to check either the PlayStation.Blog or PlayStation.com.

{ 0 comments }

According to the PlayStation senior VP, Peter Dille, the oportunity of PlayStation 2 games joining the “PS One Classics” line comes just a bit closer to reality. In an interview with IGN< Dille says the folks at PlayStation are “working really hard on” bringing more PlayStation and PlayStation 2 games to the PlayStation Store, not quite an official announcement, but another glimmer of hope.

{ 0 comments }

If you’ve ever wanted to a be an official game tester, now’s the chance. Sony PlayStation is launching a new reality series titled “The Tester“, which will being on February 18th. The overall goal is to win, and be hired on at Sony PlayStation as an official tester.

Stay updated and checkout the PlayStation store every Thursday, for all new and free episodes of the series.

{ 0 comments }

If you’re a Sony PS3 owner, then you’re in for a treat. The PlayStation 3 is preparing for a Heavy Rain. Sony product manager Lucy Duncan had this to say.

.. we strive to offer a broad set of experiences and a return to the single player ‘adventure’ format but with a state of the art graphical presentation, a terrific noir narrative and an hugely innovative interface seems like a compelling proposition for the discerning gamer,

{ 0 comments }

If you’ve been waiting to get your hands on the exploit for the PS3, will, here you go. You now are able to download the exploit, and start finding out what the PS3 can really do.

He titles his post, “Here’s your silver platter.”

In the interest of openness, I’ve decided to release the exploit. Hopefully, this will ignite the PS3 scene, and you will organize and figure out how to use this to do practical things, like the iPhone when jailbreaks were first released. I have a life to get back to and can’t keep working on this all day and night.

Download the PS3 exploit here. http://geohot.com/ps3_exploit.zip

Read his post in detail here. http://geohotps3.blogspot.com/2010/01/heres-your-silver-platter.html

{ 0 comments }

We’ll, should be no surpise here, George Hotz just updated his blog again, this time, going more into detail about the code he’s using. To download the snipped used by George Hotz, click the following link. http://pastie.org/795371

He starts his post of by saying “A level playing field.”

Right now, I’m playing with the isolated SPEs, trying to get metldr to load from OtherOS. Interesting thing, I am not using the exploit. I always assumed the enable isolation mode register was hypervisor privileged. It’s not, it’s kernel privileged, which means using hypervisor calls you can all get to it. So, get to hacking. Here is the code I am playing with.

Read his full post here. http://geohotps3.blogspot.com/2010/01/level-playing-field.html

volatile int init_module() {
unsigned long priv2_addr, problem_phys, local_store_phys, context_addr, shadow_addr, spe_id, vas;

lv1_get_virtual_address_space_id_of_ppe(0, &vas);

printk(KERN_ERR "die kernel %d\n", lv1_destruct_logical_spe(0xb));

printk(KERN_ERR "construct SPE: %d\n", lv1_construct_logical_spe(0x10,0x10,0x10,0x10,0x10, vas, 0, &priv2_addr, &problem_phys, &local_store_phys, &context_addr, &shadow_addr, &spe_id));
boom_lpar(shadow_addr);
printk(KERN_ERR "make SPE id: %d\n", spe_id);
printk(KERN_ERR "enable SPE: %d\n", lv1_enable_logical_spe(spe_id, 0));

unsigned long *problem_mapped, *privileged_mapped, *local_mapped;

problem_mapped =__ioremap((unsigned long)problem_phys, 0x20000, PAGE_SHARED_X);
privileged_mapped =__ioremap((unsigned long)priv2_addr, 0x20000, PAGE_SHARED_X);
local_mapped =__ioremap((unsigned long)local_store_phys, 0x40000, PAGE_SHARED_X);

printk(KERN_ERR "status: %lx\n", problem_mapped[0x4020/8]);
printk(KERN_ERR "privileged control: %lx\n", privileged_mapped[0x4040/8]);
privileged_mapped[0x4040/8] |= 4;
printk(KERN_ERR "privileged control: %lx\n", privileged_mapped[0x4040/8]);

struct file* fd;
mm_segment_t old_fs = get_fs();
set_fs(KERNEL_DS);
fd = filp_open("/work/pwned/metldr", O_RDONLY, 0);
if(!IS_ERR(fd)) {
printk(KERN_ERR "file is open\n");
printk(KERN_ERR "read %d\n", fd->f_op->read(fd, local_mapped, 0x40000, &fd->f_pos));
filp_close(fd, NULL);
} else {
printk(KERN_ERR "file open failed!!!!\n");
}
set_fs(old_fs);
printk(KERN_ERR "read in metldr\n");

problem_mapped[0x4018/8] |= 3;

int i;
for(i=0;i<0x20;i++) {
printk(KERN_ERR "status: %lx\n", problem_mapped[0x4020/8]);
}
printk(KERN_ERR "destruct SPE: %d\n", lv1_destruct_logical_spe(spe_id));

return 0;
}

{ 0 comments }

George Hotz is still hard at it, hacking the Sony Playstation 3, this time, he goes a little more into detail as to what he has done, and where this is going. The beginning of the post, he stresses the against the use of piracy, and what to and what not to expect. [Read More]

{ 0 comments }

Firefox coming to the PS3?

November 19, 2009 · 0 comments

Firefox on the PS3?In some exciting news for PS3 owners, current rumors are that Playstation will be porting Firefox to the PS3 gaming console. This was informed by a secret source to PlayStation Insider (Sony has talked to Mozilla about porting Firefox to the PS3).

Many users who frequently use the PS3 browser, why I really don’t know why, have complained about the performance and usability of the browser.

Given this is just a rumor, don’t put to much hope into it, until we all see a nice beta build of this. Which of course, PlayStation most likely won’t let the end users ever see.

{ 0 comments }

For all the PlayStation 3 fans out there, the PS3 slim is now available in the 250gb model. The 250GB Slim will put you back around 349.00, which includes 1 six axis controller. Apart from the larger hard drive, theirs not much more you’ll be getting out of this. The following links both show “coming soon”.

Walmart is quoted as

Preorder this item today and it should ship on 11/03/2009

PS3 250GB

http://www.walmart.com

http://www.bestbuy.com

{ 0 comments }