20 Most Recent Red Hat Enterprise Linux ES Basic Edition Questions & Answers

0helpful
2answers

I want to access internet using redhat os i do hv

default your internet settings
6/17/2011 1:17:09 PM • Red Hat... • Answered on Jun 17, 2011
0helpful
1answer

Hw can i access internet through idea usb net setter on rhel 5.1

i dont think i work on red hat,i saw on huawei website
  • GSM/GPRS/EDGE (850/900/1800/1900MHz)
  • Support 236.8Kbps high speed services
  • Support SMS and Voice (Optional) service
  • Plug & Play
  • Data statistics
  • Support Windows 2000/XP/Vista and Mac Operating Systems
2/8/2010 8:06:50 PM • Red Hat... • Answered on Feb 08, 2010
0helpful
1answer

Anygud antivirus for linux

Linux kernel is made such that no virus can affect any of your files
So in my opinion you dont need an antivirus at all but if you need it bad then clamAV is gud for unix but you need to compile its binaries for your distribution of linux

I hope this info was helpfull
Dont forget to rate
Thnx
Waqar
7/17/2009 2:10:29 PM • Red Hat... • Answered on Jul 17, 2009
0helpful
1answer

Not able to use internet in Red Hat Linux (RHEL 5)

- What make/model of NIC?

- Cable or DSL Internet access?

- Is there a router in the picture, or does the computer connect directly to your cable/dsl modem?

- Are you using DHCP or static IP assignment?

If you're using static IP addressing, check out some of the suggestions in this article:

Created: 9/05/02 Revised: 4/6/04


Basic PCI Network Interface Card (NIC) Configuration and Troubleshooting:


As different distros use different GUI (graphical) network configuration programs, the following instructions are
command-line based, and as such should work for most distros. If you boot directly into the GUI (KDE, Gnome, etc.)
as opposed to booting into a non-graphical runlevel, open a terminal window and type the given commands from there.
Much of the following can only be done as root, so either log in as root, or "su" to root if logged in as a non-root user.

*Note: some commands can only be run from root's login shell. When the su command is used by itself, it allows a non-root
user to become root, but only from within the user's own login shell. To gain a full root login shell without having to log out
and log back in as root, use the "-" option when issuing the su command: su - .

If you have only 1 NIC installed, it will be designated "eth0"; additional NICs will be designated eth1, eth2, etc.

Before doing any of the following, *please* check the Hardware Compatibility List at your distro's support site.
If your particular make/model of NIC is not listed as being compatible with your distro, there is good chance that
it may not work at all, or that you may have to take extra steps (such as downloading a special driver/module) in
order to get it working. Considering the fact that NICs are fairly inexpensive, it is often just not worth spending
time and energy trying to "force" an unsupported card to work.
------------------------------------------------------------------------------------------------------------------------------


1. If, on bootup, you see a message similar to "Bringing up interface eth0: FAILED", it is very possible that you have
a resource (IRQ or I/O address) conflict. Turn off Plug-N-Play support in your BIOS before proceeding further; BIOS PNP
can often cause problems with PCI devices under a non-Windows OS. If you dual-boot Windows and Linux, don't worry- your
PCI devices should still work in Windows with BIOS PNP disabled, as the PNP functionality of the Windows OS itself will
perform the necessary resource allocation.

*Note: If you are connecting to a network or ISP via DHCP, and you see a message on bootup similar to "Determining IP
information for device eth0: FAILED", that can indicate a problem with your DHCP configuration (or the DHCP server)
This article doesn't deal with DHCP issues, but I hope to be able to post one that does in the future.


2. Use one of the following commands to verify that your card is at least basically identifying itself to the system:

lspci -vv |less
less /proc/pci
cat /proc/pci

In the resulting output, look for the "Ethernet Controller" entry. It should contain information about your model of card
and/or its chipset, as well as IRQ, I/O port, and memory address values.


3. Run the ifconfig command; information concerning your NIC should appear in the resulting output. You should also
see stats for the loopback (lo) device 127.0.0.1. If you've already tried to enter your IP info (inet addr, Bcast, Mask)
through a GUI network configuration utility, verify that those values are correctly reflected in ifconfig's output. Also
check for RX/TX errors and collisions. If eth0 is not listed when you run ifconfig, try "ifconfig -a"; the "-a" option forces
ifconfig to report all network interfaces, active or not. If eth0 appears only when you run ifconfig with the -a option, it is
definitely not correctly configured.


4. Verify that the correct module is being loaded for your ethernet card by issuing the "lsmod" command; you should see the module
name in the resulting list of loaded modules. If not, issue the following two commands and try again:

depmod -ae
modprobe <name of your NIC's module>

*Note- documentation concerning module loading will often refer to the "insmod" command, but use modprobe instead if it's available.
Basically, insmod is not as "intelligent" as modprobe in the fact that it doesn't try to resolve module dependencies (where the
successful loading of a given module "depends" on another module being loaded first).

