Go Back   PS3Hax - Sony Fears Us > Playstation 3 Resources > PS3 Hardware Tuning
PS3 Hardware Tuning Does Sony know that we can pull apart the PS3 and put it back together?

Reply
 
LinkBack Thread Tools

Controlling Resolution in PS3
  #1 (permalink)  
Old 12-24-2006, 11:12 PM
ubisoft is offline
PS3Hax Active Hacker
 
Join Date: Dec 2006
Posts: 14
Default Controlling Resolution in PS3

TOPIC: Reset, adjust graphics display --------------------------------------------------------------------------------

Video Modes
The PS3 uses a set number of video modes, denoted by number rather than by resolution:

0:auto mode
YUV
60Hz 1:480i 2:480p 3:720p 4:1080i 5:1080p
50Hz 6:576i 7:576p 8:720p 9:1080i 10:1080p
RGB
vesa 11:WXGA 12:SXGA 13WUXGA
60Hz 33:480i 34:480p 35:720p 36:1080i 37:1080p
50Hz 38:576i 39:576p 40:720p 41:1080i 42:1080p

A quick explanation for the above table
60Hz 480i needs a quick explanation for most computer users, who are used to traditional monitors and resolutions, so let's break it down.
60Hz is the rate at which your display will refresh, in this case, 60 times per second.

480 refers to the resolution of the mode. It is slightly misleading, as the resolution you get will be slightly less vertical lines than the number would suggest. The equivalent resolutions in horizontal by vertical pixels is:

480 = 576 x 384
576 = [missing data]
720 = 1124 x 644
1080 = 1688 x 964

The i, or p stans for Interlaced or Progressive. Interlaced televisions work by alternating lines with video frames, much like locking your fingers together. One finger on one line, another finger on the next. Thus, two frames, frame 1 and frame 2 are displayed at the same time, and would appear as so:

1111111111111111111111111
2222222222222222222222222
1111111111111111111111111
2222222222222222222222222

Televisions that support Progressive Scan give a much higher quality picture by using the full vertical resolution for a frame.

Minimum Video Mode for Yellow Dog Linux 5.0
The minimum supported graphical mode for running Yellow Dog Linux 5.0 is mode number 3, 720p. This functions with HDMI and Component connections as explained below.

If you use a Composite connection, the graphical install is not supported. You will need to use the text based installer and then modify your post-install environment to support graphics. However, this is painful and not highly recommended as the resolution is too low for many applications to be useful. If you have only an S-Video connection and wish to enable graphics, refer to the HOWTO Switching to Graphical Mode after Text Based Install.

Different Video Connectors for Different Monitors

HDMI
This is the best connection for running Yellow Dog Linux 5.0 on your PS3. It allows for the full range of video modes, as long as your monitor or TV supports them. You will need to consult the documentation for your display to find out which modes it will support. It is connected by connecting an HDMI cable to the HDMI port on your PS3 and the HDMI port on your TV.

Component
This is the second best connection. It is connected by connecting a cable from the PS3 Multi-Video port to your TV or monitor's component ports (Red, Green and Blue for video, White and Red for audio). This connection will again allow the modes your monitor supports. Common video modes seen here at Terra Soft are 1: 480i, 2: 480p, 3: 720p and 4:1080i

Composite
This is the worst-case connection. Composite does not support the minimum recommended resolutions for Yellow Dog Linux 5.0 (720p). Only the lowest of resolutions are supported: Mode 1 or 6: 480i at 60 Hz or 576i at 50 Hz.

During Installation
When installing YDL, you will need a monitor or television capable of at least 720p in order to perform a graphical install. If you do not have this capability, or running "install" at the KBoot prompt does not work with your monitor or television, "installtext" may be used instead. This will force the YDL 5 installer to run in a low-resolution text mode.

Once the system is installed, you will need to start your system by typing "ydltext" and hitting enter at the KBoot prompt. This will start YDL in a low resolution text mode.

If the default graphical install is supported by your hardware, then after installation, the default "ydl" boot can be used.

