SliTaz SliTaz Forum

You are not logged in.

#1 2013-06-05 19:33:42

funky445o
Member
Registered: 2013-06-05
Posts: 10

no wifi in slitaz

I have a Linksys Network PC Card model no.WPC11 but I scan if any networks are around but zero.Can someone please help me? What info do I need to give?In puppy Linux sometimes WiFi works when it acquires an IP address it loads the Orinoco_cs driver.Do I need to get that driver in slitaz?Should I use ndiswrapper? I hope I don't have to use ndiswrapper because its difficult to get make.anyone?

Offline

#2 2013-06-05 19:46:30

mojo
Administrator
Registered: 2011-03-29
Posts: 2,174

Re: no wifi in slitaz

Slitaz 4.0 has the orinoco_cs driver.

Open terminal post output of these commands.

[c]lsmod[/c]

[c]ls /sys/class/net[/c]

[c]iwconfig[/c]

[c]ifconfig[/c]

[c]cat /etc/network.conf[/c]

Offline

#3 2013-06-05 20:38:47

funky445o
Member
Registered: 2013-06-05
Posts: 10

Re: no wifi in slitaz

Ok...

tux@slitaz:~$ lsmod

Module                  Size  Used by    Not tainted

floppy                 41138  0

parport_pc             16061  0

video                   9783  0

parport                20983  1 parport_pc

output                  1144  1 video

button                  3602  0

snd_maestro3           11926  1

snd_ac97_codec         77963  1 snd_maestro3

ac97_bus                 718  1 snd_ac97_codec

snd_pcm                43737  2 snd_maestro3,snd_ac97_codec

snd_timer              12515  1 snd_pcm

snd_page_alloc          4853  1 snd_pcm

snd                    33394  6 snd_maestro3,snd_ac97_codec,snd_pcm,snd_timer

soundcore               3357  1 snd

pcmcia                 24993  0

yenta_socket           16223  0

pcmcia_rsrc             6989  1 yenta_socket

pcmcia_core             8413  3 pcmcia,yenta_socket,pcmcia_rsrc

intel_agp               7908  1

intel_gtt               9214  1 intel_agp

agpgart                18221  2 intel_agp,intel_gtt

tux@slitaz:~$  ls /sys/class/net

dummy0  lo

tux@slitaz:~$ iwconfig

lo        no wireless extensions.

dummy0    no wireless extensions.

tux@slitaz:~$ ifconfig

lo        Link encap:Local Loopback

          inet addr:127.0.0.1  Mask:255.0.0.0

          UP LOOPBACK RUNNING  MTU:16436  Metric:1

          RX packets:0 errors:0 dropped:0 overruns:0 frame:0

          TX packets:0 errors:0 dropped:0 overruns:0 carrier:0

          collisions:0 txqueuelen:0

          RX bytes:0 (0.0 B)  TX bytes:0 (0.0 B)

tux@slitaz:~$ cat /etc/network.conf

# /etc/network.conf: SliTaz system wide networking configuration.

# Config file used by: /etc/init.d/network.sh

#

# Set default interface.

INTERFACE="eth0"

# Dynamic IP address.

# Enable/disable DHCP client at boot time.

DHCP="no"

# Static IP address.

# Enable/disable static IP at boot time.

STATIC="no"

# Set IP address and netmask for a static IP.

IP="192.168.0.6"

NETMASK="255.255.255.0"

# Set route gateway for a static IP.

GATEWAY="192.168.0.1"

# Set DNS server for a static IP.

DNS_SERVER="192.168.0.1"

# Wifi connection.

# Enable/disable wireless connection at boot time.

WIFI="yes"

# Wifi interface (iwconfig) and ESSID.

WIFI_INTERFACE="wlan0"

WIFI_ESSID="dlink"

WIFI_MODE="managed"

WIFI_KEY="1234567890"

WIFI_KEY_TYPE="WEP"

WPA_DRIVER=""

WIFI_CHANNEL="1"

WIFI_IWCONFIG_ARGS=""

Offline

#4 2013-06-05 21:04:43

mojo
Administrator
Registered: 2011-03-29
Posts: 2,174

Re: no wifi in slitaz

orinoco_cs is not loaded.

Open terminal,su, password: root

[c]# modprobe orinoco_cs[/c]

Rerun the previous commands

lsmod <= verify orinoco_cs is listed

[c]# ls /sys/class/net[/c] <= will list the alias for your wifi adapter if the driver is working.

Edit /etc/network.conf

Enter the correct alias: INTERFACE= and WIFI_INTERFACE=

Change DHCP="no" to DHCP="yes"

