1. This site uses cookies. By continuing to use this site, you are agreeing to our use of cookies. Learn More.

Tutorial Update/Run RM on Linux

Discussion in 'Tutorials & Resources' started by qverkk, Mar 29, 2018.

  1. qverkk

    Joined:
    Sep 22, 2015
    Messages:
    1,603
    Likes Received:
    381
    This guide is for people who have problems with updating RuneMate with the default RuneMate updater and for lazy people that want to use an easy way of downloading the standalone version.

    While reading the guide, you will see an USER which is required for you to change to your username of ur user, it can be found at /home/

    1. Create a runemate.sh file at ur Documents directory with the following code: (this will run runemate)

    Code (Text):
    1. #!/bin/sh
    2. java -jar "/home/USER/Documents/RuneMate.jar"
    Instead of "java" you can use your own java directory which you might've downloaded and extracted, example:

    Code (Text):
    1. #!/bin/sh
    2. "/home/USER/Downloads/jdk1.8.0_161/bin/java" -jar "/home/USER/Documents/RuneMate.jar"
    and make it executable with: chmod +x /home/USER/Documents/runemate.sh

    2. Create a rmupdate.sh file at ur Documents directory also, with this code: (this will update runemate for you if there is an update)
    Code (Text):
    1. wget -O RuneMate.jar https://www.runemate.com/client/download.php
    Whenever you want to update RuneMate just open up a terminal, navigate to Documents directory and open the rmupdate.sh with: ./rmupdate.sh

    3. If you want to have an application in your start menu, you can create a file at: (This step was done on Arch Linux, i'm not sure how it works on other distros)
    .local/share/applications/

    with following code:
    Code (Text):
    1. [Desktop Entry]
    2. Type=Application
    3. Name=RuneMate
    4. Exec="/home/USER/Documents/runemate.sh"
    5. Categories=Application;
    6. Terminal=true
    7. Icon=
    8. Comment=
    9. Path=
    10. StartupNotify=false
    11. [Desktop Entry]
    12. Type=Application
    13. Name=RuneMate
    14. Exec="/home/qverkk/Documents/runemate.sh"
    15. Categories=Application;
    16. Terminal=true
    17. Icon=
    18. Comment=
    19. Path=
    20. StartupNotify=false
     
    TheRaph, Savior and Shocked like this.
  2. qwertyuiop11

    Joined:
    Apr 14, 2018
    Messages:
    8
    Likes Received:
    5
    You can put the .desktop file wherever you want and then use "desktop-file-install runemate.desktop" as root.

    Also you should include setting up rsu-client and copying the .jagexcache in the OP :)
     
    Savior likes this.
  3. qverkk

    Joined:
    Sep 22, 2015
    Messages:
    1,603
    Likes Received:
    381
    Oh thanks for the tip :D and i didn't do anything with the rsu-client rather than just installing from the AUR, didn't even copy the jagecache
     
    Savior likes this.
  4. qwertyuiop11

    Joined:
    Apr 14, 2018
    Messages:
    8
    Likes Received:
    5
    After I posted that I realised that there's an option in rsu-client for setting the cache location so there's no need to mess around with copying it :rolleyes:, maybe the default in Arch is different.
     
    Savior likes this.
  5. qverkk

    Joined:
    Sep 22, 2015
    Messages:
    1,603
    Likes Received:
    381
    On which OS are you trying to use this?
     
    Savior likes this.
  6. qwertyuiop11

    Joined:
    Apr 14, 2018
    Messages:
    8
    Likes Received:
    5
    Debian SId. It all works fine after I changed the cache location.
     
    Savior likes this.
  7. Overboard9268

    Joined:
    Dec 15, 2017
    Messages:
    10
    Likes Received:
    2
    .
     
    #7 Overboard9268, Jul 2, 2018
    Last edited: Jun 27, 2022
    Savior likes this.
  8. SFBDaBot

    SFBDaBot Guy who knows things

    Joined:
    Apr 2, 2018
    Messages:
    25
    Likes Received:
    6
    Could i link to your guide in my setting up Runemate on Linux guide? I feel it would be a very useful addition.
    Tutorial - RuneMate on Linux
     
    Savior likes this.
  9. qverkk

    Joined:
    Sep 22, 2015
    Messages:
    1,603
    Likes Received:
    381
    Sure not a problem man
     
    Savior likes this.
  10. droidekka2

    Joined:
    Jul 22, 2018
    Messages:
    9
    Likes Received:
    0
    doesnt work at all for mint / ubuntu
     
  11. qverkk

    Joined:
    Sep 22, 2015
    Messages:
    1,603
    Likes Received:
    381
    just install jdk 8 for ubuntu and unix runescape

    this is for runescape:

    Code (Text):
    1. sudo apt-add-repository ppa:hikariknight/unix-runescape-client
    2. sudo apt-get update
    3. sudo apt-get install unix-runescape-client
    this is for java

    Code (Text):
    1. sudo add-apt-repository ppa:webupd8team/java
    2. sudo apt-get update
    3. sudo apt-get install oracle-java8-installer
    And then install runemate and u should be good to go
     
  12. droidekka2

    Joined:
    Jul 22, 2018
    Messages:
    9
    Likes Received:
    0
    got it to work with rsu but had to do some different comments and set jdk8 default
     

Share This Page

Loading...