1) Attach zip drive to host system, insert blank zip disk into the drive and boot the system to Linux
2) Login. You probably need to login as root or the user you log in as will need to be able to write file systems, mount and unmount disks etc....
3) Install an ext2fs file system on the zip disk. with the command:
         /sbin/mke2fs -b 1024 /dev/sda4
 
         mount /dev/sda4 /(zip)
 
         mount /dev/hdc /(cdrom)
 
         mkdir /(zip)/slakware
 
         mkdir /root/slakware/(verx.x)
 
         cp /(cdrom)/rootdsks/text.gz /root/slakware/(verx.x)/
 
         cd /root/slakware/(verx.x)
         gunzip text.gz
         dd if=text of=/dev/fd0
 
         mount /dev/fd0 /(floppy)
 
         cp -dpR /(floppy)/* /(zip)/
         dd if=/dev/zero of=/(zip)/swap bs=1024 count=8208
         /sbin/mkswap /(zip)/swap 8208
         /sbin/swapon /swap
         cp -r /(cdrom)/slakware/[a-ty]* /(zip)/slakware/ &
17) External zip drives have two lights--mine are green and yellow; the internal drives appear to have only one. When my zip disk has finished receiving information the yellow light goes out and I'm left with just the green power light. on internal drives the single "status?" light will go out.
It is now time to prepare the floppy and zip disks for removal from their drives by unmounting them:
         cd
         umount /dev/fd0
         umount /dev/sda4
18) Life will be easier later if we check the root disk's file system before we try to use it with the command:
         /sbin/e2fsck -f /dev/sda4
When disk activity ends if there are no errors you may remove the zip disk from the drive and label it Slackware Root disk. I also include the version number in pencil.
If the X window system is to be installed or you will be needing one of the other prebuilt kernels it is now time to build the 2nd. zip disk.
x1) Insert disk 2 in the zip drive. I like to write an ext2fs file system on this disk also, but if it has a M$ Dos file system that will work also. I use the up arrow key on my keyboard to recall previously used commands from my history file because I'm a bit lazy, but if you want to retype the command repeat instructions 3), 4), and 6) above.
x2) Copy the X11R6 "X Window" packages to zip
         cp -r /(cdrom)/slakware/x* /(zip)/slakware/ &
x3) There is also room on this disk for the custom kernels directory. It is classy to install one that meets the system's needs as closely as possible to go with the one needed to access the zip drive. Make this kernel the system default. So now we will make a directory for that and then copy the information to it:
         mkdir /(zip)/kernels
         cp -r /(cdrom)/kernels/* /(zip)/kernels/ &
x4) When disk activity is at an end unmount the disk and run fsck on it:
         umount /dev/sda4
         /sbin/e2fsck -f /dev/sda4
b1) I now make a 1.44 meg boot disk. Use the /(cdrom)/bootdsks.144/iomega.s image. Install a new 1.44 meg floppy disk in the proper drive. The command to make the disk is:
         dd if=/(cdrom)/bootdsks.144/iomega.s of=/dev/fd0
b2) Check the file systems of the boot disk:
         /sbin/e2fsck -f /dev/fd0