So, I have a wifi card in my ubuntu machine... this is nothing new. It's been in there for quite a while, and I've never had a problem using it... until recently.

Lately, my computer has been having a hard time resolving certain hostnames... subdomains especially.

Also, the card randomly loses signal and has to reconnect to my wifi router. I think this may be related to the massive clump of cables on my floor though, some disturbingly close to my antenna... (within a few inches)
well, DNS resolving is not something that the card itself does - so your wifi card has no control over that (aside from its involvement in the connection chain to the internet)

not sure what you want here... without any info I can't even begin to try and point you in the right direction, but you might want to check the router
the router could be part of the problem. Considering it can't read the linux boxes hostname... (it marks my computer as "unknownpc1"

It's not the router anyway... the router works fine for my windows computer.
But still, give me some info here. Computer specs would help, as would a lsmod, iwconfig, lspci, and lspci -n output (all run as root)

The hostname issue is easy - just run "find /etc -iname hostname" - then just edit whichever one is the configuration one (mine is /etc/conf.d/hostname) and in there it should look something like


Code:
 # Set to the hostname of this machine
HOSTNAME="kllrnohj"
AMD64 Athlon 3500 I do believe. 512mb RAM, and it's a Beltin (I think) wifi card.

lsmod wrote:

root@linux:/home/alex10819# lsmod
Module Size Used by
rfcomm 45600 0
l2cap 30464 5 rfcomm
bluetooth 59396 4 rfcomm,l2cap
ipv6 300416 15
ppdev 11400 0
powernow_k8 12992 0
cpufreq_userspace 9184 1
cpufreq_stats 8264 0
freq_table 6464 2 powernow_k8,cpufreq_stats
cpufreq_powersave 3328 0
cpufreq_ondemand 9768 0
cpufreq_conservative 10984 0
video 18824 0
tc1100_wmi 9096 0
sony_acpi 7188 0
pcc_acpi 16128 0
hotkey 13768 0
dev_acpi 15364 0
container 6272 0
button 8864 0
acpi_sbs 24600 0
battery 12296 1 acpi_sbs
ac 7176 1 acpi_sbs
i2c_acpi_ec 7040 1 acpi_sbs
dm_mod 63176 1
md_mod 76792 0
af_packet 28172 6
lp 15040 0
snd_seq_dummy 5508 0
snd_seq_oss 38372 0
snd_seq_midi 11456 0
snd_seq_midi_event 9984 2 snd_seq_oss,snd_seq_midi
snd_seq 64088 6 snd_seq_dummy,snd_seq_oss,snd_seq_midi,snd_seq_midi_event
snd_via82xx 32936 1
gameport 19216 1 snd_via82xx
snd_ac97_codec 110396 1 snd_via82xx
snd_ac97_bus 4096 1 snd_ac97_codec
snd_pcm_oss 59424 0
snd_mixer_oss 20608 1 snd_pcm_oss
snd_pcm 104584 3 snd_via82xx,snd_ac97_codec,snd_pcm_oss
snd_timer 29064 2 snd_seq,snd_pcm
snd_page_alloc 13968 2 snd_via82xx,snd_pcm
snd_mpu401_uart 10368 1 snd_via82xx
snd_rawmidi 31648 2 snd_seq_midi,snd_mpu401_uart
snd_seq_device 11280 5 snd_seq_dummy,snd_seq_oss,snd_seq_midi,snd_seq,snd_rawmidi
snd 68576 13 snd_seq_oss,snd_seq,snd_via82xx,snd_ac97_codec,snd_pcm_oss,snd_mixer_oss,snd_pcm,snd_timer,snd_mpu401_uart,snd_rawmidi,snd_seq_device
parport_pc 40816 1
soundcore 13216 1 snd
floppy 74120 0
parport 44172 3 ppdev,lp,parport_pc
psmouse 40324 0
pcspkr 3592 0
i2c_viapro 11416 0
ath_pci 89760 0
ath_rate_sample 19984 1 ath_pci
serio_raw 9732 0
via_rhine 28164 0
mii 7680 1 via_rhine
wlan 154228 3 ath_pci,ath_rate_sample
ath_hal 173680 3 ath_pci,ath_rate_sample
nvidia 5433816 12
i2c_core 26624 3 i2c_acpi_ec,i2c_viapro,nvidia
shpchp 51360 0
pci_hotplug 33168 1 shpchp
evdev 14464 1
tsdev 10240 0
usbhid 43040 0
ext3 146192 1
jbd 70952 1 ext3
ide_generic 2816 0
ehci_hcd 36232 0
uhci_hcd 36640 0
usbcore 147132 4 usbhid,ehci_hcd,uhci_hcd
ide_disk 19456 3
ide_cd 35744 0
cdrom 41144 1 ide_cd
via82cxxx 10884 0 [permanent]
generic 7300 0
sata_via 12036 0
libata 85536 1 sata_via
scsi_mod 160504 1 libata
thermal 16524 0
processor 29736 2 powernow_k8,thermal
fan 6408 0
capability 7176 0
commoncap 9728 1 capability
vga16fb 15120 1
cfbcopyarea 5120 1 vga16fb
vgastate 10368 1 vga16fb
cfbimgblt 4224 1 vga16fb
cfbfillrect 5760 1 vga16fb
fbcon 43136 72
tileblit 4096 1 fbcon
font 9984 1 fbcon
bitblit 7424 1 fbcon
softcursor 3712 1 bitblit

