Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- USB FORMAT
- #fdisk -l #find partition
- #cfdisk /dev/sdc #formatting
- gpt
- new: entire
- type: linux filesystem
- write: yes
- quit
- #mke2fs -t ext4 -O ^has_journal /dev/sdc #ext4 without journal
- #mkdir /media/sdc
- #mount /dev/sdc /media/sdc
- COPY TINYCORE FILES
- $7z x ./tiny/TinyCorePure64-12.0.iso
- $cp -r ./tiny/boot /media/sdc
- $cp -r ./tiny/cde /media/sdc #why cde instead tce now?
- $cd /media/sdc
- $mv ./boot/isolinux/ ./boot/extlinux
- $mv ./boot/extlinux/isolinux.cfg ./boot/extlinux/extlinux.cfg
- $mv ./boot/extlinux/isolinux.bin ./boot/extlinux/extlinux.bin
- $geany ./boot/extlinux/extlinux.cfg #replace with this content
- DEFAULT corepure64
- LABEL corepure64
- KERNEL /boot/vmlinuz64
- INITRD /boot/corepure64.gz
- APPEND waitusb=5 vga=791
- #~ APPEND waitusb=5:UUID="e021c2bf-6890-41f3-9ade-eaaad2e31682" tce=UUID="e021c2bf-6890-41f3-9ade-eaaad2e31682"
- #install extlinux
- #extlinux --install /media/sdc/boot/extlinux/
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement