Koozali.org: home of the SME Server
Legacy Forums => General Discussion (Legacy) => Topic started by: Free_one on June 26, 2002, 01:27:07 PM
-
I have started to use linux and started it with e-smith server!
I have to install meny things on it but therfor this linux dont have grafih interface I have to do it manualy.
So please help - where I can find manual on how to actvite CD-ROm and diactivite and where to find these fils and also how to activite flopy drive and how to deactivite it?
Thanks for you help!!!!
-
To mount a floppy drive:
mkdir -p /mnt/floppy
mount /dev/fd0 /mnt/floppy
The floppy files can be found in /mnt/floppy. Once you are done, to unmount the floppy you would:
cd /
umount /mnt/floppy
To mount a Cd-ROM
mkdir -p /mnt/cdrom
mount /dev/cdrom /mnt/cdrom
The CD-ROM files can be found in /mnt/cdrom. Once you are done, to unmount the CD-ROM you would:
cd /
umount /dev/cdrom
Hope this helped,
Nathan