For WEP remove the quotes "": change  WIFI_KEY="1234567890" to WIFI_KEY=1234567890

[c]# iwconfig[/c] <= will show the wifi card info if the drivers correct and working.

Stop/start network if the above indicates the wifi adapter is live:

[c]# /etc/init.d/network.sh stop[/c]

[c]# /etc/init.d/network.sh start[/c]

[c]ifconfig[/c] <= show your adapter has an ip address

[c]ping www.slitaz.org[/c] <= if ping reply then dns and internet is working

Offline

#5 2013-06-05 21:35:24

funky445o
Member
Registered: 2013-06-05
Posts: 10

Re: no wifi in slitaz

Orinoco is listed I edited the network config file,ls  /sys/class/net shows dummy0 and lo,iwconfig only shows lo no wireless extensions. dummy0 no wireless extensions. My wireless card doesn't show up as wlan0 or eth0 or something.

Offline

#6 2013-06-05 21:52:08

mojo
Administrator
Registered: 2011-03-29
Posts: 2,174

Re: no wifi in slitaz

Post output from these commands:

[c]pccardctl ident[/c]

[c]pccardctl ls[/c]

[c]pccardctl insert[/c]

[c]pccardctl eject[/c]

[c]pccardctl info[/c]

[c]pccardctl status[/c]

[c]pccardctl ident[/c]

Open a 2nd terminal to monitor kernel messages:

tail -f /var/log/messages

In first terminal:

[c]# modprobe -r orinoco_cs[/c]

[c]# modprobe  orinoco_cs[/c]

Post any error messages in 2nd terminal related to orinoco_cs being loaded/unloaded.

Some wifi adapters that use orinoco_cs require firmware installed which is not on the livecd.

There will be a firmware failed to load error message with the firmware name.

Offline

#7 2013-06-05 22:40:28

funky445o
Member
Registered: 2013-06-05
Posts: 10

Re: no wifi in slitaz

root@slitaz:/home/tux# pccardctl ident

Socket 0:

  no product info available

Socket 1:

  product info: "The Linksys Group, Inc.", "Instant Wireless Network PC Card", "ISL37300P", "RevA"

  manfid: 0x0274, 0x1613

  function: 6 (network)

root@slitaz:/home/tux# pccardctl ls

Socket 0 Bridge:       [yenta_cardbus]     (bus ID: 0000:00:03.0)

Socket 1 Bridge:       [yenta_cardbus]     (bus ID: 0000:00:03.1)

Socket 1 Device 0:    [-- no driver --]    (bus ID: 1.0)

root@slitaz:/home/tux# pccardctl insert

root@slitaz:/home/tux# pccardctl eject

root@slitaz:/home/tux# pccardctl info

PRODID_1=""

PRODID_2=""

PRODID_3=""

PRODID_4=""

MANFID=0000,0000

FUNCID=255

PRODID_1=""

PRODID_2=""

PRODID_3=""

PRODID_4=""

MANFID=0000,0000

FUNCID=255

root@slitaz:/home/tux# pccardctl status

Socket 0:

  no card

Socket 1:

  no card

root@slitaz:/home/tux# pccardctl ident

Socket 0:

  no product info available

Socket 1:

  no product info available

tail -f /var/log/messages

May 23 06:51:34 (none) user.notice kernel: pcmcia_socket pcmcia_socket0: pccard: card ejected from slot 0

May 23 06:51:34 (none) user.notice kernel: pcmcia_socket pcmcia_socket1: pccard: card ejected from slot 1

May 23 06:55:58 (none) user.info kernel: cfg80211: Calling CRDA to update world regulatory domain

May 23 06:55:58 (none) user.debug kernel: orinoco 0.15 (David Gibson <hermes@gibson.dropbear.id.au>, Pavel Roskin <proski@gnu.org>, et al)

Offline

#8 2013-06-05 23:21:26

mojo
Administrator
Registered: 2011-03-29
Posts: 2,174

Re: no wifi in slitaz

Sorry,I shouldn't have had you run the eject command.

The card has to be inserted while the commands are run and the driver loaded to get the information I need.

I didn't get any info other than the pci.ids which indicates the driver is correct.

Offline

#9 2013-06-05 23:28:10

funky445o
Member
Registered: 2013-06-05
Posts: 10

Re: no wifi in slitaz

OK lol.I appreciate The fast responses thanks a lot.lol

Well the card was inserted when I ran all the commands.yup

But the eject command screwed it up right? Do I need to run them again? Well then OK.

Offline

#10 2013-06-06 00:06:50

