LinuxQuestions.org
Welcome to the most active Linux Forum on the web.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Red Hat
User Name
Password
Red Hat This forum is for the discussion of Red Hat Linux.

Notices


Reply
  Search this Thread
Old 11-22-2003, 06:58 AM   #1
frannack
LQ Newbie
 
Registered: Nov 2003
Posts: 13

Rep: Reputation: 0
problems with redhat 9 (newbie questions)


hello,

I just installed redhat 9 and so far I love it.
However, I got some questions:

1) I have a flat monitor (Viewsonic VP 171b) and I could'nt used it during the installation process because I could only see half of the instructions.
So I used normal screen to install everything and switch after.
Does anyone know a way of installing this distribution with this screen from the start?

2) My notherboard is an Asus A7N8X and I could'nt figure out how to install the onboard ethernet card. I read a lot about it on the internet but nothing seems to work. Then, I bought a $10 ethernet card and it's working like a charm.
Does anybody know how to make it worked?

3) I have the default bootloader GRUB. Because I'd like to be able to stay with my windows on the other harddrive until I'm able to use linux to do all my work. But I cannot mount this harddrive (hda1 & hda2). I can mount my cdrom and see my hdb1 & hdb2.
Could someone tell me what I have to do to be able to see my primary harddrive?

4) I updated the kernel, so now I have kernel 2.4.20-20.9. I installed the driver (eagle 1.0.4e) for my modem (sagem fast 800). My connection is working fine, but when I reboot, I get this errors:
insmod: a module named adiusbadsl already exist
insmod adiusbadsl failed
and the same for the acm module
Could you help a noob on this one :-)


Thanks a lot

Franck
 
Old 11-22-2003, 07:27 AM   #2
MrGreg
Member
 
Registered: Apr 2001
Location: Hamilton
Distribution: RedHat 7.2, 9.0
Posts: 52

Rep: Reputation: 15
Greetings,

Quote:
3) I have the default bootloader GRUB. Because I'd like to be able to stay with my windows on the other harddrive until I'm able to use linux to do all my work. But I cannot mount this harddrive (hda1 & hda2). I can mount my cdrom and see my hdb1 & hdb2.
Could someone tell me what I have to do to be able to see my primary harddrive?
As root >
Create a directory in /mnt something like this:
mkdir /mnt/wind

Edit /etc/fstab and include this line:
/dev/hda1 /mnt/wind vfat uid=0,gid=0,umask=002,exec,dev,suid,rw 1 1
Be sure to adjust to your setup (device, FS type and options)

As root >
mount -t vfat /dev/hda1 /mnt/wind

Then >
cd "/mnt/wind/Program Files" or whatever to browse the Win partition.
Be sure to use double quotes around paths to the win stuff, this is because MS uses spaces in file/directory names.

Sorry I can't help you with anything else...
 
Old 11-22-2003, 08:33 AM   #3
frannack
LQ Newbie
 
Registered: Nov 2003
Posts: 13

Original Poster
Rep: Reputation: 0
Thank you MrGreg,

I just tried, but I must do something wrong since it doesn't work.
I have 2 partitions on my primary harddrive.
hda1 with a ntfs file system
hda2 with a fat file system
so I wrote in /etc/fstab:
/dev/hda1 /mnt/windSys ntfs uid=0,gid=0,umask=002,exec,dev,suid,rw 1 1
/dev/hda2 /mnt/windData vfat uid=0,gid=0,umask=002,exec,dev,suid,rw 1 1

could you tell me what's wrong, because when I do this command:
mount -t vfat /dev/hda2 /mnt/windSys2
I get this error message:
mount: wrong fs type, bad option, bad superblock on /dev/hda2,
or too many mounted file systems
(aren't you trying to mount an extended partition,
instead of some logical partition inside?)


Thank you for your help

Franck

I'll add now a 5th problem, I choose the Dvorak keymap layout but at boot time, I get an error message like: load Dvorak keymap failed
But it's working correctly when I log in.
??? What should I do to get rid of this error?
 
Old 11-22-2003, 09:43 AM   #4
mindfrost82
Member
 
Registered: Apr 2003
Distribution: Slackware
Posts: 60

Rep: Reputation: 15
In Red Hat 9, you need to download the NTFS drivers so it reads a NTFS drive. You can get it from:

General Site: http://linux-ntfs.sourceforge.net/rpm/index.html
Download Page: http://linux-ntfs.sourceforge.net/rpm/redhat9.html

**Be sure you download the correct driver for your kernel version
***Just download the right RPM and install the RPM