If the module appears as loaded after that, check your /etc/modules.conf (/etc/conf.modules in some distros)file to make sure that it has
an entry for the module; this will load the module automagically each time you boot. The line will look like this:

alias eth0 <name of your NIC's module>

If the line doesn't exist, add it by editing the file with your favorite text editor.


5. Run the following two commands:

less /proc/interrupts
less /proc/ioports

For the first command, note the IRQ assigned to eth0; verify that it matches the Interrupt value listed when you ran the ifconfig
command, and note if the assigned interrupt is being shared with another device. If so, this doesn't necessarily indicate a problem,
but it can.
For the second command, make sure that the address range of your Ethernet controller doesn't conflict with/overlap that of another
device. Also make sure that the start of the address range corresponds to the Base address value shown for eth0 when you ran ifconfig.


6. If any of the above steps yield errors or indicate conflicts even after you've turned off PNP support in the BIOS, try physically
rearranging the slot order of your PCI cards; doing so can force a reallocation of resources to devices on the PCI bus.


7. Once you're sure that the NIC is correctly configured and the module is properly loaded, you can try to bring the card up with
the following command:

ifconfig eth0 <the NIC's IP address> netmask <the appropriate netmask> up

If you get no errors, you should at least then be able to ping the IP address of the NIC.

--------------------------------------------------------------------------------------------------------------------------------

Distro-specific configuration files:

------------------------------------

Redhat, Mandrake, and a few other distros use the following two basic network interface configuration files:

/etc/sysconfig/network
/etc/sysconfig/network-scripts/ifcfg-eth0

The format of the files may vary slightly across distros/versions, but the the pertinent contents of the files should be very similar to:

/etc/sysconfig/network:

NETWORKING=yes
FORWARD_IPV4="no"
HOSTNAME="your_machine's_hostname"
DOMAINNAME="your_domain_name" ("localhost" is valid here)
GATEWAY="IP_address_of_your_gateway_machine/device" (if applicable)
GATEWAYDEV="eth0"


/etc/sysconfig/network-scripts/ifcfg-eth0:

DEVICE='eth0'
BOOTPROTO='none'
BROADCAST='broadcast_address_of_your_IP_address_range'
NETWORK='network_address_of_your_IP_range'
ONBOOT='yes'
TYPE='Ethernet'
USERCTL='no'
IPADDR='your_machine's_IP_address'
GATEWAY='IP_address_of_your_gateway_machine/device'
NETMASK='netmask_of_your_IP_range'

--------------------------------------------------------------------------------------------------------------------------------

An explanation of IP addressing as a whole (including terms such as "netmask", "network address", "broadcast address",etc.) is well beyond
the scope of this Help File. However, the following sites provide some good background information:

http://www.cisco.com/warp/public/701/3.html
http://www.ipprimer.com/section.cfm
http://www.oreilly.com/catalog/coreprot/chapter/appb.html
http://linux-ip.net/html/index.html

--------------------------------------------------------------------------------------------------------------------------------

- Further resources, including NIC driver source code and diagnostic utilities can be found at http://www.scyld.com/network.
* Note that as of 3/04 the Scyld site appears to have undergone changes; some links on the above page are broken.

--------------------------------------------------------------------------------------------------------------------------------

#include <disclaimer.h>

This is, as a whole, a work in progress. It might (and probably does) contain omissions and/or slight inaccuracies.
However, none of the suggestions given here will do any harm to your system if performed correctly.

Being a work in progress, any suggestions/corrections/critcisms are more than welcome. If you've noticed any errors in the above,
or just have something constructive to suggest, feel free to email me:

[email protected]







7/2/2009 5:25:49 PM • Red Hat... • Answered on Jul 02, 2009
0helpful
1answer
0helpful
1answer

IN Red hat Linux OS ERROR E1810 HARD DRIVE 0 FAULT

There's a couple of reasons that could give this message. The primary is simply hard drive failure and it need replacement. If it's an ssd you can still get the message even if it's read by the bios and OS, but the ssd is no longer reliable (happened to myself). Check your wire connections and if the problem persists pull the drive out and scan it in a cradle with a different PC if your machine won't boot and you're unable to install a HDD health scan program. Any external HDD casing will do, just take it apart and remove the OEM drive and put the drive you wan't to look at in the cradle and connect it with the USB and run a HDD health scanning program to be certain. (I use HD Sentinel but there are many others) Good luck!
2/13/2019 1:51:52 PM • Red Hat... • Answered on Feb 13, 2019
0helpful
1answer

Idea net setter

6/19/2014 9:03:14 AM • Red Hat... • Answered on Jun 19, 2014
0helpful
1answer

How o install ideanetsetter on redhat 5?

You'll do so by the following commands (one line is one command then press Enter) mkdir /home/Your_User_Name/"Idea Net Setter" cd /media cd "Idea Net Setter" ls -l cp -vf Linux/* /home/Your_User_Name/"Idea Net Setter"/ chmod 700 "Idea Net Setter"/* su sh install
4/28/2014 6:46:16 PM • Red Hat... • Answered on Apr 28, 2014
0helpful
1answer

