[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: disklabel for a floppy
hi,
Since java is still not embedded in the system well here is
my thoughts FWIW:
/* format the floppy */
#fdformat /dev/fd0a
/* label it */
#disklabel -w -r /dev/fd0a fd1440
/* do a ls of floppy */
#disklabel -r /dev/fd0a
/* what does that show? */
/* create new fs */
#newfs /dev/fd0a
/* make a dir to mount */
#mkdir /floppy
/* mount it */
#mount /dev/fd0a /floppy
/* check out your mounts */
#df
/* hope that helps out.. */