Linux

How to format and duplicate floppies under Linux

FORMATING
1. Put floppy in drive, do not mount it.
2. fdformat /dev/fd0

OR: Use "System Tools -> Floppy Formatter " in RedHat 9

DUPLICATING
1. Put source floppy into floppy drive
2. Mount it if it doesn't automount.
3. dd if=/dev/fd0 of=/tmp/floppy bs=1024 count=1440
4. Eject floppy, put destination floppy in
5. dd if=/tmp/floppy of=/dev/fd0 bs=1024 count=1440

How to load kernel modules automatically during system boot

How to load kernel modules upon startup? Everytime I want to connect my ipod I have to load the hfsplus kernel module. So I decided to load it automatically upon system bootup. In Suse 9, kernel modules that are supposed to be loaded after the main file system has mounted are specified in /etc/sysconfig/kernel: MODULES_LOADED_ON_BOOT=" cdrom ide-cd ide-scsi hfsplus"

Pages