Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - zthird

Pages: [1] 2
1
Security and Networking / 802.11g And Wpa?
« on: April 03, 2009, 06:50:10 pm »

2
Debian / More Help With Marvel Chipset Wifi Card
« on: April 03, 2009, 06:49:41 pm »

3
Debian / 2.6.22 Kernel And Libertas Module
« on: April 03, 2009, 06:49:18 pm »

4
Debian / Wifi Dilemma, Help!
« on: April 03, 2009, 06:48:45 pm »

5
Angstrom & OpenZaurus / Cf Wireless Cards
« on: April 03, 2009, 06:48:14 pm »

6
Security and Networking / Help With Sparklan 802.11g Cf Card
« on: April 03, 2009, 06:47:35 pm »

7
Ubuntu / Zubuntu 1.0 Rc1
« on: February 08, 2009, 05:57:30 pm »
I finally got sound working on the 860, bit hit and miss but...
changed the line in /etc/modules to
Code: [Select]
snd-soc-corgirebooted.
ran alsamixer and set the following
Code: [Select]
Master          85%
Master P        MUTE
Sidetone        0%
Mic Boos        MUTE
Playback        None
Capture         MUTE
ADC High        MUTE
Input Mu        Mic
Jack Fun        Headphone
Output M        UNMUTED
Output M        MUTE
Speaker         Off
Store DC        MUTE
where
the names are truncated as in the display, wich is why "Output M" appears twice
MUTE is [MM] and UNMUTED is [00] changed using the 'm' key
Use the up and down arrows to change all other functions/values
You can turn "Speaker" to "On" as required.

8
Ubuntu / Zubuntu Supports Linksys 54g ?
« on: February 05, 2009, 05:13:53 pm »
Ok, I have done a lot more digging.

Linksys WCF54G Wireless Compact Flash was the first ever CF 802.11g card, never knew that, it was just cheap on ebay.

Chipset is Agere

Agere provided open source drivers but, I can see no reports of getting this card working and they were taken over and the official links are all dead.
http://www.agere.com/mobility/wireless_lan_drivers.html

Drivers *may* be kernel 2.4 only.

Lots of people (over the years) have asked for help getting this card to work but nothing I can find says "do this and it will work" on any zaurus distro.

Possibly supported by Hermes II

Possibly need wlags49 driver/s

Best hope is a post by speculatrix Jun 7 2005
post
<plead>Any update ?</plead>

Really need to find someone who has wholeheartedly got this card work in the Zaurus and can explain what needs to be done.

9
Ubuntu / Zubuntu Initial Teething Problems
« on: February 02, 2009, 05:36:46 pm »
for my 860 I had to readd the commented out MAX_BRIGHTNESS line as 15 was almost half the actual working max of 47 and updated the ACTUAL_BRIGHTNESS variable to BRIGHTNESS for the status report
Code: [Select]
#!/bin/sh
# display-brightness.sh
# simple script to set display-brightness for zaurus clamshell
# author: patrick steiner <[EMAIL PROTECTED]>
# modified by: Ian Munsie <[EMAIL PROTECTED]>
# modified by: Paul M "speculatrix" - for Spitz/Zubuntu
# version: 1.02 | 15/12/2008 21:48 GMT

STEP=5
MIN_BRIGHTNESS=2

DRIVER="`ls /sys/class/backlight/|head -n 1`"
BRIGHTNESS_FILE="/sys/class/backlight/$DRIVER/brightness"
BRIGHTNESS=`cat /sys/class/backlight/$DRIVER/actual_brightness`
# needed for 860 (at least)
MAX_BRIGHTNESS=`cat /sys/class/backlight/$DRIVER/max_brightness`

POWER_FILE="/sys/class/backlight/$DRIVER/bl_power"
POWER_ON=0
#POWER_OFF=1

if [ ! -n "$1" ]; then
    echo "max / current"
    echo "$MAX_BRIGHTNESS / $BRIGHTNESS"
elif [ "$1" = "up" ]; then
    test -x /usr/bin/bl && bl on
    echo $POWER_ON >> $POWER_FILE
    if [ $BRIGHTNESS -lt $MAX_BRIGHTNESS ]; then
        let BRIGHTNESS=$BRIGHTNESS+$STEP
        if [ $BRIGHTNESS -ge $MAX_BRIGHTNESS ]; then
            let BRIGHTNESS=$MAX_BRIGHTNESS
        fi
        echo $BRIGHTNESS >> $BRIGHTNESS_FILE
    fi
