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.

89 lines
3.6KB

  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 including Ubuntu 20.04.<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. <li><a href="<?php echo $ROOT; ?>/Repositories:Extras">Extra repositories from the KXStudio project</a></li>
  31. </ul>
  32. <p>
  33. Bug reports and package requests should be posted in the
  34. <a href="https://github.com/KXStudio/Repository/issues" target="_blank">Repository project page</a>.<br/>
  35. Below is information on how to enable the repositories.
  36. </p>
  37. </div>
  38. <hr/>
  39. <h3><span class="mw-headline">
  40. <img src="images/ico_debian.png" class="img_text_align" alt=""/> Debian / <img src="images/ico_ubuntu.png" class="img_text_align" alt=""/> Ubuntu
  41. </span></h3>
  42. <p>
  43. All Debian and Ubuntu users can enable our repositories by installing this deb file:
  44. <a href="<?php echo $DEBIAN_PACKAGE_URL; ?>" class="free" rel="nofollow">kxstudio-repos.deb</a>.<br/>
  45. You can install it manually by running this:<br/>
  46. </p>
  47. <pre>
  48. <span style="color: rgb(110, 110, 110);"># Install required dependencies if needed</span>
  49. sudo apt-get install apt-transport-https gpgv
  50. <span style="color: rgb(110, 110, 110);"># Remove legacy repos</span>
  51. sudo dpkg --purge kxstudio-repos-gcc5
  52. <span style="color: rgb(110, 110, 110);"># Download package file</span>
  53. wget <?php echo $DEBIAN_PACKAGE_URL . "\n"; ?>
  54. <span style="color: rgb(110, 110, 110);"># Install it</span>
  55. sudo dpkg -i <?php echo $DEBIAN_PACKAGE . "\n"; ?>
  56. </pre>
  57. <p>
  58. These packages contain:
  59. </p>
  60. <ul>
  61. <li>Various sources files that activates the separate repositories</li>
  62. <li>GPG keys used for package and repository signing</li>
  63. <li>A post-install script that clears up legacy repository setup</li>
  64. </ul>
  65. <hr/>
  66. <p>
  67. <b>NOTE:</b><br/>
  68. Please do not copy these instructions to your own website, wiki, etc.<br/>
  69. The packages file link might change at anytime, and so the instructions themselves.<br/>
  70. Always refer to this exact page for how-to enable the KXStudio repositories please.
  71. </p>
  72. <p><br/></p>
  73. <?php
  74. include_once("includes/footer.php");
  75. ?>