Forum: General Jailbreak Discussion - The General Jailbreak Discussion forum is your place to discuss everything related to the PS3 jailbreak. You can discuss QA Flags, CFW, kmeaw or find information about many general jailbreak methods.


The above video goes away if you are a member and logged in, so log in now!




 
Would you like to get all the new info from
PSX-Scene in your email each day?




Want to learn more about the team keeping you up to date with the latest scene news?

Read about them now!

Check out our Developer bios, too!

 


User Tag List

Thread: Refresh my memory(extract files from ps3 firmware)
  

Results 1 to 3 of 3
  1. #1 Refresh my memory(extract files from ps3 firmware) 
    xPreatorianx is offline Sleeping for real this time!
    Join Date
    Aug 2010
    Posts
    1,790
    Downloads
    0
    Uploads
    0
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Likes Given
    349
    Likes Received
    338
    Hey guys, I can't remember which tools to use to extract Core OS from a PUP file and then extract files from the CORE OS package. Can you guys tell me which programs to use? I've been searching but all the ones I've tried don't work.
    Reply With Quote  

  2. #2  
    cookie42 is offline Registered Cookie
    Join Date
    Nov 2010
    Posts
    690
    Downloads
    0
    Uploads
    0
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Likes Given
    6
    Likes Received
    18
    First you unpkg, then you use cosunpkg on the "content" file created by unpkg.
    If you want here's a little bash script I use to extract a pup, the devflash, and the coreos.
    Code:
    CWD=$(pwd)
    
    if [ "x$1" == "x" ]; then
        echo "Easy script to speed up extracting a pup"
        echo "This extracts the pup, update_files,"
        echo "core_os, and the dev_flash folders"
        echo ""
        echo "   Usage : $0 <Update Filename>"
        echo ""
        exit
    fi
    rm -rf $1
    ./pupunpack $1.pup $1
    mkdir ./$1/update_files
    
    tar -xvf ./$1/update_files.tar -C ./$1/update_files
    
    for f in ./$1/update_files/dev_flash*tar*; do
        ./unpkg $f "$(basename $f).tar"
    done
    
    for f in */content
    do tar -xvf $f -C ./$1/update_files/
    done
    
    rm -rf *.tar
    
    ./unpkg ./$1/update_files/CORE_OS_PACKAGE.pkg ./$1/update_files/CORE_OS_PACKAGE
    ./cosunpkg ./$1/update_files/CORE_OS_PACKAGE/content ./$1/update_files/CORE_OS
    rm -rf ./$1/update_files/CORE_OS_PACKAGE
    set $1=
    cd $CWD
    STOP! Before you ask questions... READ the first post! RTFFP = Read The F*cking First Post
    Yes, A 3.55 "jb" (cfw) is available, no >3.55 "jb" or cfw yet.
    Yes, A 3.55 downgrade is available. But not to lower than stock firmware! (What it came with)
    No >3.55 downgrade is out there yet.
    Reply With Quote  

  3. #3  
    xPreatorianx is offline Sleeping for real this time!
    Join Date
    Aug 2010
    Posts
    1,790
    Downloads
    0
    Uploads
    0
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Likes Given
    349
    Likes Received
    338
    Cheers buddy I appreciate it!
    Reply With Quote  

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