Linux - NewbieThis Linux forum is for members that are new to Linux.
Just starting out and have a question?
If it is not in the man pages or the how-to's this is the place!
Notices
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Introduction to Linux - A Hands on Guide
This guide was created as an overview of the Linux Operating System, geared toward new users as an exploration tour and getting started guide, with exercises at the end of each chapter.
For more advanced trainees it can be a desktop reference, and a collection of the base knowledge needed to proceed with system and network administration. This book contains many real life examples derived from the author's experience as a Linux system and network administrator, trainer and consultant. They hope these examples will help you to get a better understanding of the Linux system and that you feel encouraged to try out things on your own.
Click Here to receive this Complete Guide absolutely free.
i am trying to mount floppy drive on my laptop. i am diong this
mount /dev/floppy /etc/fstab but it is giving me error which is
mount: special device /dev/floppy doesn't exist
please help me out how to mount the floppy drive
Thanks a lot
Ciao
First create an empty directory in /mnt called floppy
mkdir /mnt/floppy
Then try:
mount /dev/fd0 /mnt/floppy
You can't mount your floppy to the /etc/fstab file.. and you might have to specify the filesystem type used on the floppy.. it would look something like this if that's the case:
mount -t msdos /dev/fd0 /mnt/floppy
That's if your floppy is formatted with a msdos filesystem. Not sure what to put there, man mount for the manual pages that explain this.
BACKGROUND:
I recently installed SuSE 9.1 on my desktop dual booting with Windows. As part of the windows install, I had to have the dual boot disk as the Secondary IDE Master so I could move some files from the old Windows file. I ended up installing SuSE on my dual boot OS disk while it was mounted at /dev/hdc and now I'd like to physically move the dual OS hard disk to the Primary Master IDE connection (/dev/hda).
QUESTION:
Is it possible to:
Remount my hard disk from /dev/hdc to /dev/hda with the "mount" command,
shut down,
physically change the location of the hard disk to primary master,
and then boot up with the disk registering as /dev/hda?
I'd like to avoid messing things up and doing a complete re-install.
Thanks for your help!
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.