Post-Install
Once the system is started, you may try several video modes to determine which will work with your monitor or television. The mode can be changed by invoking the ps3videomode program:

ps3videomode -v #

Where # is one of the video mode numbers listed above. The default "install" and "ydl" options use mode 3, running at 720p. Mode 1 is a safe default that works on the most monitors or televisions.

The ps3videomode program will only change the resolution for the current display and is only usable in a text terminal as a way to guage which modes will work well for your system. It will only affect the current virtual terminal, leaving the others scrambled.

Once you have determined the video mode you find best for your monitor or television, you may make the change more permanent by editing your /etc/kboot.conf file, adding a configuration with the video argument you would like. For example, the kboot.conf file generated by the YDL installer provides four different modes:

# kboot.conf generated by anaconda
default=ydl
timeout=10
root=/dev/sda1
ydl='/dev/sda1:/vmlinux-2.6.16-20061110.ydl.1ps3
initrd=/dev/sda1:/initrd-2.6.16-20061110.ydl.1ps3.img
root=/dev/sda2 init=/sbin/init video=ps3fb:mode:3 rhgb'

ydl480i='/dev/sda1:/vmlinux-2.6.16-20061110.ydl.1ps3
initrd=/dev/sda1:/initrd-2.6.16-20061110.ydl.1ps3.img
root=/dev/sda2 init=/sbin/init video=ps3fb:mode:1 rhgb'

ydl1080i='/dev/sda1:/vmlinux-2.6.16-20061110.ydl.1ps3
initrd=/dev/sda1:/initrd-2.6.16-20061110.ydl.1ps3.img
root=/dev/sda2 init=/sbin/init video=ps3fb:mode:4 rhgb'

ydltext='/dev/sda1:/vmlinux-2.6.16-20061110.ydl.1ps3
initrd=/dev/sda1:/initrd-2.6.16-20061110.ydl.1ps3.img
root=/dev/sda2 init=/sbin/init 3'

The above lines DO NOT WRAP.

If none of these meet your needs, you may copy one of these lines, replace the label and edit the video=ps3fb:mode:# number. For example, to make a new configuration named myconfig that will start with mode 5:

myconfig='/dev/sda1:/vmlinux-2.6.16-20061110.ydl.1ps3
initrd=/dev/sda1:/initrd-2.6.16-20061110.ydl.1ps3.img
root=/dev/sda2 init=/sbin/init video=ps3fb:mode:5 rhgb'

The above lines DO NOT WRAP.

If you wish to make the the default boot, change the default=ydl line to read:
default=myconfig

When you reboot, it will use this video mode as the default.

This HOWTO was written by Tim Renner, Terra Soft
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote

Re: Controlling Resolution in PS3
  #2 (permalink)  
Old 12-24-2006, 11:14 PM
teks's Avatar
teks is offline
I'm Moving On Up ...
 
Join Date: Dec 2006
Posts: 4
Default Re: Controlling Resolution in PS3

some further info on ps3videomode:

# ps3videomode -v 5 -f

the -f at the end tells it to run full screen without the black border. but be careful if you do this because if you are running on any type of TV screen you won't be able to see the command line as it will be in the overscan area of the TV. I'd suggest using the -f only if you are running on a computer monitor as those don't have any overscan.

# ps3videomode -h

-h to see the other options available
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote

Re: Controlling Resolution in PS3
  #3 (permalink)  
Old 01-18-2007, 07:08 PM
Roker is offline
I'm Moving On Up ...
 
Join Date: Jan 2007
Posts: 6
Default Re: Controlling Resolution in PS3

I've tried messing around with the settings, but the text is still unreadable for me. It's a 30" HDTV, any suggestions?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote

Re: Controlling Resolution in PS3
  #4 (permalink)  
Old 01-20-2007, 04:31 AM
ssjahrodss is offline
PS3Hax Senior Hacker
 
Join Date: Jan 2007
Posts: 44
Default Re: Controlling Resolution in PS3

Hi guys i have a little question here were do you input your ps3videomode cmd? in ydl5 shell or kboot cause i get it only in kboot and my setting after set(ps3videomode -v 3 -f)for instance dont stand after i boot in ydl5. i use HDMI-DVI to connect my lcd screen LG 20,1 1650x1050 hdcp of course my problem is i got black stripe all over my screen 2cm top and down and 4cm left and right but wen i play on ps3 no problemo full screen at 720p 1080p work but bug sorry for my eng im french
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote

Re: Controlling Resolution in PS3
  #5 (permalink)  
Old 01-20-2007, 11:17 AM
haxen's Avatar
haxen is offline
I shredded my PS3
PS3Hax Leader
 
Join Date: Dec 2006
Posts: 239
Default Re: Controlling Resolution in PS3

Make sure you login as root to run this command in the terminal.
In terminal, type in su and then enter your password, and then you can run ps3videomode command.
__________________
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote

Re: Controlling Resolution in PS3
  #6 (permalink)  
Old 01-20-2007, 07:49 PM
ssjahrodss is offline
PS3Hax Senior Hacker
 
Join Date: Jan 2007
Posts: 44
Default Re: Controlling Resolution in PS3

even in root i got:bash command not found?in shell or terminal ctrl+alt+f1 same thing happen. did we have to update someting(kernell/bootloader).thank you guys
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote

Re: Controlling Resolution in PS3
  #7 (permalink)  
Old 01-21-2007, 07:21 AM
ssjahrodss is offline
PS3Hax Senior Hacker
 
Join Date: Jan 2007
Posts: 44
Default Re: Controlling Resolution in PS3

funny your saying the same thing again haxen, i find it myself ==kboot--ydltext--videomode--startx
but this only work with elintment e17
boot--ydltext--videomode--startx cause x servrer jam wen log out
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
and if you have problem in ydl5 e17=waa just change to gnome or kde help a lot!!use install/uninstall
option stuff very nice to update your need.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote

Re: Controlling Resolution in PS3
  #8 (permalink)  
Old 01-21-2007, 08:52 AM
haxen's Avatar
haxen is offline
I shredded my PS3
PS3Hax Leader
 
Join Date: Dec 2006
Posts: 239
Default Re: Controlling Resolution in PS3

what is your desktop environment for your root user login?
__________________
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote

Re: Controlling Resolution in PS3
  #9 (permalink)  
Old 01-21-2007, 09:52 AM
ssjahrodss is offline
PS3Hax Senior Hacker
 
Join Date: Jan 2007
Posts: 44
Default Re: Controlling Resolution in PS3

Quote:
Originally Posted by haxen
what is your desktop environment for your root user login?
i use Enlightenment even if i chose gnome as default forever if i kboot-ydltext-login-ps3videomode -v 3 -f or +131-startx-=enlightenment full screen and no way to switck back with log off to gnome or kde because x server jam
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote

Re: Controlling Resolution in PS3
  #10 (permalink)  
Old 04-05-2007, 02:06 PM
781
 
Posts: n/a
Default Re: Controlling Resolution in PS3

Im using a projector to get my picture and when i try to use full mode "-f" the picture gets shifted to one side so I get right side of the picture on the left side and vice versa. Anyone know whats wrong?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply



Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is On
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
Backup your Blu-Ray Disc haxen PS3 & PS2 Games 11 11-03-2008 05:57 PM
How to Install Fedora Core 8 haxen Fedora Core 8 17 08-28-2008 09:50 AM
Installation Guide for Ubuntu on PS3 H.axen Ubuntu Linux 15 07-13-2008 09:49 PM
How to Install Gentoo Linux haxen Gentoo Linux 40 09-09-2007 09:38 AM
MOVED: Controlling Resolution in PS3 Zoned Yellow Dog Linux 0 01-18-2007 10:22 AM



All times are GMT -5. The time now is 12:06 PM.

vB skin by: eXtremepixels
Powered by vBulletin® Version 3.6.3
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
 SEO by 3.0.0
© PS3Hax.com 2007 & 2008