[frgeek-michiana] VL 5.9 on Compaq Evo 600 laptop

  • From: Tom Brown <tbrown46628@xxxxxxxxx>
  • To: frgeek-michiana@xxxxxxxxxxxxx
  • Date: Sun, 20 Jul 2008 08:00:10 -0700 (PDT)

!--
#toc,
.toc,
.mw-warning {
        border: 1px solid #aaa;
        background-color: #f9f9f9;
        padding: 5px;
        font-size: 95%;
}
#toc h2,
.toc h2 {
        display: inline;
        border: none;
        padding: 0;
        font-size: 100%;
        font-weight: bold;
}
#toc #toctitle,
.toc #toctitle,
#toc .toctitle,
.toc .toctitle {
        text-align: center;
}
#toc ul,
.toc ul {
        list-style-type: none;
        list-style-image: none;
        margin-left: 0;
        padding-left: 0;
        text-align: left;
}
#toc ul ul,
.toc ul ul {
        margin: 0 0 0 2em;
}
#toc .toctoggle,
.toc .toctoggle {
        font-size: 94%;
}@media print, projection, embossed {
        body {
                padding-top:1in;
                padding-bottom:1in;
                padding-left:1in;
                padding-right:1in;
        }
}
body {
        font-family:'Times New Roman';
        color:#000000;
        widows:2;
        font-style:normal;
        text-indent:0in;
        font-weight:normal;
        text-align:left;
        font-variant:normal;
        text-decoration:none;
        font-size:12pt;
}
table {
}
td {
        border-collapse:collapse;
        text-align:left;
        vertical-align:top;
}
p, h1, h2, h3, li {
        color:#000000;
        font-family:'Times New Roman';
        font-size:12pt;
        text-align:left;
        vertical-align:normal;
}
     -->
  
 
  
   
   
   :: Battery
   
   
The battery is holding up well. Although the battery was not charging at first 
and required a recalibration, it charges to 100% and lasts a several hours. 

   
:: Display
   
   
The display has a pink tint on boot up. After a while, the tint diminishes 
considerably but never quite goes away.
   
   
:: Swap
   
   
Swap wasn't turned on, probably a mistake during VL 5.9 installation. The swap 
partition was available but not formatted or turned on. I cured that at the 
command line.
   
   
  mkswap /dev/hda1
      swapon -a
   
   
I also added a missing line to /etc/fstab.
   
   
   /dev/hda1  none  swap  sw  0  0
   
   
:: Wireless
   
   
Wireless has been the biggest problem. My Atheros based D-Link card worked just 
a few times using Vasm and just once using desktop utilities. 
   
   
I downloaded and installed Madwifi thinking there wasn't an Atheros driver in 
the base VL load. However, when I installed Madwifi version 0.9.4, it prompted 
me to remove the previous version...oops.
   
   
Still, wireless works reliably now. I wrote my own activation script based on 
the newbie howto at Madwifi. There are a couple of weaknesses. I'd like the 
script to run from my user desktop; so far, only root can run it. The script is 
specific to one WAP but is easily modified for other WAPs.
   
   
#!/usr/bin/bash
   #
   # Madwifi Atheros wifi card activation script
   #

   
   
   # install Atheros chip kernel module; probably not required 
   modprobe ath_pci
   
   
# turn on wifi card
   ifconfig ath0 up
   
   

   # install WAP scan kernel module; also probably not required
   modprobe wlan_scan_sta
   
   
# scan for specific WAP
   
   # the example is WEP based; WPA requires different approach
   iwconfig ath0 essid <"your_essid"> key <"s:your_text_key">
   
   
# add route
   route add default gw <your_gateway_IP>
   
   
# request DHCP
   dhcpcd ath0
   
   
####

   
  


      

Other related posts: