LinuxQuestions.org
Latest LQ Deal: Latest LQ Deals
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
Linux - Newbie This 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


Reply
  Search this Thread
Old 12-10-2010, 05:43 AM   #1
wildoscar
LQ Newbie
 
Registered: Dec 2010
Posts: 15

Rep: Reputation: 0
getting to floppy


How do you access a floppy drive from linux dsl live?

Thanks
 
Old 12-10-2010, 06:38 AM   #2
Samotnik
Member
 
Registered: Jun 2006
Location: Belarus
Distribution: Debian GNU/Linux testing/unstable
Posts: 471

Rep: Reputation: 40
Floppy drive usually have a /dev/fd0 device file.
Try to mount it.
 
Old 12-10-2010, 06:54 AM   #3
wildoscar
LQ Newbie
 
Registered: Dec 2010
Posts: 15

Original Poster
Rep: Reputation: 0
Quote:
Originally Posted by Samotnik View Post
Floppy drive usually have a /dev/fd0 device file.
Try to mount it.
how do i mount it? where do i type /dev/fd0 device file.?
Thanks
 
Old 12-10-2010, 07:12 AM   #4
markush
Senior Member
 
Registered: Apr 2007
Location: Germany
Distribution: Slackware
Posts: 3,979

Rep: Reputation: Disabled
Hi,

if there is a directory /mnt, execute
Code:
mount /dev/fd0 /mnt
then you will see the files on the floppydisc in /mnt

You may as well create a new directory (same command as with Windows, mkdir) before mounting
Code:
mkdir /mnt/newfloppydirectory
mount /dev/fd0 /mnt/newfloppydirectory
if you get errormessages, please post this messages here.

Markus
 
Old 12-10-2010, 08:10 AM   #5
wildoscar
LQ Newbie
 
Registered: Dec 2010
Posts: 15

Original Poster
Rep: Reputation: 0
Quote:
Originally Posted by markush View Post
Hi,

if there is a directory /mnt, execute
Code:
mount /dev/fd0 /mnt
then you will see the files on the floppydisc in /mnt

You may as well create a new directory (same command as with Windows, mkdir) before mounting
Code:
mkdir /mnt/newfloppydirectory
mount /dev/fd0 /mnt/newfloppydirectory
if you get errormessages, please post this messages here.

Markus
I can see a mount icon at bottom screen but nothing happens when I click on it. nothing at all no error messages. do i need to be a super user. Tried command for that but nothing happened

How do i get to the directory to execute
 
Old 12-10-2010, 08:25 AM   #6
teckk
LQ Guru
 
Registered: Oct 2004
Distribution: Arch
Posts: 5,137
Blog Entries: 6

Rep: Reputation: 1826Reputation: 1826Reputation: 1826Reputation: 1826Reputation: 1826Reputation: 1826Reputation: 1826Reputation: 1826Reputation: 1826Reputation: 1826Reputation: 1826
You will usually need to be root to mount a disk, unless you have given user mounting priveledges in one of your config files.

If your floppy is /dev/fd0 then mount it something like (# means root)
Code:
#mount -t vfat /dev/fd0 /home/username/mounting_point
Look at the man page for mount
Code:
man mount
http://linuxmanpages.com/man8/mount.8.php

Start to become familiar with shell commands. It will make your experience with *nix better, and you'll be able to control the box.

http://tldp.org/LDP/intro-linux/html/
http://rute.2038bug.com/index.html.gz
http://lnag.sourceforge.net/

Google will also answer a good deal of your basic Linux questions
 
Old 12-10-2010, 08:42 AM   #7
wildoscar
LQ Newbie
 
Registered: Dec 2010
Posts: 15

Original Poster
Rep: Reputation: 0
Quote:
Originally Posted by teckk View Post
You will usually need to be root to mount a disk, unless you have given user mounting priveledges in one of your config files.

If your floppy is /dev/fd0 then mount it something like (# means root)
Code:
#mount -t vfat /dev/fd0 /home/username/mounting_point
Look at the man page for mount
Code:
man mount
http://linuxmanpages.com/man8/mount.8.php

Start to become familiar with shell commands. It will make your experience with *nix better, and you'll be able to control the box.

http://tldp.org/LDP/intro-linux/html/
http://rute.2038bug.com/index.html.gz
http://lnag.sourceforge.net/

Google will also answer a good deal of your basic Linux questions
thanks but i cannot see or understand where i enter the commands

Quote:
#mount -t vfat /dev/fd0 /home/username/mounting_point
and
Quote:
man mount
from

In windows you can enter a command at the C: prompt. How do i get to the equivalent of the C prompt in DSL?
 
Old 12-10-2010, 08:48 AM   #8
Snark1994
Senior Member
 
Registered: Sep 2010
Distribution: Debian
Posts: 1,632
Blog Entries: 3

Rep: Reputation: 346Reputation: 346Reputation: 346Reputation: 346
It should be in the menu somewhere... Look for "Shell" or "Terminal" or something along those lines.
 
Old 12-10-2010, 09:10 AM   #9
teckk
LQ Guru
 
Registered: Oct 2004
Distribution: Arch
Posts: 5,137
Blog Entries: 6

Rep: Reputation: 1826Reputation: 1826Reputation: 1826Reputation: 1826Reputation: 1826Reputation: 1826Reputation: 1826Reputation: 1826Reputation: 1826Reputation: 1826Reputation: 1826
Yes,
xterm, aterm, gterm, mrxvt, konsole, or just your console without a GUI.
Whatever it is that you are using.

I would suggest that you stop and do a little *nix reading. It'll save you some frustration.

Once you become familiar with the unix-linux shell, which usually have c, perl, and maybe python interpreters built in, unlike the windows command prompt which is nothing but a black window that you can type in.
You can control any *.nix box. You'll also be able to go from distro to distro without problem. You'll also understand what the GUI apps are doing.
 
Old 12-10-2010, 09:29 AM   #10
wildoscar
LQ Newbie
 
Registered: Dec 2010
Posts: 15

Original Poster
Rep: Reputation: 0
Quote:
Originally Posted by Snark1994 View Post
It should be in the menu somewhere... Look for "Shell" or "Terminal" or something along those lines.
they do not open. how do i exit turn off can i just take out cd
 
Old 12-10-2010, 10:23 AM   #11
teckk
LQ Guru
 
Registered: Oct 2004
Distribution: Arch
Posts: 5,137
Blog Entries: 6

Rep: Reputation: 1826Reputation: 1826Reputation: 1826Reputation: 1826Reputation: 1826Reputation: 1826Reputation: 1826Reputation: 1826Reputation: 1826Reputation: 1826Reputation: 1826
http://damnsmalllinux.org/cgi-bin/forums/ikonboard.cgi

http://www.damnsmalllinux.org/
 
Old 12-10-2010, 11:24 AM   #12
wildoscar
LQ Newbie
 
Registered: Dec 2010
Posts: 15

Original Poster
Rep: Reputation: 0
I have restarted and all the apps work now such as browser/root etc
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Cannot mount my Floppy drive while creating driver floppy gobs04 Linux - Newbie 2 09-23-2009 07:43 PM
How to make boot floppy in Mandriva 2008.1 with external floppy d1l2w3 Mandriva 4 07-25-2008 09:53 AM
Floppy problem: inable to find floppy vasanthraghavan Linux - Hardware 1 07-03-2005 09:34 PM
Just installed Fedora, fatal error when it looks for floppy, i have no floppy Zieroth Linux - Software 18 07-19-2004 06:42 PM
Debian Woody floppy install problems with ATAPI floppy jturnicate Linux - Newbie 0 02-17-2004 09:45 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

All times are GMT -5. The time now is 03:30 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration