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.

94 lines
3.7KB

  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, 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.
  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. Also consider taking a look at the
  23. <a href="<?php echo $ROOT; ?>/Documentation:Repository:Meta-Packages">available meta-packages</a>
  24. if you don't know what things to install just yet.
  25. </p>
  26. <p>
  27. Below is information on how to enable the repositories.
  28. </p>
  29. </div>
  30. <hr/>
  31. <h3><span class="mw-headline">
  32. <img src="images/ico_debian.png" class="img_text_align" alt=""/> Debian / <img src="images/ico_ubuntu.png" class="img_text_align" alt=""/> Ubuntu
  33. </span></h3>
  34. <p>
  35. All Debian and Ubuntu users can enable our repositories by installing this deb file:
  36. <a href="https://launchpad.net/~kxstudio-debian/+archive/kxstudio/+files/kxstudio-repos_9.4.5%7Ekxstudio1_all.deb" class="free" rel="nofollow">kxstudio-repos.deb</a>.<br/>
  37. You can install it manually by running this:<br/>
  38. </p>
  39. <pre>
  40. <span style="color: rgb(110, 110, 110);"># Install required dependencies if needed</span>
  41. sudo apt-get install apt-transport-https software-properties-common wget
  42. <span style="color: rgb(110, 110, 110);"># Download package file</span>
  43. wget https://launchpad.net/~kxstudio-debian/+archive/kxstudio/+files/kxstudio-repos_9.4.5~kxstudio1_all.deb
  44. <span style="color: rgb(110, 110, 110);"># Install it</span>
  45. sudo dpkg -i kxstudio-repos_9.4.5~kxstudio1_all.deb
  46. </pre>
  47. <p><br/>
  48. If you're using a system <b>newer or equal</b> to <b>Debian Testing</b> or <b>Ubuntu 15.10</b> you'll also need to enable GCC5 packages.<br/>
  49. You can do so by installing this deb file -
  50. <a href="https://launchpad.net/~kxstudio-debian/+archive/kxstudio/+files/kxstudio-repos-gcc5_9.4.5%7Ekxstudio1_all.deb" class="free" rel="nofollow">kxstudio-repos-gcc5.deb</a>,
  51. or manually by running this:
  52. </p>
  53. <pre>
  54. <span style="color: rgb(110, 110, 110);"># Install required dependencies if needed</span>
  55. sudo apt-get install libglibmm-2.4-1v5
  56. <span style="color: rgb(110, 110, 110);"># Download package file</span>
  57. wget https://launchpad.net/~kxstudio-debian/+archive/kxstudio/+files/kxstudio-repos-gcc5_9.4.5~kxstudio1_all.deb
  58. <span style="color: rgb(110, 110, 110);"># Install it</span>
  59. sudo dpkg -i kxstudio-repos-gcc5_9.4.5~kxstudio1_all.deb
  60. </pre>
  61. <p><br/>
  62. These packages contain:
  63. </p>
  64. <ul>
  65. <li>Various sources files that activates the separate repositories</li>
  66. <li>GPG keys used for package and repository signing</li>
  67. <li>A post-install script that enables an extra, Ubuntu-specific repository</li>
  68. </ul>
  69. <hr/>
  70. <p>
  71. <b>NOTE:</b><br/>
  72. Please do not copy these instructions to your own website, wiki, etc.<br/>
  73. The packages file link might change at anytime, and so the instructions themselves.<br/>
  74. Always refer to this exact page for how-to enable the KXStudio repositories please.
  75. </p>
  76. <p><br/></p>
  77. <?php
  78. include_once("includes/footer.php");
  79. ?>