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.

139 lines
5.3KB

  1. <?php
  2. $PAGE_TITLE = "KXStudio : Documentation";
  3. $PAGE_TYPE = "NONKXSTUDIO";
  4. $PAGE_SOURCE_1 = ARRAY("/Documentation", "/Documentation", "/Documentation:Repository:Upgrade");
  5. $PAGE_SOURCE_2 = ARRAY("Documentation", "Repository", "Upgrade");
  6. include_once("includes/header.php");
  7. ?>
  8. <p>
  9. This section describes how to upgrade from a regular Ubuntu 14.04 install (or variants), to a cool and fresh KXStudio Desktop.<br />
  10. <span style="color:#fa3a3a;">This method has been tested to work in Ubuntu 14.04 based systems</span>.
  11. </p>
  12. <p><br/></p>
  13. <h5><span class="mw-headline" id="Step1">Step 1 - Enable the repositories</span></h5>
  14. <p>
  15. Open up the 'Terminal' (found in the applications), and run these commands<br/>
  16. <code>
  17. sudo apt-get install software-properties-common wget<br/>
  18. sudo add-apt-repository ppa:kxstudio-debian/kxstudio
  19. </code>
  20. </p>
  21. <p>
  22. KXStudio officially supports KDE4. You can still install KXStudio if using any other Desktop Environment,<br/>but there's no meta-packages for them, and we'll not document the install process here.<br/>
  23. Create a new topic in the forums if you want support for other DEs.
  24. </p>
  25. <p>
  26. Next, reload the sources (method depends on the current application), and install the package 'kxstudio-repos'. Then reload the sources again.<br />
  27. You can do the same thing in the command-line with:<br />
  28. <code>
  29. sudo apt-get update<br/>
  30. sudo apt-get install kxstudio-repos<br/>
  31. sudo apt-get update
  32. </code>
  33. </p>
  34. <p><br/></p>
  35. <h5><span class="mw-headline" id="Step2">Step 2 - Update the system</span></h5>
  36. <p>
  37. Once you've got the repositories set-up, it's time to upgrade the system (ie, update the software, not upgrade to a newer Ubuntu release!).
  38. </p>
  39. <p>
  40. Simply use whatever tool your Desktop Environment provides (Ubuntu Software Center, Synaptic, Update Manager, KPackageKit, Muon, etc).<br />
  41. If you want to use the command-line, or if you just got too many dependency conflicts (can happen if you enabled many PPAs before upgrading to KXStudio), the command is:<br />
  42. <code>
  43. sudo apt-get dist-upgrade
  44. </code><br/>
  45. Even though it says 'dist-upgrade', it will not update the Ubuntu version. In this case, 'dist' means something like "resolve conflicts, even if some stuff gets removed".<br />
  46. </p>
  47. <p>
  48. This step will take some time. Some minor questions may appear while the upgrade takes place.
  49. </p>
  50. <p><br/></p>
  51. <h5><span class="mw-headline" id="Step3">Step 3 - Install the KXStudio Desktop</span></h5>
  52. <p>
  53. After the upgrade, it's time to install the main KXStudio packages.<br />
  54. Just like you did to install the 'kxstudio-repos' package, now install:
  55. </p>
  56. <p>
  57. <code>
  58. For KDE4 -&gt; 'kxstudio-desktop-kde4'<br />
  59. </code><br/>
  60. For other systems install 'kxstudio-desktop-base' and the ubuntu related package, like 'lubuntu-desktop' for LXDE<br />
  61. </p>
  62. <p><br/></p>
  63. <h5><span class="mw-headline" id="Step4">Step 4 - Install the Multimedia Software</span></h5>
  64. <p>
  65. This step is almost optional. Here we install the basic software for Audio, Graphics and Video.<br />
  66. Just like before, it's time to install some new meta-packages. They are available as listed here (following a tree view of dependencies):
  67. </p>
  68. <ul>
  69. <li>kxstudio-meta-all</li>
  70. <ul>
  71. <li>kxstudio-meta-audio</li>
  72. <ul>
  73. <li>kxstudio-meta-audio-plugins</li>
  74. <ul>
  75. <li>kxstudio-meta-audio-plugins-dssi</li>
  76. <li>kxstudio-meta-audio-plugins-ladspa</li>
  77. <li>kxstudio-meta-audio-plugins-lv2</li>
  78. <li>kxstudio-meta-audio-plugins-vamp</li>
  79. <li>kxstudio-meta-audio-plugins-vst</li>
  80. </ul>
  81. </ul>
  82. <li>kxstudio-meta-graphics</li>
  83. <li>kxstudio-meta-video</li>
  84. </ul>
  85. <li>kxstudio-meta-codecs</li>
  86. <li>kxstudio-meta-restricted-extras</li>
  87. </ul>
  88. <p>
  89. Install the meta-packages you want just like before (ie, search for the package and click to install, or use in command-line: <code>sudo apt-get install &lt;package-name&gt;</code>)<br />
  90. See <a href="<?php echo $ROOT; ?>/Documentation:Ubuntu:Meta-Packages">Documentation:Ubuntu:Meta-Packages</a> for a description of these meta-packages.<br />
  91. </p>
  92. <p>
  93. Note - meta-all recommends restricted extras, and audio recommends audio-plugins.
  94. </p>
  95. <p><br/></p>
  96. <h5><span class="mw-headline" id="Step5">Step 5 - Install a Kernel (Optional)</span></h5>
  97. <p>
  98. This step is optional, and mostly useful for audio production only.<br />
  99. Installing a kernel in KXStudio couldn't be easier - just install this package.
  100. </p>
  101. <code>
  102. sudo apt-get install linux-lowlatency
  103. </code>
  104. <p><br/></p>
  105. <h5><span class="mw-headline" id="Step6">Step 6 - Reboot and update settings</span></h5>
  106. <p>
  107. After all this, it's time to reboot.<br />
  108. The next time you login, you'll see the KXStudio Welcome Screen to help you update your settings (and maybe the theme too).<br />
  109. You should also run 'cadence' and change your JACK settings to your preference.<br />
  110. Finally, if you installed 'kxstudio-desktop-kde4' logout and just re-login to kde plasma after updating the settings.
  111. </p>
  112. <p><br/></p>
  113. <h5><span class="mw-headline" id="Step7">Step 7 - Enjoy!</span></h5>
  114. <p>
  115. Of course, now it's time to enjoy!
  116. </p>
  117. <p><br/></p>
  118. <?php
  119. include_once("includes/footer.php");
  120. ?>