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.

84 lines
3.3KB

  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. $DEBIAN_PACKAGE_URL = "https://launchpad.net/~kxstudio-debian/+archive/kxstudio/+files/kxstudio-repos_10.0.2_all.deb";
  8. ?>
  9. <div class="box box-description">
  10. <p>
  11. The KXStudio repositories support all Debian versions since <b>10 (Buster)</b> and Ubuntu <b>18.04 (Bionic)</b> or above.<br/>
  12. They should work on all Debian-based distributions and variants.<br/>
  13. A computer running intel-based 32bit or 64bit with SSE2 is required,
  14. or alternatively an ARM-based system (32bit with neon-vfpv4 or 64bit).
  15. </p>
  16. <p>
  17. Once you have the repos installed, you can either manually install individual packages from them or
  18. add the meta-packages to automatically install large sets of recommended packages.<br/>
  19. See the <a href="<?php echo $ROOT; ?>/Documentation:Repository:Meta-Packages">Meta-Packages</a> page for more details.<br/>
  20. In either case, we always recommend to install the <b>kxstudio-default-settings</b> package after enabling the repositories.
  21. </p>
  22. <p>
  23. You might also want to check:
  24. </p>
  25. <ul>
  26. <li><a href="<?php echo $ROOT; ?>/Repositories:Applications">Applications in the repositories</a></li>
  27. <li><a href="<?php echo $ROOT; ?>/Repositories:Plugins">Plugins in the repositories</a></li>
  28. <li><a href="<?php echo $ROOT; ?>/Repositories:FAQ">Frequent asked questions</a></li>
  29. </ul>
  30. <p>
  31. Bug reports and package requests should be posted in the
  32. <a href="https://github.com/KXStudio/Repository/issues" target="_blank">Repository project page</a>.<br/>
  33. Below is information on how to enable the repositories.
  34. </p>
  35. </div>
  36. <hr/>
  37. <h3><span class="mw-headline">
  38. <img src="images/ico_debian.png" class="img_text_align" alt=""/> Debian / <img src="images/ico_ubuntu.png" class="img_text_align" alt=""/> Ubuntu
  39. </span></h3>
  40. <p>
  41. All Debian and Ubuntu users can enable our repositories by installing this deb file:
  42. <a href="<?php echo $DEBIAN_PACKAGE_URL; ?>" class="free" rel="nofollow">kxstudio-repos.deb</a>.<br/>
  43. You can install it manually by running this:<br/>
  44. </p>
  45. <pre>
  46. <span style="color: rgb(110, 110, 110);"># Install required dependencies if needed</span>
  47. sudo apt-get install apt-transport-https gpgv
  48. <span style="color: rgb(110, 110, 110);"># Download package file</span>
  49. <?php echo $DEBIAN_PACKAGE_URL . "\n"; ?>
  50. <span style="color: rgb(110, 110, 110);"># Install it</span>
  51. sudo dpkg -i kxstudio-repos_9.5.1~kxstudio3_all.deb
  52. </pre>
  53. <p>
  54. These packages contain:
  55. </p>
  56. <ul>
  57. <li>Various sources files that activates the separate repositories</li>
  58. <li>GPG keys used for package and repository signing</li>
  59. <li>A post-install script that clears up legacy repository setup</li>
  60. </ul>
  61. <hr/>
  62. <p>
  63. <b>NOTE:</b><br/>
  64. Please do not copy these instructions to your own website, wiki, etc.<br/>
  65. The packages file link might change at anytime, and so the instructions themselves.<br/>
  66. Always refer to this exact page for how-to enable the KXStudio repositories please.
  67. </p>
  68. <p><br/></p>
  69. <?php
  70. include_once("includes/footer.php");
  71. ?>