Then you can mount the drive using this:
mkdir /mnt/windows
mount /dev/hda1 /mnt/windows -t ntfs -r -o umask=0222
ls -l /mnt/windows

Then you can read this about how to have it mount the NTFS partition automatically at boot:
http://linux-ntfs.sourceforge.net/info/ntfs.html#4.10

*** If your Windows partition isn't had "hda1" then use the appropriate drive letter and partition # ***

Last edited by mindfrost82; 11-22-2003 at 09:45 AM.
 
Old 11-22-2003, 10:43 AM   #5
chaskins
LQ Newbie
 
Registered: Nov 2003
Posts: 23

Rep: Reputation: 15
 
Old 11-22-2003, 10:50 AM   #6
frannack
LQ Newbie
 
Registered: Nov 2003
Posts: 13

Original Poster
Rep: Reputation: 0
Thank you mindfrost82,

I can mount my windows harddrive now and browse it:

mount /dev/hda1 /mnt/windSys -t ntfs -r -o umask=0222
mount /dev/hda5 /mnt/windData -t vfat -r -o umask=0222

But when I put these lines in my /etc/fstab:

/dev/hda1 /mnt/windSys ntfs ro,umask=0222 0 0
/dev/hda5 /mnt/windData vfat ro,umask=0222 0 0

I get an error message when I reboot:

wrong fs type, bad option, bad superblock on /dev/hda1,
or too many mounted file systems

Can you give me some more input, please

Thanks

Franck
 
Old 11-22-2003, 11:05 AM   #7
frannack
LQ Newbie
 
Registered: Nov 2003
Posts: 13

Original Poster
Rep: Reputation: 0
Forget about my last input, it's working fine now.
many thanks to mindfrost82 & MrGreg

Does anybody know anything about the other issues?

Franck
 
Old 11-22-2003, 01:16 PM   #8
mindfrost82
Member
 
Registered: Apr 2003
Distribution: Slackware
Posts: 60

Rep: Reputation: 15
For Grub, you will need to add an entry for your Windows partition so it gives you the option to boot to Windows.

Go here: /boot/grub

And edit the grub.conf file.

Here's what mine looks like:

# grub.conf generated by anaconda
#
# Note that you do not have to rerun grub after making changes to this file
# NOTICE: You do not have a /boot partition. This means that
# all kernel and initrd paths are relative to /, eg.
# root (hd0,1)
# kernel /boot/vmlinuz-version ro root=/dev/hda2
# initrd /boot/initrd-version.img
#boot=/dev/hda
default=1
timeout=10
splashimage=(hd0,1)/boot/grub/splash.xpm.gz
password --md5 *********************
title Red Hat Linux
root (hd0,1)
kernel /boot/vmlinuz-2.4.20-8 ro root=LABEL=/
initrd /boot/initrd-2.4.20-8.img
title Windows XP Pro
rootnoverify (hd0,0)
chainloader +1
 
Old 11-22-2003, 01:17 PM   #9
mindfrost82
Member
 
Registered: Apr 2003
Distribution: Slackware
Posts: 60

Rep: Reputation: 15
For the ethernet card, it's just a matter of finding a driver that works with it. I have Red Hat 9 on a laptop with a D-Link DWL-650+ which ALOT of people have problems with. You just have to search the internet and see if someone has a way for it to work, or if there are any linux drivers you can get to work with it. Maybe if someone else on here as that same board they can help ya out.
 
Old 01-07-2004, 11:05 AM   #10
eakpata
LQ Newbie
 
Registered: Jan 2004
Location: London
Posts: 1

Rep: Reputation: 0
Unhappy Sagem Fast 800 on red hat linux 9

I have the same problem, I have Red hat linux 9 on my Dell Inspiron 8200 laptop and I have a Sagem Fast 800 modem supplied by Tiscali broadband. I have installed the eagle-1.0.4. driver but I cant connect to the internet, can anyone help. I know my modem has been installed and is recognised because when I pass the command "showstat" I get "modem operational". It is also listed under "ipcnfig -a" .my problem is that I cant dial out with it someone help?????????
 
  


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
Redhat 9, few newbie questions klumze Linux - Newbie 14 02-22-2005 10:19 PM
a few RedHat newbie questions tygernoot Red Hat 1 11-02-2004 09:35 AM
RedHat 8 vs. SUSE 8.1 newbie Questions Amerist Linux - Distributions 10 01-11-2003 09:08 PM
General RedHat 8.0 newbie questions jMack Linux - Newbie 7 12-17-2002 07:27 PM
Redhat 8.0 newbie with strange post install in 3 questions deedee2 Linux - Newbie 9 12-12-2002 08:48 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Red Hat

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