LinuxQuestions.org
Visit Jeremy's Blog.
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-30-2004, 11:08 AM   #1
digitalgremline
LQ Newbie
 
Registered: Dec 2004
Posts: 13

Rep: Reputation: 0
Modem, 2nd HD, and USB FD problems


I installed RedHat Linux 9 yesterday and got it all set up and everything, been playing the games and what not since I can't get on the internet yet. I have run into 3 problems (2 may be the same thing):

1. I need a new modem unless I can find drivers for a U.S. Robotics 56K Faxmodem. And by contemplating on buying a new modem, I have concluded 2 things:
A) It needs to be external, because I have read in numerous places that internal ones are few and far between.
B) It needs to be a serial (RS-232) modem.

2. I can't access my second hard drive due to the fact that it is formatted in NTFS. I have not the slightest on how to get it up and running.

3. I can't access my USB SanDisk Cruzer Micro 256MB drive either. It is formatted in FAT16 and I refuse to reformat it due to the information on it is very important (term papers).

I assume that by using Nautilus I am looking directly at what would be the user's files that aren't supposed to be shared. I am also wondering how to look directly at the hard drive and all its contents or if I already am by just going to the root or base directory "/".
 
Old 12-30-2004, 11:53 AM   #2
pnh73
Member
 
Registered: Jul 2003
Location: Birmingham, UK
Distribution: Ubuntu,Debian
Posts: 381

Rep: Reputation: 30
Hi,

I hope I might have some answers for you

1 A) It does need to be external, because most internal are "WinModems" and use special windows drivers, however you could try ndiswrapper (http://ndiswrapper.sourceforge.net/), its free! I have little experience with this, but it is well supported by its community.

1 B) I would have thought that it could be USB... but again I don't know... the issue is linux support so you just need to find one that is supported in linux thats within your budget. Try this sites HCL (http://www.linuxquestions.org/hcl/index.php).

2. This one is fairly easy to fix. This project should help: http://linux-ntfs.sourceforge.net/rpm/redhat9.html at the moment I think it just gives you the ability to read data rather than write it. I have used it personally for that purpose on Fedora Core 2

3. This is supposedly compatable with linux. Is there anything vaguely hopeful looking at the end of dmesg (open a terminal/shell window and type 'dmesg' (no quotes) after plugging it in... there should be something there)?

4. '/' is the equivalent of c:\ on a windows HD
 
Old 12-30-2004, 02:13 PM   #3
digitalgremline
LQ Newbie
 
Registered: Dec 2004
Posts: 13

Original Poster
Rep: Reputation: 0
Looks like a new modem. scanModem told me: 3com/USRobotics: unsupported
Thanks though.

Besides that, My HD still doesn't like me and refuses to mount. How would I go about reformatting it?. I mean I don't want to lose the stuff on it, but I would rather have it then lose the stuff on it. Anyways it was stuff like AIM so I don't think it would run under Linux.

As always, thanks for your help.
 
Old 12-30-2004, 05:04 PM   #4
pnh73
Member
 
Registered: Jul 2003
Location: Birmingham, UK
Distribution: Ubuntu,Debian
Posts: 381

Rep: Reputation: 30
what are the errors that come up when you mount it? did you install the correct NTFS drivers for your kernel?
 
Old 12-30-2004, 05:31 PM   #5
digitalgremline
LQ Newbie
 
Registered: Dec 2004
Posts: 13

Original Poster
Rep: Reputation: 0
There is a bit of a problem with copy and pasting the errors due to the fact that the computer is upstairs and isn't hooked up to this one at all. The errors went something like this:

I type in "mount /dev/hdb1". I get "mount: can't find /dev/hdb1 in /etc/fstab or /etc/mtab file" or something along those line. I go and open up those files and look at them and hdb1 isn't in either.

Same thing with my Cruzer Micro. I type "mount /dev/sda1" and I get "mount: can't find /dev/sda1 in /etc/fstab or /etc/mtab".
 
Old 12-30-2004, 05:39 PM   #6
pnh73
Member
 
Registered: Jul 2003
Location: Birmingham, UK
Distribution: Ubuntu,Debian
Posts: 381

Rep: Reputation: 30
AH! Right the issue is a misunderstanding of the mount command.