funky445o
Member
Registered: 2013-06-05
Posts: 10

Re: no wifi in slitaz

here it is the output without the eject command...

tux@slitaz:~$ pccardctl ident

Socket 0:

  no product info available

Socket 1:

  product info: "The Linksys Group, Inc.", "Instant Wireless Network PC Card", "ISL37300P", "RevA"

  manfid: 0x0274, 0x1613

  function: 6 (network)

tux@slitaz:~$ pccardctl ls

Socket 0 Bridge:       [yenta_cardbus]     (bus ID: 0000:00:03.0)

Socket 1 Bridge:       [yenta_cardbus]     (bus ID: 0000:00:03.1)

Socket 1 Device 0:    [-- no driver --]    (bus ID: 1.0)

tux@slitaz:~$ pccardctl insert

tux@slitaz:~$ pccardctl info

PRODID_1=""

PRODID_2=""

PRODID_3=""

PRODID_4=""

MANFID=0000,0000

FUNCID=255

PRODID_1="The Linksys Group, Inc."

PRODID_2="Instant Wireless Network PC Card"

PRODID_3="ISL37300P"

PRODID_4="RevA"

MANFID=0274,1613

FUNCID=6

tux@slitaz:~$ pccardctl status

Socket 0:

  no card

Socket 1:

  5.0V 16-bit PC Card

  Subdevice 0 (function 0) [unbound]

tux@slitaz:~$ pccardctl info

PRODID_1=""

PRODID_2=""

PRODID_3=""

PRODID_4=""

MANFID=0000,0000

FUNCID=255

PRODID_1="The Linksys Group, Inc."

PRODID_2="Instant Wireless Network PC Card"

PRODID_3="ISL37300P"

PRODID_4="RevA"

MANFID=0274,1613

FUNCID=6

pccardctl ident

Socket 0:

  no product info available

Socket 1:

  product info: "The Linksys Group, Inc.", "Instant Wireless Network PC Card", "ISL37300P", "RevA"

  manfid: 0x0274, 0x1613

  function: 6 (network)

tux@slitaz:~$ tail -f /var/log/messages

May 23 08:10:24 (none) daemon.err udevd[1442]: error binding udev control socket

May 23 08:10:24 (none) daemon.info init: starting pid 1444, tty '/dev/tty6': '/sbin/getty 38400 tty6'

May 23 08:10:24 (none) user.notice error binding udev control socket

May 23 08:10:24 (none) daemon.err udevd[1443]: error binding udev control socket

May 23 08:10:24 (none) daemon.err udevd[1445]: bind failed: Address already in use

May 23 08:10:24 (none) user.notice error binding udev control socket

May 23 08:10:24 (none) daemon.err udevd[1445]: error binding udev control socket

May 23 08:10:24 (none) daemon.err udevd[1446]: bind failed: Address already in use

May 23 08:10:24 (none) user.notice error binding udev control socket

May 23 08:10:24 (none) daemon.err udevd[1446]: error binding udev control socket

tux@slitaz:~$ modprobe -r orinoco_cs

tux@slitaz:~$ modprobe orinoco_cs

modprobe: can't load module rfkill (/lib/modules/2.6.37-slitaz/kernel/net/rfkill/rfkill.ko.gz): Operation not permitted

Offline

#11 2013-06-06 00:30:46

funky445o
Member
Registered: 2013-06-05
Posts: 10

Re: no wifi in slitaz

maybe i needed to do this all as root? Could that perhaps be the reason for the Operation not permitted in last line? Is that enough info?

Offline

#12 2013-06-06 00:35:41

mojo
Administrator
Registered: 2011-03-29
Posts: 2,174

Re: no wifi in slitaz

You have to be root to modprobe:

tux@slitaz:~$ su

Password: <=type root, then hit the enter key

root@slitaz:/home/tux#

The # in front of commands means do it as user root.

Do this only:

[c]# modprobe -r orinoco_cs[/c]

[c]# modprobe orinoco_cs[/c]

I'm hoping when you modprobe orinoco_cs as root a firmware loading error will appear in the 2nd terminal.

If missing firmware is not the problem I have no idea why the wifi adapter is not working.

Offline

#13 2013-06-06 01:06:13

funky445o
Member
Registered: 2013-06-05
Posts: 10

Re: no wifi in slitaz

oh ok. here is the output of modprobe...

tux@slitaz:~$ su

Password:

root@slitaz:/home/tux# tail -f /var/log/messages

May 23 09:10:38 (none) daemon.err udevd[1395]: error binding udev control socket

May 23 09:10:38 (none) daemon.err udevd[1406]: bind failed: Address already in use

