LinuxQuestions.org
Help answer threads with 0 replies.
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-14-2005, 03:27 PM   #16
bowie101
Member
 
Registered: Nov 2005
Distribution: FC4 & RHES
Posts: 105

Original Poster
Rep: Reputation: 15

asking her to type in uname -a and she tells me that the computer spits out this:

linux localhost.localdomain/2.6.11-1.1369_FC4 #1 THU JUN 2 22:55:56 EDT 2005 i686 athlon i386 GNU/Linux
 
Old 12-14-2005, 03:29 PM   #17
bowie101
Member
 
Registered: Nov 2005
Distribution: FC4 & RHES
Posts: 105

Original Poster
Rep: Reputation: 15
and the modem is a US Robotics Sportster External Fax/Modem 1998 (canadian) V.90 56 K 005686-03 FC Model 0701
 
Old 12-14-2005, 03:43 PM   #18
tuxrules
Senior Member
 
Registered: Jun 2004
Location: Chicago
Distribution: Slackware64 -current
Posts: 1,158

Rep: Reputation: 62
Quote:
Originally Posted by bowie101
disk /dev/hda: 40.0 gb, 40020664320 bytes 255 heads, 63 sectors /track, 4865 cylanders

devise boot dev/hda5 start 4355 end 4864 blocks 4096543+ id B system Win95 Fat32

and then the other line..

dev/hda1 * start 1 end 4354 blocks 34973473+ id 7 system HPFS/ntfs
So your FAT32 partition is hda5. Here's your /etc/fstab entry

Code:
/dev/hda5 /mnt/winshare vfat users,rw,umask=000 0 0
Replace the /mnt/winshare with whatever path you have. Also note that whatever directory you are mounting into (e.g. /mnt/winshare) should exist.

Now, here's a manual entry (via command-line)
Code:
mount -t vfat -o rw /dev/hda5 /mnt/winshare
You can first mount manually to see if everthing works, cd to the directory and see if you can view the files/directories there. Once you have that then you can create /etc/fstab entry.

For NTFS partition, I won't suggest writing mode hence,
Code:
mount -t ntfs -o ro /dev/hda1 /mnt/ntfs
Code:
/dev/hda1 /mnt/ntfs ntfs users,ro,umask=000 0 0
You'll need to have the nfts rpm installed from linux ntfs project to be able to read ntfs partition.

Hope that helps,
Tux,

Edit: For modem, you can search google.

Last edited by tuxrules; 12-14-2005 at 03:47 PM.
 
Old 12-14-2005, 06:01 PM   #19
philipvarghese
Member
 
Registered: Dec 2005
Posts: 36

Rep: Reputation: 21
Bowie Fedora Core 4 is built with NTFS read only mode ( that is they have compiled the kernel that way and its for a purpose)

Linux Distros are built for particular purposes and compiled that way.

But if you wish to make any changes you get the source and compile it to your taste.

Well all this might sound far fetched right now, but you will enjoy along the way with lots of friends who are here to help you out, feel at home.

Its safe to edit your fstab file as said in my earlier post. and thereafter you dont have to bother mounting it everytime cause it will mount automatically during boot process.

Also you can put a link to /mnt/C on your desktop by configuring your desktop.
Press right click
configure desktop
Device icons
(tick) Show device icons
and press ok thats it your all set.
-------------------------------------
Live Linux, Love Linux for I am Home.
 
Old 12-14-2005, 06:55 PM   #20
bowie101
Member
 
Registered: Nov 2005
Distribution: FC4 & RHES
Posts: 105

Original Poster
Rep: Reputation: 15
sounds good, and I thank you all. damn! Windows people are NEVER this sharing! What's up with that ? What is "normal" ? Which is nature and which is nurture? the linux environment and disposition or that of Windows?

anyway, as I ponder these potentially life-altering questions while sitting by my home computer, I'l now exit windows, to try all this out. wish me luck!
 
Old 12-15-2005, 08:24 AM   #21
tuxrules
Senior Member
 
Registered: Jun 2004
Location: Chicago
Distribution: Slackware64 -current
Posts: 1,158