First you need to create a directory under /mnt. This is the directory you will mount the device onto. This can be done using the following code (note that this needs to be done in root, donoted by the #, which symbolises the prompt).

Code:
# mkdir /mnt/ntfs_hd
Now we can perform the mounting of the Hard Disk (hopefully!) using the following command:

Code:
# mount /dev/hdb1 /mnt/ntfs_hd
because there is not and entry in the /etc/fstab or /etc/mtab files then it doesn't know what to do when you type in your command. However this command tells it which device to mount and where to mount it.

The same should work with your usb stick, but create a separate directory under the /mnt directory to avoid confusion.

The mount command needs be used as:

Code:
# mount /dev/<device> <target directory>
Hope that gets us a bit further!
 
Old 12-30-2004, 08:19 PM   #7
digitalgremline
LQ Newbie
 
Registered: Dec 2004
Posts: 13

Original Poster
Rep: Reputation: 0
We got that working so far. I can see my hard drive. . Now just to get that TRENDware modem to connect to the net. Thanks for you help pnh73!
 
Old 12-30-2004, 08:54 PM   #8
digitalgremline
LQ Newbie
 
Registered: Dec 2004
Posts: 13

Original Poster
Rep: Reputation: 0
Now that I got what I needed off of my second HD, how do I reformat it? I just want a blank hard drive to add stuff to after I (re)format it.

Last edited by digitalgremline; 12-30-2004 at 09:30 PM.
 
Old 12-31-2004, 07:37 AM   #9
pnh73
Member
 
Registered: Jul 2003
Location: Birmingham, UK
Distribution: Ubuntu,Debian
Posts: 381

Rep: Reputation: 30
Do you want this HD to just be read by linux? If so then the best course of action is to format it to ext3 (which is the standard linux filesystem). This can be done using the following command:

Code:
# /sbin/mkfs.ext3 /dev/hdb1
OR

To make it readable and writeable in both linux and windows you need to format it as a VFAT partition. This can be done using the following command:

Code:
# /sbin/mkfs.vfat
This will format the partition at hdb1 to requested filesystem and then can be mounted appropriately.

As this will be a permenant addition to your linux system i suggest adding it to the /etc/fstab file as this will make mounting a lot easier. The following line should do it if you were mounting on /mnt/hdb1. This will mount the partition at boot time automatically. (swap 'ext3' for 'vfat' if you formatted it as vfat)

Code:
/dev/hdb1	/            	ext3     	defaults       	0 	0
See http://www.humbug.org.au/talks/fstab/fstab.html for more information on the format of /etc/fstab
 
Old 12-31-2004, 10:11 AM   #10
digitalgremline
LQ Newbie
 
Registered: Dec 2004
Posts: 13

Original Poster
Rep: Reputation: 0
I no longer need it for windows, so I would just need to partition/format/whatever it for RedHat Linux 9.
 
Old 12-31-2004, 10:16 AM   #11
pnh73
Member
 
Registered: Jul 2003
Location: Birmingham, UK
Distribution: Ubuntu,Debian
Posts: 381

Rep: Reputation: 30
ext3 it is then!
 
Old 12-31-2004, 10:30 AM   #12
digitalgremline
LQ Newbie
 
Registered: Dec 2004
Posts: 13

Original Poster
Rep: Reputation: 0
so with Ext3 I can read and write in linux to this hard drive? I have to wait about 10 minutes before I can because of a download for linux. Thanks for helping me get my USB drive set up so I can get these necessary files for this stuff.
 
Old 12-31-2004, 10:33 AM   #13
pnh73
Member
 
Registered: Jul 2003
Location: Birmingham, UK
Distribution: Ubuntu,Debian
Posts: 381

Rep: Reputation: 30
Yeh, ext3 is the the most commonly used linux filesystem. It is unreadable on windows as far as i know...
 
Old 12-31-2004, 10:50 AM   #14
digitalgremline
LQ Newbie
 
Registered: Dec 2004
Posts: 13

Original Poster
Rep: Reputation: 0
That worked. Now to get the money for the modem. Thanks again.
 
  


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
Problems with USB Modem under SuSE90 rodolfograve Linux - Networking 0 01-04-2005 11:15 AM
USB cable modem problems Maverick1182 Mandriva 7 08-12-2004 04:32 AM
problems with my USB DSL modem Travis86 Linux - Networking 3 08-21-2003 07:40 AM
configuring x w/ usb modem problems optimalprimer Linux - Newbie 2 04-27-2003 10:00 AM
USB Modem problems! Lloyd Linux - Hardware 3 07-01-2002 08:54 AM

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

All times are GMT -5. The time now is 11:59 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