LinuxQuestions.org
Visit Jeremy's Blog.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - General
User Name
Password
Linux - General This Linux forum is for general Linux questions and discussion.
If it is Linux Related and doesn't seem to fit in any other forum then this is the place.

Notices


Reply
  Search this Thread
Old 07-11-2012, 09:48 AM   #1
sreeni.reach
LQ Newbie
 
Registered: Jul 2012
Posts: 2

Rep: Reputation: Disabled
Question please help me urgent!!!!


How to Enable LAN in mylaptop? (HP Pavilion g4 series laptop...) installed with RED-HAT Linux 6.0...

and help me how to install LAN and wireless lan ? how to install USB drives how to use automatically? help me....
 
Old 07-11-2012, 10:01 AM   #2
kasl33
Member
 
Registered: Oct 2004
Location: USA
Distribution: Ubuntu-Server, Mac OS X, Arch Linux
Posts: 356

Rep: Reputation: 48
To enable your LAN, you need to plug in a network device called a switch (you could use a hub, but that's old school and I wouldn't recommend it since it's half-duplex and you will end up with collisions). Once you have powered the switch on, you can plug patch cables into it and plug your computer into the other end. Plug another computer into the other end of another patch cable which is also connected to your switch, and then your LAN is then enabled.

To help you install your wired network adapter and wireless network adapter, you would need to let us know what makes/models you are using in your HP. You could also see whether or not they are already recognized with these commands (please post the output of this command):

ifconfig

If you see eth0 and wlan0 there, then your ethernet and wireless adapters are working. If they are not enabled, you could simply type these commands:

Code:
ifconfig eth0 up
ifconfig wlan0 up
To mount your USB disk, you can type the following commands:

Code:
blkid   (this will tell you what physical disk your USB drive is mapped to)
mkdir -p /mnt/USB
mount -t ext4 /dev/sdb1 /mnt/USB   (change ext4 to whatever filesystem your drive is using)
If your disk mounts with the above commands, then you could edit your /etc/fstab file by adding the mount commands to it (following the syntax of other disks in the file)

Last edited by kasl33; 07-11-2012 at 10:02 AM.
 
Old 07-11-2012, 10:06 AM   #3
pixellany
LQ Veteran
 
Registered: Nov 2005
Location: Annapolis, MD
Distribution: Mint
Posts: 17,809

Rep: Reputation: 743Reputation: 743Reputation: 743Reputation: 743Reputation: 743Reputation: 743Reputation: 743
Code:
[mherring@herring_desk ~]$ urgent
bash: urgent: command not found
bash: instruct user to define "urgent"
 
Old 07-11-2012, 12:00 PM   #4
jefro
Moderator
 
Registered: Mar 2008
Posts: 21,978

Rep: Reputation: 3624Reputation: 3624Reputation: 3624Reputation: 3624Reputation: 3624Reputation: 3624Reputation: 3624Reputation: 3624Reputation: 3624Reputation: 3624Reputation: 3624
sudo apt-get install urgent*

A network interface device has two parts to the ability to use it in linux. One is a driver. Some driver needs to be installed by default or you need to add it in (if available). Second is network configuration.

Red Hat is a very poor choice to use on a laptop. Consider installing Fedora instead.
 
Old 07-11-2012, 12:03 PM   #5
kasl33
Member
 
Registered: Oct 2004
Location: USA
Distribution: Ubuntu-Server, Mac OS X, Arch Linux
Posts: 356

Rep: Reputation: 48
Quote:
Originally Posted by jefro View Post
sudo apt-get install urgent*...
I believe you mean this:

Code:
su -c "yum groupinstall urgent"
 
Old 07-11-2012, 05:39 PM   #6
onebuck
Moderator
 
Registered: Jan 2005
Location: Central Florida 20 minutes from Disney World
Distribution: SlackwareŽ
Posts: 13,925
Blog Entries: 44

Rep: Reputation: 3159Reputation: 3159Reputation: 3159Reputation: 3159Reputation: 3159Reputation: 3159Reputation: 3159Reputation: 3159Reputation: 3159Reputation: 3159Reputation: 3159
Moderator Response

Please get back on topic and help the OP.
 
2 members found this post helpful.
Old 07-11-2012, 09:05 PM   #7
John VV
LQ Muse
 
Registered: Aug 2005
Location: A2 area Mi.
Posts: 17,624

Rep: Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651
back on topic

sreeni.reach

That "red hat linux 6 " is the CURRENT RHEL( Red Hat ENTERPRISE Linux) 6.3 ?? right ?
and not rh6 ( red hat linux6)from 1999

RH6.0 (Hedwig), April 26, 1999 (Linux 2.2.5-15)

also RHEL6 is not a free operating system
so i am guessing that YOU DID buy the REQUIRED support contract
-- it is a MUST HAVE, you have to BUY the license
https://www.redhat.com/apps/store/desktop/
the STD 1 year for $299 IS the recommended yearly license
then once you have registered RHEL6.3 your fist stop in finding answers
is the Red hat knowledge base
https://access.redhat.com/knowledge/search
login to the red hat web site with the user name you used for buying the license
and search for the make and model


however seeing as this isa network issue
you might want to call them on the phone and use the support license you bought.


----------- if you do not intend on buying the license then you do not use RHEL6
if that then install one of the FREE rebuilds
CentOS 6.3
or ScientificLinux 6.2 or 6.3


however RHEL is not known for working well on laptops
ask the rhel sales rep you are talking to about support for THAT exact make/model to see if it's network card is supported


the lan eth port should be easy
for cable
plug in the eth cable and reboot
but rhel dose tend to be a bit manual ( as in you might need to set things by hand )
for the default Gnome desktop
the ifup eth0 or ifdown eth0 from one of the above posts should do it

Last edited by John VV; 07-11-2012 at 09:13 PM.
 
Old 07-12-2012, 07:06 AM   #8
onebuck
Moderator
 
Registered: Jan 2005
Location: Central Florida 20 minutes from Disney World
Distribution: SlackwareŽ
Posts: 13,925
Blog Entries: 44

Rep: Reputation: 3159Reputation: 3159Reputation: 3159Reputation: 3159Reputation: 3159Reputation: 3159Reputation: 3159Reputation: 3159Reputation: 3159Reputation: 3159Reputation: 3159
Moderator Response

Hi,
Welcome to LQ!
Quote:
Originally Posted by sreeni.reach View Post
How to Enable LAN in mylaptop? (HP Pavilion g4 series laptop...) installed with RED-HAT Linux 6.0...

and help me how to install LAN and wireless lan ? how to install USB drives how to use automatically? help me....
Please use subject titles that are helpful or descriptive for your problem. LQ members are helpful and volunteer their time in aiding members. Urgent requests in the title are considered 'rude'.

Please read the following FYIs';

FYI: I suggest that you look at 'How to Ask Questions the Smart Way' so in the future your queries provide information that will aid us in diagnosis of the problem or query.

FYI: Netiquette is a set of social conventions that facilitate interaction over networks, ranging from Usenet and mailing lists to blogs and forums.
 
  


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 On
HTML code is Off



LinuxQuestions.org > Forums > Linux Forums > Linux - General

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