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.6KB

11 years ago
11 years ago
11 years ago
11 years ago
10 years ago
11 years ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  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 Wheezy and Ubuntu 12.04 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.<br/>
  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. Below is information on how to enable the repositories.
  23. </p>
  24. </div>
  25. <hr/>
  26. <h3><span class="mw-headline" id="Debian"><img src="images/ico_debian.png" class="img_text_align" alt=""/> Debian</h3>
  27. <p>
  28. Debian users can enable our repositories by installing this deb file:
  29. <a href="https://launchpad.net/~kxstudio-debian/+archive/kxstudio/+files/kxstudio-repos_7.2.0%7Ekxstudio1_all.deb" class="external free" rel="nofollow" target="_blank">kxstudio-repos.deb</a>.<br/>
  30. If you're running Debian Wheezy, consider installing the backports repo package as well:
  31. <a href="https://launchpad.net/~kxstudio-debian/+archive/kxstudio/+files/kxstudio-repos-backports_7.2.0%7Ekxstudio1_all.deb" class="external free" rel="nofollow" target="_blank">kxstudio-repos-backports.deb</a>.
  32. (*<i>only</i>* for wheezy)<br/>
  33. </p>
  34. <hr/>
  35. <h3><span class="mw-headline" id="Ubuntu"><img src="images/ico_ubuntu.png" class="img_text_align" alt=""/> Ubuntu</span></h3>
  36. <p>
  37. Ubuntu users can also install deb files for the repositories, but different files are needed for each version.<br/>
  38. As such, we recommend you to enable the repositories using the command-line instead. Just follow these steps:<br/>
  39. </p>
  40. <pre class="code">
  41. <span style="color: rgb(110, 110, 110);"># Install needed tools</span>
  42. sudo apt-get install software-properties-common wget<br/>
  43. <span style="color: rgb(110, 110, 110);"># Enable KXStudio repo (press 'Enter' once asked)</span>
  44. sudo add-apt-repository ppa:kxstudio-debian/kxstudio<br/>
  45. <span style="color: rgb(110, 110, 110);"># Update software sources</span>
  46. sudo apt-get update<br/>
  47. <span style="color: rgb(110, 110, 110);"># Install kxstudio-repos</span>
  48. sudo apt-get install kxstudio-repos<br/>
  49. <span style="color: rgb(110, 110, 110);"># Update software sources again</span>
  50. sudo apt-get update
  51. </pre>
  52. <br/>
  53. <p>
  54. If you're running <b>Linux Mint Maya</b> (based on Ubuntu 12.04), we need to correct for a bug in Mint's code. Run this <b>after</b> enabling the repos:
  55. </p>
  56. <pre class="code">
  57. <span style="color: rgb(110, 110, 110);"># Fix add-apt-repository olivia vs precise mixup</span>
  58. sudo sed -i "s/olivia/precise/" /etc/apt/sources.list.d/kxstudio*.list<br/>
  59. <span style="color: rgb(110, 110, 110);"># Update software sources yet again</span>
  60. sudo apt-get update
  61. </pre>
  62. <hr/>
  63. <h3><span class="mw-headline" id="Ubuntu"><img src="images/ico_linux.png" class="img_text_align" alt=""/> Others</span></h3>
  64. <p>
  65. Users on other linux distributions should enable the repositories that best match their distro.<br/>
  66. Remember that KXStudio offers repositories only for Debian and its based systems.<br/>
  67. </p>
  68. <p><br/></p>
  69. <?php
  70. include_once("includes/footer.php");
  71. ?>