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.

88 lines
3.4KB

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