May 23 09:10:38 (none) user.notice error binding udev control socket

May 23 09:10:38 (none) daemon.err udevd[1406]: error binding udev control socket

May 23 09:10:38 (none) daemon.err udevd[1404]: error binding udev control socket

May 23 09:10:38 (none) daemon.err udevd[1394]: bind failed: Address already in use

May 23 09:10:38 (none) user.notice error binding udev control socket

May 23 09:10:38 (none) daemon.err udevd[1394]: error binding udev control socket

May 23 09:11:38 (none) auth.notice su: + /dev/pts/1 tux:root

May 23 09:13:54 (none) auth.notice su: + /dev/pts/2 tux:root

May 23 09:14:46 (none) daemon.err udevd[1483]: bind failed: Address already in use

May 23 09:14:46 (none) user.notice error binding udev control socket

May 23 09:14:46 (none) daemon.err udevd[1483]: error binding udev control socket

May 23 09:14:46 (none) daemon.err udevd[1482]: bind failed: Address already in use

May 23 09:14:46 (none) user.notice error binding udev control socket

May 23 09:14:46 (none) daemon.err udevd[1482]: error binding udev control socket

May 23 09:14:46 (none) daemon.err udevd[1484]: bind failed: Address already in use

May 23 09:14:46 (none) user.notice error binding udev control socket

May 23 09:14:46 (none) daemon.err udevd[1484]: error binding udev control socket

May 23 09:15:11 (none) user.warn kernel: ------------[ cut here ]------------

May 23 09:15:11 (none) user.warn kernel: WARNING: at drivers/pcmcia/cistpl.c:1387 pccard_validate_cis+0x33/0x24b [pcmcia]()

May 23 09:15:11 (none) user.warn kernel: Hardware name: Latitude CPx J650GT

May 23 09:15:11 (none) user.warn kernel: Modules linked in: pcmcia(+) parport_pc floppy video parport output button snd_maestro3 snd_ac97_codec ac97_bus snd_pcm snd_timer snd_page_alloc snd soundcore yenta_socket pcmcia_rsrc pcmcia_core intel_agp intel_gtt agpgart [last unloaded: pcmcia]

May 23 09:15:11 (none) user.warn kernel: Pid: 1485, comm: modprobe Not tainted 2.6.37-slitaz #2

May 23 09:15:11 (none) user.warn kernel: Call Trace:

May 23 09:15:11 (none) user.warn kernel:  [<c1029efc>] warn_slowpath_common+0x65/0x7a

May 23 09:15:11 (none) user.warn kernel:  [<d085cd82>] ? pccard_validate_cis+0x33/0x24b [pcmcia]

May 23 09:15:11 (none) user.warn kernel:  [<c1029f20>] warn_slowpath_null+0xf/0x13

May 23 09:15:11 (none) user.warn kernel:  [<d085cd82>] pccard_validate_cis+0x33/0x24b [pcmcia]

May 23 09:15:11 (none) user.warn kernel:  [<d085a243>] pcmcia_card_add+0x4b/0xa7 [pcmcia]

May 23 09:15:11 (none) user.warn kernel:  [<c10be5ca>] ? sysfs_find_dirent+0x28/0x3a

May 23 09:15:11 (none) user.warn kernel:  [<c10be4af>] ? sysfs_addrm_finish+0x16/0xdc

May 23 09:15:11 (none) user.warn kernel:  [<c10be775>] ? sysfs_add_one+0x12/0x7a

May 23 09:15:11 (none) user.warn kernel:  [<d085a2d9>] pcmcia_bus_add+0x3a/0x40 [pcmcia]

May 23 09:15:11 (none) user.warn kernel:  [<d07f910f>] pccard_register_pcmcia+0x47/0x65 [pcmcia_core]

May 23 09:15:11 (none) user.warn kernel:  [<d085d77a>] pcmcia_bus_add_socket+0x7b/0xa5 [pcmcia]

May 23 09:15:11 (none) user.warn kernel:  [<c11fb617>] class_interface_register+0x6b/0x94

May 23 09:15:11 (none) user.warn kernel:  [<d081b02b>] init_pcmcia_bus+0x2b/0x53 [pcmcia]

May 23 09:15:11 (none) user.warn kernel:  [<c1001210>] do_one_initcall+0x71/0x11d

May 23 09:15:11 (none) user.warn kernel:  [<d081b000>] ? init_pcmcia_bus+0x0/0x53 [pcmcia]

May 23 09:15:11 (none) user.warn kernel:  [<c104cc29>] sys_init_module+0x1278/0x1419

May 23 09:15:11 (none) user.warn kernel:  [<c137a079>] syscall_call+0x7/0xb

May 23 09:15:11 (none) user.warn kernel: ---[ end trace 2ecc64eb5cc40d21 ]---

May 23 09:15:11 (none) daemon.err udevd[1487]: bind failed: Address already in use

May 23 09:15:11 (none) daemon.err udevd[1488]: bind failed: Address already in use

May 23 09:15:11 (none) user.notice error binding udev control socket

May 23 09:15:11 (none) daemon.err udevd[1488]: error binding udev control socket

May 23 09:15:11 (none) user.notice error binding udev control socket

May 23 09:15:11 (none) daemon.err udevd[1487]: error binding udev control socket

May 23 09:15:11 (none) daemon.err udevd[1490]: bind failed: Address already in use

May 23 09:15:11 (none) user.notice error binding udev control socket

May 23 09:15:11 (none) daemon.err udevd[1490]: error binding udev control socket

May 23 09:15:11 (none) daemon.err udevd[1492]: bind failed: Address already in use

May 23 09:15:11 (none) daemon.err udevd[1491]: bind failed: Address already in use

May 23 09:15:11 (none) user.notice error binding udev control socket

May 23 09:15:11 (none) daemon.err udevd[1491]: error binding udev control socket

May 23 09:15:11 (none) user.notice error binding udev control socket

May 23 09:15:11 (none) daemon.err udevd[1492]: error binding udev control socket

May 23 09:15:11 (none) daemon.err udevd[1494]: bind failed: Address already in use

May 23 09:15:11 (none) user.info kernel: cfg80211: Calling CRDA to update world regulatory domain

May 23 09:15:11 (none) user.notice error binding udev control socket

May 23 09:15:11 (none) daemon.err udevd[1494]: error binding udev control socket

May 23 09:15:11 (none) daemon.err udevd[1495]: bind failed: Address already in use

May 23 09:15:11 (none) user.notice error binding udev control socket

May 23 09:15:11 (none) daemon.err udevd[1495]: error binding udev control socket

May 23 09:15:11 (none) daemon.err udevd[1497]: bind failed: Address already in use

May 23 09:15:11 (none) user.notice error binding udev control socket

May 23 09:15:11 (none) daemon.err udevd[1497]: error binding udev control socket

May 23 09:15:11 (none) daemon.err udevd[1498]: bind failed: Address already in use

May 23 09:15:11 (none) user.notice error binding udev control socket

May 23 09:15:11 (none) daemon.err udevd[1498]: error binding udev control socket

May 23 09:15:11 (none) daemon.err udevd[1501]: bind failed: Address already in use

May 23 09:15:11 (none) user.notice error binding udev control socket

May 23 09:15:11 (none) daemon.err udevd[1501]: error binding udev control socket

May 23 09:15:11 (none) user.debug kernel: orinoco 0.15 (David Gibson <hermes@gibson.dropbear.id.au>, Pavel Roskin <proski@gnu.org>, et al)

May 23 09:15:11 (none) daemon.err udevd[1504]: bind failed: Address already in use

May 23 09:15:11 (none) user.notice error binding udev control socket

May 23 09:15:11 (none) daemon.err udevd[1504]: error binding udev control socket

May 23 09:15:11 (none) daemon.err udevd[1505]: bind failed: Address already in use

May 23 09:15:11 (none) user.notice error binding udev control socket

May 23 09:15:11 (none) daemon.err udevd[1505]: error binding udev control socket

Offline

#14 2013-06-06 01:12:41

mojo
Administrator
Registered: 2011-03-29
Posts: 2,174

Re: no wifi in slitaz

I see no firmware errors,there's nothing more I can suggest to get it working.

Offline

#15 2013-06-06 01:14:58

funky445o
Member
Registered: 2013-06-05
Posts: 10

Re: no wifi in slitaz

Does that help?

Offline

#16 2013-06-06 01:15:47

funky445o
Member
Registered: 2013-06-05
Posts: 10

Re: no wifi in slitaz

ohhh ok. well thanks a bunch mojo.

Offline

#17 2013-06-06 01:22:49

mojo
Administrator
Registered: 2011-03-29
Posts: 2,174

Re: no wifi in slitaz

Your welcome, wish it would have worked smile

Offline

Registered users online in this topic: 0, guests: 1
[Bot] ClaudeBot

Board footer

Powered by FluxBB
Modified by Visman

[ Generated in 0.018 seconds, 7 queries executed - Memory usage: 1.59 MiB (Peak: 1.77 MiB) ]