Advertisement
Guest User

Untitled

a guest
Jun 20th, 2021
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.92 KB | None | 0 0
  1. USB FORMAT
  2. #fdisk -l #find partition
  3. #cfdisk /dev/sdc #formatting
  4. gpt
  5. new: entire
  6. type: linux filesystem
  7. write: yes
  8. quit
  9. #mke2fs -t ext4 -O ^has_journal /dev/sdc #ext4 without journal
  10. #mkdir /media/sdc
  11. #mount /dev/sdc /media/sdc
  12.  
  13. COPY TINYCORE FILES
  14. $7z x ./tiny/TinyCorePure64-12.0.iso
  15. $cp -r ./tiny/boot /media/sdc
  16. $cp -r ./tiny/cde /media/sdc #why cde instead tce now?
  17. $cd /media/sdc
  18. $mv ./boot/isolinux/ ./boot/extlinux
  19. $mv ./boot/extlinux/isolinux.cfg ./boot/extlinux/extlinux.cfg
  20. $mv ./boot/extlinux/isolinux.bin ./boot/extlinux/extlinux.bin
  21. $geany ./boot/extlinux/extlinux.cfg #replace with this content
  22. DEFAULT corepure64
  23. LABEL corepure64
  24. KERNEL /boot/vmlinuz64
  25. INITRD /boot/corepure64.gz
  26. APPEND waitusb=5 vga=791
  27. #~ APPEND waitusb=5:UUID="e021c2bf-6890-41f3-9ade-eaaad2e31682" tce=UUID="e021c2bf-6890-41f3-9ade-eaaad2e31682"
  28.  
  29. #install extlinux
  30. #extlinux --install /media/sdc/boot/extlinux/
  31.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement