WelcomeWelcome | FAQFAQ | DownloadsDownloads | WikiWiki

Author Topic: mount tool not reading drive!  (Read 275 times)

Offline JunkYard

  • Full Member
  • ***
  • Posts: 125
mount tool not reading drive!
« on: July 03, 2026, 05:53:42 AM »
Hello again!

I have just plugged in a floppy drive. on the windows partision it reads it. However the mount tool in tiny core dose not

Offline Rich

  • Administrator
  • Hero Member
  • *****
  • Posts: 12910
Re: mount tool not reading drive!
« Reply #1 on: July 03, 2026, 09:09:16 AM »
Hi JunkYard
First see if the system detected the floppy:
Code: [Select]
grep '/dev/fd' /etc/fstabIf grep doesn't give a response, then do this:
Code: [Select]
sudo modprobe floppy
sudo rebuildfstab
grep '/dev/fd' /etc/fstab
Grep should print something like this:
Code: [Select]
/dev/fd0 /mnt/fd0 auto noauto,users,exec,umask=000 0 0 # Added by TCIf you get that response, start the mount tool.
It should now have a button labeled  fd0.
Insert a formatted floppy disk and click the  fd0  button.

Offline JunkYard

  • Full Member
  • ***
  • Posts: 125
Re: mount tool not reading drive!
« Reply #2 on: July 05, 2026, 01:43:47 PM »
Hi JunkYard
First see if the system detected the floppy:
Code: [Select]
grep '/dev/fd' /etc/fstabIf grep doesn't give a response, then do this:
Code: [Select]
sudo modprobe floppy
sudo rebuildfstab
grep '/dev/fd' /etc/fstab
Grep should print something like this:
Code: [Select]
/dev/fd0 /mnt/fd0 auto noauto,users,exec,umask=000 0 0 # Added by TCIf you get that response, start the mount tool.
It should now have a button labeled  fd0.
Insert a formatted floppy disk and click the  fd0  button.

I followed bough of those commands; bud sadly bough say no such directory

Offline StelaHong

  • Newbie
  • *
  • Posts: 1
Re: mount tool not reading drive!
« Reply #3 on: July 15, 2026, 04:29:48 AM »
I'd also check the boot messages with dmesg to see if there's a more specific error before changing too many things. On Tiny Core it's often something simple like a missing extension, firmware, or a boot parameter. Posting the exact error output usually makes it much easier for others to pinpoint the cause.