hello maro,
here's part one of your advice. it still looks like fd0 is labelled as noauto instead of automatic.
root@box:~# fdformat /dev/fd0H1440
Double-sided, 80 tracks, 18 sec/track. Total capacity 1440 kB
Formatting... done
Verifying... done
root@box:~# mkfs -t vfat -c /dev/fd0H1440
sh: mkfs: not found
root@box:~# mkfs -t vfat -c /dev/fd0H1440
sh: mkfs: not found
root@box:~# mkfs.vfat
mkfs.vfat 3.0.3 (18 May 2009)
No device specified!
Usage: mkdosfs [-A] [-c] [-C] [-v] [-I] [-l bad-block-file] [-b backup-boot-sector]
[-m boot-msg-file] [-n volume-name] [-i volume-id]
[-s sectors-per-cluster] [-S logical-sector-size] [-f number-of-FATs]
[-h hidden-sectors] [-F fat-size] [-r root-dir-entries] [-R reserved-sectors]
/dev/name [blocks]
root@box:~# mkfs.vfat /dev/fd0
mkfs.vfat 3.0.3 (18 May 2009)
root@box:~# mount /dev/fd0
mount: mounting /dev/fd0 on /mnt/fd0 failed: Invalid argument
root@box:~# rebuildfstab
root@box:~#
# /etc/fstab
proc /proc proc defaults 0 0
sysfs /sys sysfs defaults 0 0
devpts /dev/pts devpts defaults 0 0
tmpfs /dev/shm tmpfs defaults 0 0
/dev/ramzswap0 swap swap defaults,noauto 0 0
/dev/fd0 /mnt/fd0 auto noauto,users,exec 0 0 # Added by TC
/dev/hda1 /mnt/hda1 ext3 noauto,users,exec,relatime 0 0 # Added
/dev/hda2 none swap defaults 0 0 # Added by TC
/dev/hdc /mnt/hdc auto noauto,users,exec 0 0 # Added by TC
/dev/hdd /mnt/hdd auto noauto,users,exec 0 0 # Added by TC
~
~
~
- /etc/fstab 1/11 9%
can i respectfully say that part two is confusing me, and i'll try to explain how and why.
mkdir
i'm not confused by this
/path/to/mountpoint
i don't know where this would be. do i just make up a directory? i don't know what will work. will /home work for this? perhaps /home/floppy?
&&
these are double asperand's. are they actually part of the command? what are their purpose?
mount /dev/fd0 /path/to/mountpoint
if /home/floppy could work, this could be 'mount /dev/fd0 /home/floppy.
the whole command would be 'mkdir /home/floppy && mount /dev/fd0 /home/floppy'
i appreciate your expertise as always.