Rep: Reputation: 62
The whole philosophy behind free software/open source is that everybody should have access to the source code and that it should be available easily. Also people should be able to copy, modify and redistribute the software they have. Linux is built on the above philosophy while the commercial (closed source and/or proprietary) software is built using a completely different philosophy. You should visit www.gnu.org, if you haven't already.

Remember though that the correct name (atleast technically) for a Linux system is GNU/Linux and not just Linux. Strictly speaking, Linux is the the operating system kernel written by Linus Torvalds. What makes it a whole operating system is this kernel and some useful programs so that you can actually do some work. Many of these programs are written by GNU foundation and most of them are licensed under GNU foundation's GPL.

Check out this article. I think it is a must read and very informative.

Tux,
 
Old 12-15-2005, 08:53 AM   #22
bowie101
Member
 
Registered: Nov 2005
Distribution: FC4 & RHES
Posts: 105

Original Poster
Rep: Reputation: 15
Thanks! I'll read ! Yeah, I know the philosophical differences and all, but it's a different thing to EXPERIENCE it in the real world, so thanks!

Here's a summary of what happened this morning, and where I'm at now with the home linux box...

All rpm installs, mounting, etc worked. Wonderful. Even my rxternal modem, didn't need a driver after all, and that worked, but only half way. Read on..

I logged into my network provider's network (a University is my network provider) using the minicom software. That went fine, but I was looking at all the other people logged on , and they were all PPP, and I was CTL or something that noone uses anymore, excpet I'll use it sometime, for something. So that was fine, tooling around in there. But I wanted graphics and actual internet surfing, so I completed the internet config wizard that Fedora or KDE or GNOME or whatever it is that gives this to me.

All was fine, modem detected, etc.

Dial up for PPP now , and I get this error --> exit code 10

which, according to man pages means:

PPP daemon:
10 The PPP negotiation failed, that is, it didn't reach the point
where at least one network protocol (e.g. IP) was running.

talking to the university is of no help, as they don't seem to have user support for linux.

actually, they told me that there is this thing out there called linuxquestions.org .

So here we are again. Suggestions?
 
Old 12-15-2005, 09:22 AM   #23
tuxrules
Senior Member
 
Registered: Jun 2004
Location: Chicago
Distribution: Slackware64 -current
Posts: 1,158

Rep: Reputation: 62
http://www.linuxforums.org/forum/topic-61224.html

That should help. I have actually never used dial up on Linux so I won't be able to give you any solid answers on that.

I actually got that link with a quick google.com/linux search with keyword - PPP + exit code 10

-Tux
 
Old 12-15-2005, 09:44 AM   #24
bowie101
Member
 
Registered: Nov 2005
Distribution: FC4 & RHES
Posts: 105

Original Poster
Rep: Reputation: 15
yeah, i saw that too. but doesn't seem like my situation , exactly.
 
Old 12-15-2005, 10:38 AM   #25
TruongAn
Member
 
Registered: Dec 2004
Location: Vietnam (Việt Nam)
Distribution: Gentoo (desktop), Arch linux (laptop)
Posts: 728

Rep: Reputation: 33
Can you connect to another ISP.
I don't think the problem come from your modem.
 
Old 12-15-2005, 12:13 PM   #26
bowie101
Member
 
Registered: Nov 2005
Distribution: FC4 & RHES
Posts: 105

Original Poster
Rep: Reputation: 15
i don't know. I don't have another ISP right now, but my wife has a Netzero account. So I'll try with that, but they use their own software for internet connect. nevertheless, I'll try when i get home. (at work, once 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
mounting NTFS/fat32 partitioned hard drive (win2k) /when fedora4 runs on seperate HD bowie101 Linux - Hardware 4 12-14-2005 03:42 PM
NTFS - Mounting Hard Drive DarkD45 Linux - General 12 12-15-2004 12:58 PM
Hard drive partitioned and cannot view files Johnny2003 Linux - Newbie 4 01-20-2004 07:22 PM
Mounting an NTFS hard drive harperonline Linux - General 2 03-12-2003 11:11 AM
Mounting a FAT32 Hard Drive in Red Hat 7.2 using KDE DeadPuddle Linux - General 1 03-17-2002 09:49 PM

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

All times are GMT -5. The time now is 10:04 AM.

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