iwconfig (as related to ath0, the wifi) wrote:

ath0 IEEE 802.11g ESSID:"AlexHome"
Mode:Managed Frequency:2.452 GHz Access Point: 00:0F:B3:B1:EA:E5
Bit Rate:18 Mb/s Tx-Power:18 dBm Sensitivity=0/3
Retry:off RTS thr:off Fragment thr:off
Encryption key:off
Power Management:off
Link Quality=12/94 Signal level=-83 dBm Noise level=-95 dBm
Rx invalid nwid:75 Rx invalid crypt:0 Rx invalid frag:0
Tx excessive retries:146 Invalid misc:146 Missed beacon:79


[quote=lspci]
root@linux:/home/alex10819# lspci
0000:00:00.0 Host bridge: VIA Technologies, Inc. K8T890 Host Bridge
0000:00:00.1 Host bridge: VIA Technologies, Inc. K8T890 Host Bridge
0000:00:00.2 Host bridge: VIA Technologies, Inc. K8T890 Host Bridge
0000:00:00.3 Host bridge: VIA Technologies, Inc. K8T890 Host Bridge
0000:00:00.4 Host bridge: VIA Technologies, Inc. K8T890 Host Bridge
0000:00:00.5 PIC: VIA Technologies, Inc. K8T890 I/O APIC Interrupt Controller
0000:00:00.7 Host bridge: VIA Technologies, Inc. K8T890 Host Bridge
0000:00:01.0 PCI bridge: VIA Technologies, Inc.: Unknown device b999
0000:00:02.0 PCI bridge: VIA Technologies, Inc. K8T890 PCI to PCI Bridge Controller
0000:00:03.0 PCI bridge: VIA Technologies, Inc. K8T890 PCI to PCI Bridge Controller
0000:00:03.1 PCI bridge: VIA Technologies, Inc. K8T890 PCI to PCI Bridge Controller
0000:00:03.2 PCI bridge: VIA Technologies, Inc. K8T890 PCI to PCI Bridge Controller
0000:00:03.3 PCI bridge: VIA Technologies, Inc. K8T890 PCI to PCI Bridge Controller
0000:00:08.0 Ethernet controller: Atheros Communications, Inc.: Unknown device 001a (rev 01)
0000:00:09.0 VGA compatible controller: nVidia Corporation NV34 [GeForce FX 5500] (rev a1)
0000:00:0f.0 IDE interface: VIA Technologies, Inc. VIA VT6420 SATA RAID Controller (rev 80)
0000:00:0f.1 IDE interface: VIA Technologies, Inc. VT82C586A/B/VT82C686/A/B/VT823x/A/C PIPC Bus Master IDE (rev 06)
0000:00:10.0 USB Controller: VIA Technologies, Inc. VT82xxxxx UHCI USB 1.1 Controller (rev 81)
0000:00:10.1 USB Controller: VIA Technologies, Inc. VT82xxxxx UHCI USB 1.1 Controller (rev 81)
0000:00:10.2 USB Controller: VIA Technologies, Inc. VT82xxxxx UHCI USB 1.1 Controller (rev 81)
0000:00:10.3 USB Controller: VIA Technologies, Inc. VT82xxxxx UHCI USB 1.1 Controller (rev 81)
0000:00:10.4 USB Controller: VIA Technologies, Inc. USB 2.0 (rev 86)
0000:00:11.0 ISA bridge: VIA Technologies, Inc. VT8237 ISA bridge [KT600/K8T800/K8T890 South]
0000:00:11.5 Multimedia audio controller: VIA Technologies, Inc. VT8233/A/8235/8237 AC97 Audio Controller (rev 60)
0000:00:12.0 Ethernet controller: VIA Technologies, Inc. VT6102 [Rhine-II] (rev 7Cool
0000:00:18.0 Host bridge: Advanced Micro Devices [AMD] K8 [Athlon64/Opteron] HyperTransport Technology Configuration
0000:00:18.1 Host bridge: Advanced Micro Devices [AMD] K8 [Athlon64/Opteron] Address Map
0000:00:18.2 Host bridge: Advanced Micro Devices [AMD] K8 [Athlon64/Opteron] DRAM Controller
0000:00:18.3 Host bridge: Advanced Micro Devices [AMD] K8 [Athlon64/Opteron] Miscellaneous Control
[/quote]
[quote=lspci -n]
root@linux:/home/alex10819# lspci
0000:00:00.0 Host bridge: VIA Technologies, Inc. K8T890 Host Bridge
0000:00:00.1 Host bridge: VIA Technologies, Inc. K8T890 Host Bridge
0000:00:00.2 Host bridge: VIA Technologies, Inc. K8T890 Host Bridge
0000:00:00.3 Host bridge: VIA Technologies, Inc. K8T890 Host Bridge
0000:00:00.4 Host bridge: VIA Technologies, Inc. K8T890 Host Bridge
0000:00:00.5 PIC: VIA Technologies, Inc. K8T890 I/O APIC Interrupt Controller
0000:00:00.7 Host bridge: VIA Technologies, Inc. K8T890 Host Bridge
0000:00:01.0 PCI bridge: VIA Technologies, Inc.: Unknown device b999
0000:00:02.0 PCI bridge: VIA Technologies, Inc. K8T890 PCI to PCI Bridge Controller
0000:00:03.0 PCI bridge: VIA Technologies, Inc. K8T890 PCI to PCI Bridge Controller
0000:00:03.1 PCI bridge: VIA Technologies, Inc. K8T890 PCI to PCI Bridge Controller
0000:00:03.2 PCI bridge: VIA Technologies, Inc. K8T890 PCI to PCI Bridge Controller
0000:00:03.3 PCI bridge: VIA Technologies, Inc. K8T890 PCI to PCI Bridge Controller
0000:00:08.0 Ethernet controller: Atheros Communications, Inc.: Unknown device 001a (rev 01)
0000:00:09.0 VGA compatible controller: nVidia Corporation NV34 [GeForce FX 5500] (rev a1)
0000:00:0f.0 IDE interface: VIA Technologies, Inc. VIA VT6420 SATA RAID Controller (rev 80)
0000:00:0f.1 IDE interface: VIA Technologies, Inc. VT82C586A/B/VT82C686/A/B/VT823x/A/C PIPC Bus Master IDE (rev 06)
0000:00:10.0 USB Controller: VIA Technologies, Inc. VT82xxxxx UHCI USB 1.1 Controller (rev 81)
0000:00:10.1 USB Controller: VIA Technologies, Inc. VT82xxxxx UHCI USB 1.1 Controller (rev 81)
0000:00:10.2 USB Controller: VIA Technologies, Inc. VT82xxxxx UHCI USB 1.1 Controller (rev 81)
0000:00:10.3 USB Controller: VIA Technologies, Inc. VT82xxxxx UHCI USB 1.1 Controller (rev 81)
0000:00:10.4 USB Controller: VIA Technologies, Inc. USB 2.0 (rev 86)
0000:00:11.0 ISA bridge: VIA Technologies, Inc. VT8237 ISA bridge [KT600/K8T800/K8T890 South]
0000:00:11.5 Multimedia audio controller: VIA Technologies, Inc. VT8233/A/8235/8237 AC97 Audio Controller (rev 60)
0000:00:12.0 Ethernet controller: VIA Technologies, Inc. VT6102 [Rhine-II] (rev 7Cool
0000:00:18.0 Host bridge: Advanced Micro Devices [AMD] K8 [Athlon64/Opteron] HyperTransport Technology Configuration
0000:00:18.1 Host bridge: Advanced Micro Devices [AMD] K8 [Athlon64/Opteron] Address Map
0000:00:18.2 Host bridge: Advanced Micro Devices [AMD] K8 [Athlon64/Opteron] DRAM Controller
0000:00:18.3 Host bridge: Advanced Micro Devices [AMD] K8 [Athlon64/Opteron] Miscellaneous Control
[/quote]
Sorry, I edited my post before I realized you posted here

I would also like the output of iwconfig - and check out my edit for how to fix the hostname issue Smile
The output from iwconfig is already there.

I cut out the parts that related to the other ethernet devices, since they're not in use.
well, iwconfig is showing a really poor link quality, so I'd try moving around the antennae on your wifi card and on the router, see if you can't boost up that signal somehow - doesn't appear to be a driver issue
  
Register to Join the Conversation
Have your own thoughts to add to this or any other topic? Want to ask a question, offer a suggestion, share your own programs and projects, upload a file to the file archives, get help with calculator and computer programming, or simply chat with like-minded coders and tech and calculator enthusiasts via the site-wide AJAX SAX widget? Registration for a free Cemetech account only takes a minute.

» Go to Registration page
Page 1 of 1
» All times are UTC - 5 Hours
 
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum

 

Advertisement