Last active
August 29, 2015 14:17
-
-
Save Necklaces/c50565a640273a7401b5 to your computer and use it in GitHub Desktop.
Tiny Core - Core / MicroCore - Minimal Quick Install
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 (without # in front): | |
# | |
# default 0 | |
# timeout 0 | |
# title MicroCore | |
# kernel /boot/vmlinuz quiet | |
# initrd /boot/core.gz | |
# | |
# To save: ctrl-o, enter | |
# To quit: ctrl-x (if you didn't save, hit 'y', then enter) | |
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