Koozali.org: home of the SME Server

A litle help wonted!

Free_one

A litle help wonted!
« 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!!!!

Nathan Fowler

Re: A litle help wonted!
« Reply #1 on: June 26, 2002, 07:02:20 PM »
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