Advertisement
Guest User

Dragora 3 build as of 12/27/17

a guest
Dec 27th, 2017
190
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.31 KB | None | 0 0
  1. ## Below is a rough sketch of the steps I followed to build D3 CD:
  2.  
  3. # For best results, build on a host running fully-updated Dragora 2.2.
  4.  
  5. (Install xz on the host machine if not already installed)
  6. wget http://gungre.ch/dragora/repo/frusen/old-stable/xz/xz-5.0.5-x86_64-2.tlz
  7. sudo pkg add xz-5.0.5-x86_64-2.tlz
  8.  
  9. git clone git://git.savannah.gnu.org/dragora.git
  10.  
  11. cd dragora/sources
  12. rsync -rvaiz --progress rsync://rsync.dragora.org/dragora/current/sources/ .
  13. cd ..
  14.  
  15. sudo ./bootstrap -a x86_64 -s 0
  16. sudo ./bootstrap -a x86_64 -s 1
  17.  
  18. ./enter_chroot
  19.  
  20. (For each of these, if prompted, pick option 3 to skip packages built earlier)
  21. qi -o /usr/src/qi/recipes/core.order | qi -b -j2 -i -
  22. qi -o /usr/src/qi/recipes/editors.order | qi -b -j2 -i -
  23. qi -o /usr/src/qi/recipes/sound.order | qi -b -j2 -i -
  24. qi -o /usr/src/qi/recipes/networking.order | qi -b -j2 -i -
  25. qi -o /usr/src/qi/recipes/xorg.order | qi -b -j2 -i -
  26. qi -o /usr/src/qi/recipes/x-apps.order | qi -b -j2 -i -
  27.  
  28. (This determines the defult root password in the CD)
  29. passwd
  30.  
  31. (exit chroot with ctrl+d)
  32. (Install squashfs on the host machine if not already installed)
  33. (this is available in dragora/sources; just do "make; make install")
  34.  
  35. (When it finishes, the iso should be in dragora/OUTPUT.bootstrap/stage2/cdrom/)
  36. sudo ./bootstrap -a x86_64 -s 2
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement