i need some help. I have got to the part where i need to do the apt-get update and get a error stating invalid skb->cb magic. What can I do about this? Its coming from the wireless card and I get the same error trying to ping my gateway.
Also worth noting is I have now installed debian the original way from the network instead of off the sd card.
edit : ok the blacklist got the card to work but now I cannot ping my gateway. Also after a reboot I lost the zaurus key config and tab will no longer make a / Can someone please help me.
If you repeat the command from the TitchyLinux installation page that starts
loadkeys you'll get your keymap back. About the wifi problem you probably need to edit /etc/network/interfaces file. Try the command
nano etc/network/interfaces. You should already have one and can edit it to suit.
Here is my interfaces file from my TitchyLinux install with comments:
# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).
# The loopback network interface
auto lo
iface lo inet loopback
# The primary network interface
allow-hotplug eth0
# if you later install dhcp clients then you can comment out the iface line with static in it and the other lines with the IP information
# You would then uncomment the following line
#iface eth0 inet dhcp
# You need to use the following lines at first
iface eth0 inet static
address an available address on your wifi network
netmask 255.255.255.0
network your router IP with 0 as the last figure
broadcast your router IP with 255 as the last figures
gateway your router IP
# wireless-* options are implemented by the wireless-tools package
wireless-mode managed
wireless-essid your network's essid
wireless-key1 your wep key If you are using wep, otherwise comment it out.
# dns-* options are implemented by the resolvconf package, if installed
dns-nameservers your router IP
However you might prefer to look through this forum for wifi problems or at the Wiki pages that ZDevil and friends have set up to guide Debian installation. He has put an example interfaces file on there.
Good luck!
OOPS! Don't forget to do depmod -a after a reboot until you have finished all this post-install fiddling.