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.

Repositories.php 3.9KB

11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  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 <b>Jessie</b> and Ubuntu <b>14.04</b> or above.<br/>
  11. They should work on all Debian-based distributions and variants.
  12. </p>
  13. <p>
  14. Once you have the repos installed, you can either manually install individual packages from them or
  15. add the meta-packages to automatically install large sets of recommended packages.<br/>
  16. See the <a href="<?php echo $ROOT; ?>/Documentation:Repository:Meta-Packages">Meta-Packages</a> page for more details.<br/>
  17. In either case, we always recommend to install the <b>kxstudio-default-settings</b> package after enabling the repositories.
  18. </p>
  19. <p>
  20. You might also want to check:
  21. </p>
  22. <ul>
  23. <li><a href="<?php echo $ROOT; ?>/Repositories:Applications">Applications in the repositories</a></li>
  24. <li><a href="<?php echo $ROOT; ?>/Repositories:Plugins">Plugins in the repositories</a></li>
  25. </ul>
  26. <p>
  27. Bug reports and package requests should be posted in the
  28. <a href="https://github.com/KXStudio/Repository/issues" target="_blank">Repository project page</a>.<br/>
  29. Below is information on how to enable the repositories.
  30. </p>
  31. </div>
  32. <hr/>
  33. <h3><span class="mw-headline">
  34. <img src="images/ico_debian.png" class="img_text_align" alt=""/> Debian / <img src="images/ico_ubuntu.png" class="img_text_align" alt=""/> Ubuntu
  35. </span></h3>
  36. <p>
  37. All Debian and Ubuntu users can enable our repositories by installing this deb file:
  38. <a href="https://launchpad.net/~kxstudio-debian/+archive/kxstudio/+files/kxstudio-repos_9.4.6%7Ekxstudio1_all.deb" class="free" rel="nofollow">kxstudio-repos.deb</a>.<br/>
  39. You can install it manually by running this:<br/>
  40. </p>
  41. <pre>
  42. <span style="color: rgb(110, 110, 110);"># Install required dependencies if needed</span>
  43. sudo apt-get install apt-transport-https software-properties-common wget
  44. <span style="color: rgb(110, 110, 110);"># Download package file</span>
  45. wget https://launchpad.net/~kxstudio-debian/+archive/kxstudio/+files/kxstudio-repos_9.4.6~kxstudio1_all.deb
  46. <span style="color: rgb(110, 110, 110);"># Install it</span>
  47. sudo dpkg -i kxstudio-repos_9.4.6~kxstudio1_all.deb
  48. </pre>
  49. <p><br/>
  50. If you're using a system <b>newer or equal</b> to <b>Debian 9 (Stretch)</b> or <b>Ubuntu 16.04 (Xenial)</b> you'll also need to enable GCC5 packages.<br/>
  51. You can do so by installing this deb file -
  52. <a href="https://launchpad.net/~kxstudio-debian/+archive/kxstudio/+files/kxstudio-repos-gcc5_9.4.6%7Ekxstudio1_all.deb" class="free" rel="nofollow">kxstudio-repos-gcc5.deb</a>,
  53. or manually by running this:
  54. </p>
  55. <pre>
  56. <span style="color: rgb(110, 110, 110);"># Install required dependencies if needed</span>
  57. sudo apt-get install libglibmm-2.4-1v5
  58. <span style="color: rgb(110, 110, 110);"># Download package file</span>
  59. wget https://launchpad.net/~kxstudio-debian/+archive/kxstudio/+files/kxstudio-repos-gcc5_9.4.6~kxstudio1_all.deb
  60. <span style="color: rgb(110, 110, 110);"># Install it</span>
  61. sudo dpkg -i kxstudio-repos-gcc5_9.4.6~kxstudio1_all.deb
  62. </pre>
  63. <p><br/>
  64. These packages contain:
  65. </p>
  66. <ul>
  67. <li>Various sources files that activates the separate repositories</li>
  68. <li>GPG keys used for package and repository signing</li>
  69. <li>A post-install script that enables an extra, Ubuntu-specific repository</li>
  70. </ul>
  71. <hr/>
  72. <p>
  73. <b>NOTE:</b><br/>
  74. Please do not copy these instructions to your own website, wiki, etc.<br/>
  75. The packages file link might change at anytime, and so the instructions themselves.<br/>
  76. Always refer to this exact page for how-to enable the KXStudio repositories please.
  77. </p>
  78. <p><br/></p>
  79. <?php
  80. include_once("includes/footer.php");
  81. ?>