KXStudio Website https://kx.studio/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

70 lines
3.1KB

  1. <?php
  2. $PAGE_TITLE = "KXStudio : Repositories";
  3. $PAGE_TYPE = "KXSTUDIO";
  4. $PAGE_SOURCE_1 = ARRAY("/Repositories");
  5. $PAGE_SOURCE_2 = ARRAY("Repositories");
  6. include_once("includes/header.php");
  7. ?>
  8. <div class="box box-description">
  9. <p>
  10. The KXStudio repositories support all Debian versions since Wheezy and Ubuntu 12.04 or above.<br/>
  11. They should work on all Debian-based distributions and variants, but the way to enable them will differ.<br/>
  12. After the repositories are enabled and the system updated, we recommend you to install the "kxstudio-default-settings" package.<br/>
  13. </p>
  14. <p>
  15. You might also want to check:
  16. </p>
  17. <ul>
  18. <li><a href="<?php echo $ROOT; ?>/Repositories:Applications">Applications in the repositories</a></li>
  19. <li><a href="<?php echo $ROOT; ?>/Repositories:Plugins">Plugins in the repositories</a></li>
  20. </ul>
  21. <p>
  22. Below is information on how to enable the repositories.
  23. </p>
  24. </div>
  25. <hr/>
  26. <h3><span class="mw-headline" id="Debian"><img src="images/ico_debian.png" class="img_text_align" alt=""/> Debian</h3>
  27. <p>
  28. Debian users can enable our repositories by installing this deb file:
  29. <a href="https://launchpad.net/~kxstudio-debian/+archive/kxstudio/+files/kxstudio-repos_7.2.0%7Ekxstudio1_all.deb" class="external free" rel="nofollow" target="_blank">kxstudio-repos.deb</a>.<br/>
  30. If you're running Debian Wheezy, consider installing the backports repo package as well:
  31. <a href="https://launchpad.net/~kxstudio-debian/+archive/kxstudio/+files/kxstudio-repos-backports_7.2.0%7Ekxstudio1_all.deb" class="external free" rel="nofollow" target="_blank">kxstudio-repos-backports.deb</a>.
  32. (*<i>only</i>* for wheezy)<br/>
  33. </p>
  34. <hr/>
  35. <h3><span class="mw-headline" id="Ubuntu"><img src="images/ico_ubuntu.png" class="img_text_align" alt=""/> Ubuntu</span></h3>
  36. <p>
  37. Ubuntu users can also install deb files for the repositories, but different files are needed for each version.<br/>
  38. As such, we recommend you to enable the repositories using the command-line instead. Just follow these steps:<br/>
  39. </p>
  40. <pre class="code">
  41. <span style="color: rgb(110, 110, 110);"># Install needed tools</span>
  42. sudo apt-get install software-properties-common wget<br/>
  43. <span style="color: rgb(110, 110, 110);"># Enable KXStudio repo (press 'Enter' once asked)</span>
  44. sudo add-apt-repository ppa:kxstudio-debian/kxstudio<br/>
  45. <span style="color: rgb(110, 110, 110);"># Update software sources</span>
  46. sudo apt-get update<br/>
  47. <span style="color: rgb(110, 110, 110);"># Install kxstudio-repos</span>
  48. sudo apt-get install kxstudio-repos<br/>
  49. <span style="color: rgb(110, 110, 110);"># Update software sources again</span>
  50. sudo apt-get update
  51. </pre>
  52. <hr/>
  53. <h3><span class="mw-headline" id="Ubuntu"><img src="images/ico_linux.png" class="img_text_align" alt=""/> Others</span></h3>
  54. <p>
  55. Users on other linux distributions should enable the repositories that best match their distro.<br/>
  56. Remember that KXStudio offers repositories only for Debian and its based systems.<br/>
  57. </p>
  58. <p><br/></p>
  59. <?php
  60. include_once("includes/footer.php");
  61. ?>