Skip to content

Instantly share code, notes, and snippets.

@Necklaces
Last active August 29, 2015 14:17
Show Gist options
  • Select an option

  • Save Necklaces/c50565a640273a7401b5 to your computer and use it in GitHub Desktop.

Select an option

Save Necklaces/c50565a640273a7401b5 to your computer and use it in GitHub Desktop.
Tiny Core - Core / MicroCore - Minimal Quick Install
# Core 6.1, requires ethernet
tce-load -wi cfdisk
tce-load -wi grub-0.97-splash
tce-load -wi nano
sudo su
fdisk -l
cfdisk /dev/sda
mkfs.ext4 /dev/sda1
rebuildfstab
mount /mnt/sda1
mount /mnt/sr0
mkdir -p /mnt/sda1/boot/grub
mkdir -p /mnt/sda1/tce/optional
cp -p /mnt/sdb1/boot/core.gz /mnt/sda1/boot/
cp -p /mnt/sdb1/boot/vmlinuz /mnt/sda1/boot/
cp -p /usr/lib/grub/i386-pc/* /mnt/sda1/boot/grub/
touch /mnt/sda1/tce/mydata.tgz
nano /mnt/sda1/boot/grub/menu.lst
Enter the following:
default 0
timeout 0
title MicroCore
kernel /boot/vmlinuz quiet
initrd /boot/core.gz
grub
In the grub prompt,
root (hd0,0)
setup (hd0)
quit
sudo reboot
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment