Post: [ES35] PS3 Homebrew Development Tutorial Website RELEASED! Learn to program PS3 Apps
04-07-2011, 02:35 AM #1
(adsbygoogle = window.adsbygoogle || []).push({});
Originally posted by another user
You wanna learn how to develop for the ps3?
Well there is this awesome website up, that teaches you how to code ps3 homebrew using psl1ght.
This site teaches you everything you need to know about ps3 development.


It is a work in progress.
Currently has 5 lessons online.

Made by: EmersonS35
Sponsored by: PS3-Hacks.com

This site is ad-free right now, and runs purely off of donations, so please visit our donation page.

You must login or register to view this content.

Have an typos, suggestions, trouble, or anything, email me at [email][email protected][/email]

Note: I am not trying to advertise this website. I am trying to spread the word. Thank you.
(adsbygoogle = window.adsbygoogle || []).push({});

The following 28 users say thank you to emersons35 for this useful post:

CyBeR_TrOn, Cyborg Ninja, Docko412, Donstickygreen, dsCRAZYPYRO, Foolnesss, Goblom, ha_iKiLLED_U, ibombo, italianboss, Jorgos Nomikos, killa skillz, MajorPSP156, NeglectFate, Nero., NextGenDev, Night Wolf, Norman, Painkilla, PIINC, Priiime, prosper, Solid Snake, Superchunk, TEXAS24_ReStEr, TheKid420, xShOtz, Xx-NukeClan-xX
04-08-2011, 02:39 AM #56
Goblom
Gym leader
Originally posted by XDev View Post
How do i add the paths what paths?


In Ubuntu unhide all your files
then go to your home directory and open the filer named ".bashrc"
Scroll down to the bottom and type this in
    #Set PS3 toolchain
export PS3DEV=/usr/local/ps3dev
export PATH=$PATH:$PS3DEV/bin
export PATH=$PATH:$PS3DEV/host/ppu/bin
export PATH=$PATH:$PS3DEV/host/spu/bin

#Set PSL1GHT
export PSL1GHT=$PS3DEV/psl1ght
export PATH=$PATH:$PSL1GHT/host/bin
04-08-2011, 02:40 AM #57
XDev
Banned
Originally posted by Goblom View Post
In Ubuntu unhide all your files
then go to your home directory and open the filer named ".bashrc"
Scroll down to the bottom and type this in
    #Set PS3 toolchain
export PS3DEV=/usr/local/ps3dev
export PATH=$PATH:$PS3DEV/bin
export PATH=$PATH:$PS3DEV/host/ppu/bin
export PATH=$PATH:$PS3DEV/host/spu/bin

#Set PSL1GHT
export PSL1GHT=$PS3DEV/psl1ght
export PATH=$PATH:$PSL1GHT/host/bin

I did this already before,
Do i have to do it again?


I need to fix this problem

linux@ubuntu:~$ cd ps3toolchain
linux@ubuntu:~/ps3toolchain$ ./toolchain.sh
touch: cannot touch `/usr/local/ps3dev/test.tmp': Permission denied
ERROR: Grant write permissions for /usr/local/ps3dev before continuing.
../depends/check-ps3dev.sh: Failed.
04-08-2011, 02:43 AM #58
Goblom
Gym leader
Originally posted by rasheed
i like the idea but there prob. gonnaa delete ur site


why do you say that.

---------- Post added at 09:43 PM ---------- Previous post was at 09:41 PM ----------

Originally posted by XDev View Post

linux@ubuntu:~/ps3toolchain$ ./toolchain.sh
touch: cannot touch `/usr/local/ps3dev/test.tmp': Permission denied
ERROR: Grant write permissions for /usr/local/ps3dev before continuing.
../depends/check-ps3dev.sh: Failed.


Permisions Denied mean you are trying to overwrite a file owned by the "root" user.

To fix it just do this
    sudo su

then re-run the toolchain script without exiting the terminal
04-08-2011, 02:44 AM #59
XDev
Banned
Originally posted by Goblom View Post
why do you say that.

---------- Post added at 09:43 PM ---------- Previous post was at 09:41 PM ----------



Permisions Denied mean you are trying to overwrite a file owned by the "root" user.

To fix it just do this
    sudo su

then re-run the toolchain script without exiting the terminal


THIS NEVER ENDSSSSSSSSSSSSSS



root@ubuntu:/usr/local/ps3dev# git clone git://github.com/ps3dev/ps3toolchain.git
Initialized empty Git repository in /usr/local/ps3dev/ps3toolchain/.git/
remote: Counting objects: 552, done.
remote: Compressing objects: 100% (400/400), done.
remote: Total 552 (delta 377), reused 214 (delta 144)
Receiving objects: 100% (552/552), 382.88 KiB | 390 KiB/s, done.
Resolving deltas: 100% (377/377), done.
root@ubuntu:/usr/local/ps3dev# cd ps3toolchain
root@ubuntu:/usr/local/ps3dev/ps3toolchain# ./toolchain.sh
ERROR: Set $PS3DEV before continuing.
../depends/check-ps3dev.sh: Failed.
root@ubuntu:/usr/local/ps3dev/ps3toolchain#


Last part,

Set $PS3DEv before continuing HOWWWWWWWWWWWWWW?
04-08-2011, 02:46 AM #60
Originally posted by rasheed
i like the idea but there prob. gonnaa delete ur site


Who is "they"?
04-08-2011, 02:48 AM #61
Goblom
Gym leader
Originally posted by XDev View Post
THIS NEVER ENDSSSSSSSSSSSSSS



root@ubuntu:/usr/local/ps3dev# git clone git://github.com/ps3dev/ps3toolchain.git
Initialized empty Git repository in /usr/local/ps3dev/ps3toolchain/.git/
remote: Counting objects: 552, done.
remote: Compressing objects: 100% (400/400), done.
remote: Total 552 (delta 377), reused 214 (delta 144)
Receiving objects: 100% (552/552), 382.88 KiB | 390 KiB/s, done.
Resolving deltas: 100% (377/377), done.
root@ubuntu:/usr/local/ps3dev# cd ps3toolchain
root@ubuntu:/usr/local/ps3dev/ps3toolchain# ./toolchain.sh
ERROR: Set $PS3DEV before continuing.
../depends/check-ps3dev.sh: Failed.
root@ubuntu:/usr/local/ps3dev/ps3toolchain#


Last part,

Set $PS3DEv before continuing HOWWWWWWWWWWWWWW?


Run this script instead
    ./toolchain-sudo.sh
04-08-2011, 02:51 AM #62
XDev
Banned
Originally posted by Goblom View Post
Run this script instead
    ./toolchain-sudo.sh


Ok i did it seems to be doing something...'


but why does this keep on failing WTF
./depends/check-ps3dev.sh: Failed.


is that?
04-08-2011, 02:54 AM #63
Goblom
Gym leader
Originally posted by XDev View Post
Ok i did it seems to be doing something...'


but why does this keep on failing WTF
./depends/check-ps3dev.sh: Failed.


is that?



I don't know. maybe some glitch in Ubuntu
04-08-2011, 02:56 AM #64
XDev
Banned
Originally posted by Goblom View Post
I don't know. maybe some glitch in Ubuntu


So is that gonna cause problems later on or what?
I swear ALWAYS SOMETHING.

Copyright © 2026, NextGenUpdate.
All Rights Reserved.

Gray NextGenUpdate Logo