I have an Imac and it won't download

What do you mean it wont download. Can you surf? if yes... Check parental permissions. Goto System Preferences (the gear box) --> Parental Controls. Check to see if your account is not permitted to do certain tasks.
4/27/2014 11:53:45 PM • Red Hat... • Answered on Apr 27, 2014
0answers

Pinay scandals

Be the first to answer 10/27/2013 5:04:04 PM • Red Hat... • Posted on Oct 27, 2013Be the first to answer
0helpful
1answer

Upgrades software

If you want to upgrade your software for example your operating system. Your systems unit support only for windows 7, windows 8 and windows 8.1. You may visit this website to download the latest driver for your operating system installed. http://support.lenovo.com/en_PH/downloads/detail.page?DocID=DS035527
4/22/2024 1:20:20 PM • Computers &... • Answered Yesterday
0helpful
2answers

Como cancelar el winter driver

EnglishIt is a car, and cars are complexbut no car was told , maker, model , and year.we can not guess cars. post the VIN? and all that is knownname a problem what can't your car do right?name symptoms or evidence that is confusing to you.then answers can happen.onlygood luck , finding itand Mucho Gusto.my guess now is this is posted to computer forumand not to CARS !must be some odd traction controls thing'but 10,000 models of cars,
4/21/2024 5:41:42 AM • Computers &... • Answered 2 days ago
0helpful
2answers

I need a product key

Have you actually purchased Visio, or are you just trying to get it for free?
As a software guy, I would have to advise against piracy. :)
There are several ways to get Visio for cheap. If you are a student, there are discounted versions available online and in stores. Also, you can check with your school for even cheaper options sometimes. Try the university bookstore if available. Or a Computer Science department maybe.
If you are working, and your company uses MS Office applications, find out if they have the "Microsoft at Home" program. You can get MS Office applications for really cheap that way. I can get Visio through my company's "Microsoft at Home" program for a few dollars.
4/21/2024 4:20:47 AM • Computers &... • Answered 2 days ago
0helpful
1answer

Do you guys know some good custom web app development services?

DICEUS with 13 years experience. SIMFORM for modernizing legacy architecture. ColorWhistle for leads. PixelCrayons for tailoring to your specific needs.
4/18/2024 5:17:23 AM • Computers &... • Answered on Apr 18, 2024
0helpful
1answer

My Employer Says They Are Going To Cut My Wages. Can They?

If you are in the middle of a contract, then cutting your wages is almost certainly a violation of your employment law rights. While I am by no means an expert on this matter, I did have a similar issue years ago - mid-contract wage cuts - and I hired anemployment attorney to fight the case on my behalf. It turned out that my employer was basically looking to scare people into taking the wage cut. They got into some pretty serious legal trouble for their transgression, and nothing happened to me in terms of wage cuts after that. If you are between contracts, your employer can re-negotiate your salary, but as far as I am aware, if you are in an agreed-upon contract, they cannot just decide to reduce your salary. If you want to settle matters, contest this action with support from a legal professional.
4/17/2024 5:31:31 PM • Computers &... • Answered on Apr 17, 2024
0helpful
1answer

Implementing Reliable WordPress Website Backups: A Solution to Downtime and Errorsi wan

Keep a backup on your hard drive or a backup. The backup system is a free service supplied by your internet provider. If you use it daily or after every update, there will never be an issue.
4/16/2024 4:37:13 PM • Computers &... • Answered on Apr 16, 2024
0helpful
1answer

How to get free backlinks?

YouTube Backlink Generator https://ovdss.com/apps/youtube-backlink-generator
4/13/2024 3:06:42 PM • Computers &... • Answered on Apr 13, 2024
0helpful
1answer

Solitaire master has a hang

clarify pi please. if you meant pi to mean main screen picture, you probably have used up your free time on this program.
4/13/2024 2:31:14 PM • Computers &... • Answered on Apr 13, 2024
0helpful
3answers

How i free download tally

u need tally 4.5 free software (full ) if u need mail me i will give u link k
4/13/2024 2:20:33 PM • Computers &... • Answered on Apr 13, 2024
Not finding what you are looking for?
Computers & Internet Logo

4 questions posted

Ask a Question

Usually answered in minutes!

Top Red Hat Computers & Internet Experts

Grand Canyon Tech
Grand Canyon Tech

Level 3 Expert

3867 Answers

Brad Brown

Level 3 Expert

19187 Answers

Cindy Wells

Level 3 Expert

6688 Answers

Are you a Red Hat Computer and Internet Expert? Answer questions, earn points and help others

Answer questions

Manuals & User Guides

View Most Popular

Red Hat Computers & Internet

  • Red Hat Computers & Internet

Most Popular Question

anygud antivirus linux

  • Computers & Internet
Loading...