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

11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
10 years ago
11 years ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  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. <p style="color:#fa3a3a;">
  35. NOTE: The Debian repositories are still a work-in-progress. Some KXStudio meta-packages are not installable right now.
  36. </p>
  37. <hr/>
  38. <h3><span class="mw-headline" id="Ubuntu"><img src="images/ico_ubuntu.png" class="img_text_align" alt=""/> Ubuntu</span></h3>
  39. <p>
  40. Ubuntu users can also install deb files for the repositories, but different files are needed for each version.<br/>
  41. As such, we recommend you to enable the repositories using the command-line instead. Just follow these steps:<br/>
  42. </p>
  43. <pre class="code">
  44. <span style="color: rgb(110, 110, 110);"># Install needed tools</span>
  45. sudo apt-get install software-properties-common wget<br/>
  46. <span style="color: rgb(110, 110, 110);"># Enable KXStudio repo (press 'Enter' once asked)</span>
  47. sudo add-apt-repository ppa:kxstudio-debian/kxstudio<br/>
  48. <span style="color: rgb(110, 110, 110);"># Update software sources</span>
  49. sudo apt-get update<br/>
  50. <span style="color: rgb(110, 110, 110);"># Install kxstudio-repos</span>
  51. sudo apt-get install kxstudio-repos<br/>
  52. <span style="color: rgb(110, 110, 110);"># Update software sources again</span>
  53. sudo apt-get update
  54. </pre>
  55. <br/>
  56. <p>
  57. 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:
  58. </p>
  59. <pre class="code">
  60. <span style="color: rgb(110, 110, 110);"># Fix add-apt-repository olivia vs precise mixup</span>
  61. sudo sed -i "s/olivia/precise/" /etc/apt/sources.list.d/kxstudio*.list<br/>
  62. <span style="color: rgb(110, 110, 110);"># Update software sources yet again</span>
  63. sudo apt-get update
  64. </pre>
  65. <hr/>
  66. <h3><span class="mw-headline" id="Ubuntu"><img src="images/ico_linux.png" class="img_text_align" alt=""/> Others</span></h3>
  67. <p>
  68. Users on other linux distributions should enable the repositories that best match their distro.<br/>
  69. Remember that KXStudio offers repositories only for Debian and its based systems.<br/>
  70. </p>
  71. <p><br/></p>
  72. <?php
  73. include_once("includes/footer.php");
  74. ?>