This is an old revision of the document!


under construction

# Try at own risk, assumes you have wired internet. Assumes 32 bit install and host has grub2 bootloader. # The data-partition should not have a folder called opt, tce. My spare partition has no home folder but it may be possilbe, # to use a separate host /home partition but not tested by me. # On my host spare partition mounts under /a, which is non-FHS. Hopefully yours will be called /mnt/sdx, and mine is sda2. # Steps could be modified if you use the multicore distro. ###################################### #On host computer ####Create files and their temporary permissions ###################################### mkdir /a/tce /tmp/unpack && cd /tmp wget http://distro.ibiblio.org/tinycorelinux/4.x/x86/release/TinyCore-current.iso # get root powers eg sudo su or su # unpack iso to obtain some files su cd /tmp mount -o loop TinyCore-current.iso unpack

# I won't attempt to create user tc or group staff so TC fixes this on first boot (hopefully) # Now copy some files cd unpack && cp boot/core.gz /a && cp boot/vmlinuz /a #——————note there is no need to have a boot folder for grub files cd cde && cp -R * /a/tce # not sure what your HOST defaults are #….lets make them world read-write-execute for the folder # and readable for kernel and core cd /a && chmod 777 -R tce chmod 444 vmlinuz core.gz # Now temporary owner/group change back to local username #############chown gordon:gordon -R *

###################### ### host grub2 actions ###################### # now edit our grub2 file # change leafpad to your fav terminal or gui text editor leafpad /etc/grub.d/40_custom # —consider adding extra options as well from TC wiki. # I have chosen a basic install where the tcz files will persist.

—————–copy and paste ———- menuentry “TC hard-drive” { set root=(hd0,msdos2) linux /vmlinuz tce=sda2 opt=sda2 waitusb=5 showapps initrd /core.gz }

————end of paste……there is one empty line below the “ } ”

# Change hd0,msdos2 (first hard drive sda2) to where-ever your spare partition is.

# save file and run update-grub #################### ### go for it #################### reboot and try out TC

Print/export
QR Code
QR Code wiki:install_wo_optical_grub2 (generated for current page)