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.

Documentation:KXStudio12041:NetBootInstall.php 3.4KB

11 years ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. <?php
  2. $PAGE_TITLE = "KXStudio Documentation";
  3. $PAGE_TYPE = "NONKXSTUDIO";
  4. $PAGE_SOURCE_1 = ARRAY("/Documentation", "/Documentation", "/Documentation:KXStudio12041:NetBootInstall");
  5. $PAGE_SOURCE_2 = ARRAY("Documentation", "KXStudio 12.04.1", "NetBootInstall");
  6. include_once("includes/header.php");
  7. ?>
  8. <p>
  9. This section describes how to install a minimal Ubuntu system using a Net-Boot ISO.<br/>
  10. After the base install is done, we'll proceed to upgrade Ubuntu to KXStudio.
  11. </p>
  12. <p>
  13. There are some requirements you need to check before trying this:<br/>
  14. 1 - Your system is connected to the internet via cable;<br/>
  15. 2 - You've downloaded and burned a KXStudio Net-Boot ISO into a CD;<br/>
  16. </p>
  17. <p><br/></p>
  18. <h5><span class="mw-headline" id="Step1">Step 1 - Boot from the ISO</span></h5>
  19. <p>
  20. Make sure your PC is booting from CD drives (the F8 or F9 key during bios splash usually can change the boot media).<br/>
  21. If you can't find the key for that, make sure the CD drive is 1st device the PC tries to boot from (there's an option for that in the BIOS).
  22. </p>
  23. <p><br/></p>
  24. <h5><span class="mw-headline" id="Step2">Step 2 - Install the base system</span></h5>
  25. <p>
  26. When you boot from the ISO, the first thing you'll see is a list of languages - pick yours.<br/>
  27. Tip: Use the 'F3' key now to change the default keyboard language too.
  28. </p>
  29. <p>
  30. Now just click 'Enter' to start the installation.
  31. </p>
  32. <p>
  33. You'll notice this installation method looks rather old, but it's this way because we didn't load any drivers or special stuff yet.<br />
  34. You can browse through the interface using the keyboard. The mouse does nothing at this point.
  35. </p>
  36. <p>
  37. This installation method is exactly the same in an Ubuntu or Debian net-boot ISO, and it's very similar to the "alternate" method.<br />
  38. Note that if you never used this kind of methods to install a Linux system before, you probably should not install KXStudio this way!<br />
  39. Please go with UbuntuStudio 12.04 as a base install, and upgrade to KXStudio afterwards.
  40. </p>
  41. <p>
  42. Once you've installed the base system, it will automatically reboot.
  43. You can remove the CD now.
  44. </p>
  45. <p><br/></p>
  46. <h5><span class="mw-headline" id="Step3">Step 3 - Enable the repositories</span></h5>
  47. <p>
  48. Login in the terminal with the user credentials you entered during the installation.<br />
  49. Note: You won't get any feedback while entering the password - this is normal (actually a security feature).
  50. </p>
  51. <p>
  52. When logged in, run these commands to enable the KXStudio repositories:<br/>
  53. <code>
  54. sudo apt-get update<br/>
  55. sudo apt-get install python-software-properties wget<br/>
  56. sudo add-apt-repository ppa:kxstudio-team/kxstudio<br/>
  57. sudo apt-get update<br/>
  58. sudo apt-get install kxstudio-repos<br />
  59. sudo apt-get update<br/>
  60. </code>
  61. </p>
  62. <p><br/></p>
  63. <h5><span class="mw-headline" id="Step4">Step 4 - Install the KXStudio Desktop</span></h5>
  64. <p>
  65. For this "final" step, you can follow the <a href="<?php echo $ROOT; ?>/Documentation:Ubuntu:Upgrade">Upgrade From Ubuntu</a> tutorial, since the steps are the same.<br />
  66. Just skip to the Step 2 - <a href="<?php echo $ROOT; ?>/Documentation:Ubuntu:Upgrade#Step2">direct link</a>
  67. </p>
  68. <p>
  69. Of course, you won't have any GUI at this point, so you need to use the command-line methods.
  70. </p>
  71. <p><br/></p>
  72. <?php
  73. include_once("includes/footer.php");
  74. ?>