SlackwareThis Forum is for the discussion of Slackware Linux.
Notices
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
I'm trying to configure the wireless of my inspiron 1525 on Slackware 12.1.
First of all, I do not know which driver should I use. I've read that some people use b43 but it dosen't help for me.
lspci doesn't show any wireless device and wlan doesn't exist.
dmesg | grep -i wireless (or wlan) gives nothing.
I have to say that I have switched on the wireless with the button on the right side.
Does someone has successfully configured the wireless on this machine?
Can you give the lspci output? You surely must have an idea about what wireless card you have. As far as I can see from Google search results, under Linux wireless should work on this computer. It seems some models have Intel and others have Broadcom cards, but they should work...
The name of the kernel module for a broadcom wireless device is dependent on which kernel you use. E.G. b43 or bcm43xxx. Look at the files provided by your b43-fwcutter package.
You may have the file: "/usr/sbin/install_bcm43xx_firmware". Running this command as root will download the firmware you need and install it.
You could run the command:
Code:
sudo /sbin/lspci -v | sed -n '/Wireless/,/^$/p'
to get information on you wireless device. The sed part simply filters out the other devices. It may even indicate which driver the device needs.
Thanks a lot for your help!!
I got it working.
I use ndiswrapper with the windows driver R174291.
More info about R174291 are available here.
The driver R115321 did not work for me.
Thanks again,
Now the wireless works fine, do I have to proceed by the same way to use the integrated webcam?
I mean use the windows module with ndiswrapper.
But in this case, I'm wondering whether I can use several module with ndiswrapper.
Ndiswrapper is for wireless cards. For webcam, we need to know what chipset it has. You can use the lsusb command for that. My guess is that, if it isn't already supported, one the of the following projects is likely to provide the necessary driver:
Both drivers are included in recent kernels, but with the default Slackware 12.1 kernel you will need to compile and install them (it should be a smooth procedure).
Bus 002 Device 001: ID 0000:0000
Bus 007 Device 001: ID 0000:0000
Bus 006 Device 003: ID 0d8c:000c C-Media Electronics, Inc. Audio Adapter
Bus 006 Device 002: ID 047d:101f Kensington PocketMouse Pro
Bus 006 Device 001: ID 0000:0000
Bus 005 Device 001: ID 0000:0000
Bus 001 Device 002: ID 05a9:2640 OmniVision Technologies, Inc.
Bus 001 Device 001: ID 0000:0000
Bus 004 Device 001: ID 0000:0000
Bus 003 Device 001: ID 0000:0000
I've juste try the ov511 driver but seems not working.
dmesg gives:
Linux video capture interface: v2.00
usbcore: registered new interface driver ov511
drivers/media/video/ov511.c: v1.64 for Linux 2.5 : ov511 USB Camera Driver
Building USB Video Class driver...
make[1]: Entering directory `/usr/src/linux-2.6.24.5'
CC [M] /home/germaneau/uvc-driver/trunk/uvc_driver.o
CC [M] /home/germaneau/uvc-driver/trunk/uvc_queue.o
CC [M] /home/germaneau/uvc-driver/trunk/uvc_v4l2.o
CC [M] /home/germaneau/uvc-driver/trunk/uvc_video.o
CC [M] /home/germaneau/uvc-driver/trunk/uvc_ctrl.o
CC [M] /home/germaneau/uvc-driver/trunk/uvc_status.o
CC [M] /home/germaneau/uvc-driver/trunk/uvc_isight.o
LD [M] /home/germaneau/uvc-driver/trunk/uvcvideo.o
Building modules, stage 2.
MODPOST 1 modules
CC /home/germaneau/uvc-driver/trunk/uvcvideo.mod.o
LD [M] /home/germaneau/uvc-driver/trunk/uvcvideo.ko
make[1]: Leaving directory `/usr/src/linux-2.6.24.5'
But When I do insmod I get for exemple:
Code:
insmod: error inserting 'uvc_driver.o': -1 Invalid module format
After make install and depmod -a it works.
Just modprobe uvcvideo and voila.
Thanks a lot!!
You known, on windows it's possible to control the camera orientation and zoom.
Do you know whether one can do that on linux as well?
Bests,
Zooming or orientation should be handled by the software using the webcam. So it depends on the application you're using. I hope you didn't run into this bug (taken from the UVC project page):
Quote:
This camera module is known to be mounted upside-down in some notebooks. There is currently no documented way to rotate the image at the device level. If you don't mind holding your computer upside-down, the camera should work fine.
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.