Forum: Official Open PS2 Loader Forum - Discussion and information on the Official Open PS2 Loader.


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

Like Tree20Likes

Thread: Download Ubuntu Virtual Machine + enviroment to compile OPL
  

Page 6 of 59 FirstFirst ... 4 5 6 7 8 16 56 ... LastLast
Results 51 to 60 of 590
  1. #51  
    darkfinger is offline Member
    Join Date
    Jan 2010
    Posts
    13
    Downloads
    0
    Uploads
    0
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Likes Given
    0
    Likes Received
    0
    Yoshi,
    I couldn't open vm.7z

    EDIT:

    Sorry, I had a partial download (3 times) from your .pl link, but managed to get it fine from dropbox. Hopefully it's not an old version.

    EDIT:

    got it using wget. Browser download doesn't appear to complete reliably.
    Last edited by darkfinger; 03-11-2010 at 01:51 PM.
    Reply With Quote  

  2. #52  
    yoshi314's Avatar
    yoshi314 is offline linux junkie
    Join Date
    Mar 2008
    Posts
    1,789
    Downloads
    6
    Uploads
    0
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Likes Given
    4
    Likes Received
    18
    dropbox one is older. i'll update it if it causes problems.

    you should use a download manager if the download gets interrupted.
    Reply With Quote  

  3. #53  
    Join Date
    May 2009
    Location
    Italy
    Posts
    36
    Downloads
    1
    Uploads
    0
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Likes Given
    1
    Likes Received
    1
    Thanks for your ubuntu package its great
    one question though
    is there any way to edit the package or do something so it would compile opl from volca's bitbucket instead ? or compile the source using ubuntu
    http://bitbucket.org/volca/open-ps2-loader/
    any help would be great
    Reply With Quote  

  4. #54  
    loki7777 is offline Developer
    Join Date
    Oct 2009
    Location
    Polska
    Posts
    273
    Downloads
    0
    Uploads
    0
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Likes Given
    0
    Likes Received
    13
    First go to Places-Home and delete open-ps2-loader folder (the whole folder not files inside it)
    after that run terminal and type
    cd
    hg clone http://bitbucket.org/volca/open-ps2-loader/
    it should work and every time you will get updates from volca

    Maybe there is a easiest way but i dont know it
    It works, i just checked (if you would like to go back to ifcaro do the same)

    After that you can still use my script without using terminal.
    As far as i see - volca's elf file is about 2x bigger then ifcaro's
    Reply With Quote  

  5. #55  
    izdubar's Avatar
    izdubar is offline Babylon User
    Join Date
    Nov 2009
    Posts
    869
    Downloads
    0
    Uploads
    0
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Likes Given
    0
    Likes Received
    2
    Quote Originally Posted by loki7777 View Post
    As far as i see - volca's elf file is about 2x bigger then ifcaro's
    Update to latest revision, and check again, size went down now (as this branch is experimental, size optimization should come later)
    Last edited by izdubar; 03-16-2010 at 06:12 PM.
    Reply With Quote  

  6. #56  
    loki7777 is offline Developer
    Join Date
    Oct 2009
    Location
    Polska
    Posts
    273
    Downloads
    0
    Uploads
    0
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Likes Given
    0
    Likes Received
    13
    Yes i know That is why i use the officialBut now Volca's gave me warning(3)
    include/dialogs.h:28: warning: array `diaIPConfig' assumed to have one element
    include/dialogs.h:29: warning: array `diaCompatConfig' assumed to have one ele
    nt
    include/dialogs.h:30: warning: array `diaUIConfig' assumed to have one element
    when building Interface (but this have nothing to do with this topic

    Now i made a script that will pull changes from both Volca's and Ifcaro's sites

    This script is only for ppl who wants to have both OPL sources (one which is normal beta revision and second with experimental GUI changes).This OPL doesnt load games
    So if you are happy with normal revisions you dont need this.


    Code:
    #!/bin/bash
    cd /home/opl/
    rm -r open-ps2-loader
    hg clone https://bitbucket.org/ifcaro/open-ps2-loader
    hg pull -u
    cd
    cd ~/open-ps2-loader/
    make rebuild
    cp OPNPS2LD.ELF ~/Pulpit/OPNPS2LD.ELF
    cp OPNPS2LD.ELF ~/Desktop/OPNPS2LD.ELF
    
    cd /home/opl/
    rm -r open-ps2-loader
    hg clone https://bitbucket.org/volca/open-ps2-loader
    hg pull -u
    cd
    cd ~/open-ps2-loader/
    make rebuild
    cp OPNPS2LD.ELF ~/Pulpit/OPNPS2LDV.ELF
    cp OPNPS2LD.ELF ~/Desktop/OPNPS2LDV.ELF
    wait
    You can leave the old script and save this with other name. After running once this script it(the old one) will give you a chance to dl only updates from Volca's mirror (which will be a lot faster then deleting/DLing files from boths).

    Just past it in .sh script (make sure script is executable,RMB-Properties- Privileges/Permissions [third tab(dont know how it will be in english]
    And check executable).
    What it will do : it will get updates from both sites and creates elfs files in both Desktop/Pulpit(which means desktop in polishfolders
    It will take a little bit longer, because every time you will deleting and downloading files to open-ps2-loader folder.
    Maybe someone knows how to do this in different way (proper way without removing folder), but i am a linux newbie so i did this this way

    Please check names because now it will be OPNPS2LD.ELF and OPNPS2LDV.ELF so if you like to use both on ps2 then you will need to change some things in FMCB menu

    DOESN'T WORK ANYMORE FOR VOLCA's REPO;(
    Last edited by loki7777; 04-29-2010 at 07:44 AM.
    Reply With Quote  

  7. #57  
    Join Date
    May 2009
    Location
    Italy
    Posts
    36
    Downloads
    1
    Uploads
    0
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Likes Given
    1
    Likes Received
    1
    I tried that new script but it didn't work for me
    i open the old script then i deleted everything then put in the new one then save as (so the old one remains) saved it the same name but with a v in the end and when i run it, the terminal appears then disappear nothing else happens

    any help would be great
    thanks
    Reply With Quote  

  8. #58  
    loki7777 is offline Developer
    Join Date
    Oct 2009
    Location
    Polska
    Posts
    273
    Downloads
    0
    Uploads
    0
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Likes Given
    0
    Likes Received
    13
    In attachment you have my script. Try it (unpack it to Desktop)
    Or maybe you changed user name from opl to something else?

    Check this how it looks in ubuntu
    [ame="http://www.youtube.com/watch?v=VDEdThPrGe8"]YouTube - opl2.avi[/ame]
    Last edited by loki7777; 04-29-2010 at 07:43 AM.
    Reply With Quote  

  9. #59  
    Join Date
    May 2009
    Location
    Italy
    Posts
    36
    Downloads
    1
    Uploads
    0
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Likes Given
    1
    Likes Received
    1
    Quote Originally Posted by loki7777 View Post
    In attachment you have my script. Try it (unpack it to Desktop)
    Or maybe you changed user name from opl to something else?

    Check this how it looks in ubuntu
    http://www.youtube.com/watch?v=VDEdThPrGe8
    works now thanks
    Reply With Quote  

  10. #60  
    loki7777 is offline Developer
    Join Date
    Oct 2009
    Location
    Polska
    Posts
    273
    Downloads
    0
    Uploads
    0
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Likes Given
    0
    Likes Received
    13
    Dont know why it didnt works for the first time. But in the end all is ok
    And did you also get this warnings when compiling volcas OPL?
    Reply With Quote  

Page 6 of 59 FirstFirst ... 4 5 6 7 8 16 56 ... LastLast
Posting Permissions
  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •