# modprobe usb-storageNow, you have to plug your USB stick, and have a look at the kernel messages. You may find the device name.
# dmesg | tail -n 50Here is a example of report from the kernel:
Initializing USB Mass Storage driver... usb.c: registered new driver usb-storage USB Mass Storage support registered. hub.c: new USB device 00:02.0-2, assigned address 3 scsi1 : SCSI emulation for USB Mass Storage devices Vendor: EXATEL Model: i-BEAD100 Rev: 0001 Type: Direct-Access ANSI SCSI revision: 02 WARNING: USB Mass Storage data integrity not assured USB Mass Storage device found at 3Then, you should try to mount the device:
# mkdir /mnt/usbstick # mount -t vfat /dev/sda1 /mnt/usbstickIf there is no space enough left on the device (about 80 MB), you will have to erase the current files (all data will be lost):
# rm -rf /mnt/usbstick/*
# cp /mnt/cdrom/sysrcd.dat /mnt/usbstick/ # cp -a /mnt/cdrom/isolinux /mnt/usbstick/ # cp /mnt/cdrom/isolinux/* /mnt/usbstick/
# umount /mnt/usbstick # syslinux /dev/sda1