elif [ "$1" = "down" ]; then
    test -x /usr/bin/bl && bl on
    echo $POWER_ON >> $POWER_FILE
    if [ $BRIGHTNESS -gt $MIN_BRIGHTNESS ]; then
        let BRIGHTNESS=$BRIGHTNESS-$STEP
        if [ $BRIGHTNESS -le $MIN_BRIGHTNESS ]; then
            let BRIGHTNESS=$MIN_BRIGHTNESS
        fi
        echo $BRIGHTNESS >> $BRIGHTNESS_FILE
    fi
else
    echo -e "\nUsage:\n\t `basename $0` [up | down]\n"
fi

10
Ubuntu / Zubuntu Love - Background Image Thread
« on: February 02, 2009, 04:47:38 pm »
Got a nice zubuntu flavoured desktop image you would like to share ? Post here  
[img]http://www.pay4foss.org/zaurus/zubuntu_2.jpg\" border=\"0\" class=\"linked-image\" /]
created in blender with minor post processing in gimp

11
Ubuntu / Zubuntu 1.0 Rc1
« on: February 02, 2009, 04:41:16 pm »
Quote from: zthird
issue 1: suspend happens after no user interaction EVEN if the power suppy IS plugged in.
Is there any way to set the machine to suspend if the unit is battery only powered ?
issue 2: using the metal power button on the side of the unit to resume from suspend wakes the Z for half a second and then resuspends repeatable ad infinitum.
Using the keyboard "home" power button is the only way to wake the zaurus completely.
doh ! stupid stupid stupid, of course the Z was not going into suspend mode but simple terminal blanking (screensaver) !
to disable just use [div class=\'codetop\']CODE[/div][div class=\'codemain\' style=\'height:200px;white-space:pre;overflow:auto\']setterm -powersave off -blank 0[/div]

12
Ubuntu / Workaround For Kismet And Skb Bug Invalid Truesize
« on: January 25, 2009, 06:01:58 pm »
when running kismet the console interface is bombed with messages such as
"SKB BUG: Invalid truesize (320) len=222, sizeof(sk_buff)=160"
networks are still detected.
run
dmesg -n2;kismet
to launch kismet and the errors will disapear (be hidden)

note:
dmesg -n
      -nlevel
              Set the level at which logging of messages is done to  the  con-
              sole.   For  example,  -n  1 prevents all messages, expect panic
              messages, from appearing on the console.  All levels of messages
              are still written to /proc/kmsg, so syslogd(8) can still be used
              to control exactly where kernel messages appear.   When  the  -n
              option  is  used,  dmesg will not print or clear the kernel ring
              buffer.

13
Ubuntu / Zubuntu 1.0 Rc1
« on: January 25, 2009, 04:47:17 pm »
CL860 suspend issues:

issue 1: suspend happens after no user interaction EVEN if the power suppy IS plugged in.
Is there any way to set the machine to suspend if the unit is battery only powered ?

issue 2: using the metal power button on the side of the unit to resume from suspend wakes the Z for half a second and then resuspends repeatable ad infinitum.
Using the keyboard "home" power button is the only way to wake the zaurus completely.

Otherwise great work! I will be donating as soon as I get some money !

14
Ubuntu / Zubuntu Supports Linksys 54g ?
« on: January 23, 2009, 05:35:56 pm »
CL860 zubuntu 1.0RC1
insert wifi card, pccardctl info

Linksys
WCF54G_wireless-G_CompactFlash_Card
MANFID 0156,0004

nothing in dmesg other than "card inserted etc" and no interfaces for ifconfig or iwconfig

has anyone got this card working?
I can find next to nothing relevant on google
what can I do to get this card to work ??

15
Zaurus - pdaXrom / Newbie Wifi Basic Questions
« on: July 08, 2006, 10:11:53 am »
Quote
Have you checked out this post?  Sounds like someone did get this card working.
[div align=\"right\"][a href=\"index.php?act=findpost&pid=133239\"][{POST_SNAPBACK}][/a][/div]

Yes, they are using beta3 but that is not out yet for the 860, I will have to wait ....

Pages: [1] 2