Why your USB Stick Doesn’t Show on a Nalbantov (and How to Format It FAT32)

I frequently receive requests from customers reporting that their keyboard or Nalbantov cannot read their USB stick. Usually, the issue is that the USB stick isn’t formatted correctly as a FAT32 device, or that it’s corrupt. I’ve created this guide to explain how to format your USB sticks in a manner that’s readable to nearly all older keyboards and USB emulators.

The drive isn’t FAT32

For your USB stick to work with either a Nalbantov USB emulator, or an older keyboard, it must be formatted FAT32.

Modern operating systems often use exFAT by default instead of FAT32. Additionally, Windows computers allow you to format USB sticks in NTFS format, which also won’t work.

On Windows, if you try to format a USB stick that’s larger than 32 GB, you won’t even be given the option to format it was a FAT32 device.

Your USB Stick has Partitions

Some older keyboards/controllers only mount removable media if it has no partition table. This is a bit confusing, since you might have only one partition, but there might still be a partition table. When you format a USB stick without any partition table, you call that formatting it as a “superfloppy.” This is mandatory for your USB stick to work with the Nalbantov.

The stick is simply too slow (or flaky)

Not all USB sticks are equal. As a rule, speed is directly proportional to size, and USB emulators expect very fast USB sticks—which is a bit counterintuitive, since they’re emulating floppy disks! Nalbantov officially recommends name brand 64 GB USB sticks.

How to Format the USB Stick So Nalbantov Will See It

Back up anything you care about. These steps erase the stick completely. Double‑check the disk you select before hitting Enter.

Windows

Rufus explicitly supports creating “Super Floppy Disk” layouts (no MBR/GPT) and formatting in FAT32, which is exactly what you want for devices that prefer a no-partition FAT volume.

Verify your settings using the image below:

  1. Device: pick your USB stick
  2. Boot selection: Non-bootable
  3. Partition scheme: choose Super Floppy (no partition table)
  4. File system: FAT32
  5. Click StartOK
Rufus 4.10.2279, having completed a format successfully on a Windows 10 computer.
Rufus allows you to format USB sticks on Windows in the “Super Floppy Disk” format, using a FAT32 file system. It’s a convenient, one stop solution.

macOS

Find the disk number: diskutil list

Unmount the whole device, then write a FAT32 filesystem directly to the disk (note: use rdiskN for speed): diskutil unmountDisk /dev/diskN sudo newfs_msdos -F 32 -v NALBANTOV /dev/rdiskN This creates a FAT32 superfloppy (no MBR/GPT). newfs_msdos is Apple’s FAT formatter and supports building FAT12/16/32 directly on a device.

Disk Utility can’t make a “no‑scheme” FAT volume; use the Terminal method above for true superfloppy.

Linux

Identify the device (not a partition): lsblk -p

Create FAT32 directly on the whole device with the “ignore partitions” switch: sudo mkfs.vfat -F 32 -I /dev/sdX
The -I flag tells mkfs.vfat to place the filesystem on the entire disk (superfloppy).

Screenshot of Linux terminal showing lsblk -p, and sudo mkfs.
Here you can see me using lsblk -p to verify the partition layout. This USB stick will not work as originally listed, as it has a partition (/dev/sdd1). After formatting, you can see that the disk now has no partitions, and is instead formatted as a superfloppy.

Leave a Comment