LinuxQuestions.org
Visit Jeremy's Blog.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Hardware
User Name
Password
Linux - Hardware This forum is for Hardware issues.
Having trouble installing a piece of hardware? Want to know if that peripheral is compatible with Linux?

Notices


Reply
  Search this Thread
Old 05-30-2016, 12:59 PM   #1
deanfourie
LQ Newbie
 
Registered: May 2016
Posts: 6

Rep: Reputation: Disabled
Issues with USB wifi adapter in linux?


Hi im trying to get my WiFi USB adapter going in linux, a distro running in VMWware on a windows machine. It looks like VMWare is capturing the device fine.

Code:
root:~# lsusb
Bus 002 Device 003: ID 0457:0163 Silicon Integrated Systems Corp. SiS163U 802.11 Wireless LAN Adapter
Bus 002 Device 002: ID 0bda:0307 Realtek Semiconductor Corp. 
Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 001 Device 003: ID 0e0f:0002 VMware, Inc. Virtual USB Hub
Bus 001 Device 002: ID 0e0f:0003 VMware, Inc. Virtual Mouse
Bus 001 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
root:~#
I beleive that

Bus 002 Device 003: ID 0457:0163 Silicon Integrated Systems Corp. SiS163U 802.11 Wireless LAN Adapter

is my device, but I have no options for connecting to a WiFi network in network manager? Do I need to install drivers? Can anyone please help with this, I have very little knowledge when it comes to drivers in linux.

Thanks
 
Old 05-30-2016, 01:52 PM   #2
beachboy2
Senior Member
 
Registered: Jan 2007
Location: Wild West Wales, UK
Distribution: Linux Mint 21 MATE, EndeavourOS, antiX, MX Linux
Posts: 3,972
Blog Entries: 32

Rep: Reputation: 1465Reputation: 1465Reputation: 1465Reputation: 1465Reputation: 1465Reputation: 1465Reputation: 1465Reputation: 1465Reputation: 1465Reputation: 1465
deanfourie,

Welcome to LQ.

By the sounds of it you have a Fujitsu laptop with the SiS163U wireless adapter.

Unfortunately, things are probably going to get very messy. The solution requires a lot of command line work.

The alternative is to find a USB wifi adapter which definitely works in Linux.

What distro are you using?

Please open a Terminal and let us have the output of:

Code:
inxi -Fxz
Thanks.
 
Old 05-30-2016, 02:37 PM   #3
deanfourie
LQ Newbie
 
Registered: May 2016
Posts: 6

Original Poster
Rep: Reputation: Disabled
Thanks

I get command not found,

Im running Kali Linux.


Thanks
 
Old 05-30-2016, 02:46 PM   #4
beachboy2
Senior Member
 
Registered: Jan 2007
Location: Wild West Wales, UK
Distribution: Linux Mint 21 MATE, EndeavourOS, antiX, MX Linux
Posts: 3,972
Blog Entries: 32

Rep: Reputation: 1465Reputation: 1465Reputation: 1465Reputation: 1465Reputation: 1465Reputation: 1465Reputation: 1465Reputation: 1465Reputation: 1465Reputation: 1465
deanfourie,

Why on earth did you not say you were using Kali at the very beginning?

I have wasted time searching for an answer to your problem, assuming you were using a standard Linux distro.

If you are looking for a Linux distribution to learn the basics of Linux and need a good starting point, Kali Linux is not the ideal distribution for you.

http://docs.kali.org/introduction/sh...use-kali-linux

http://www.wirelesshack.org/best-kal...gles-2016.html

http://www.wirelesshack.org/top-kali...gles-2015.html

Good luck.
 
Old 05-30-2016, 03:01 PM   #5
jefro
Moderator
 
Registered: Mar 2008
Posts: 21,982

Rep: Reputation: 3625Reputation: 3625Reputation: 3625Reputation: 3625Reputation: 3625Reputation: 3625Reputation: 3625Reputation: 3625Reputation: 3625Reputation: 3625Reputation: 3625
Kali assumes the end users are advanced and has many features and settings not common to standard distro's.
 
Old 05-30-2016, 03:27 PM   #6
deanfourie
LQ Newbie
 
Registered: May 2016
Posts: 6

Original Poster
Rep: Reputation: Disabled
Sorry I didnt mention it because a lot of people get a bit sceptical when you mention you are using kali! Sorry man!

Also, it doesnt matter. Its a VM so re installing is easy and ive used kali before. I dont mind being thrown right in the deep end to begin with, and I have learnt ALOT with kali.

I guess all im asking at this point is, is this adapter even compatible with linux? I cant find any drivers out there. Only solution I can find is the windows XP driver emulation using NDISwrapper

Last edited by deanfourie; 05-30-2016 at 03:29 PM.
 
Old 05-30-2016, 03:35 PM   #7
beachboy2
Senior Member
 
Registered: Jan 2007
Location: Wild West Wales, UK
Distribution: Linux Mint 21 MATE, EndeavourOS, antiX, MX Linux
Posts: 3,972
Blog Entries: 32

Rep: Reputation: 1465Reputation: 1465Reputation: 1465Reputation: 1465Reputation: 1465Reputation: 1465Reputation: 1465Reputation: 1465Reputation: 1465Reputation: 1465
deanfourie,

The only solution I have found uses ndiswrapper.

Is that any use to you?

EDIT
Well here are the instructions anyway:

Download Windows driver (sis163u.inf) from:

http://puolanka.info/wlan/sis163u.inf.tar.gz

Download it to Desktop.

Then extract it:

Code:
cd Desktop

tar xzf sis163u.inf.tar.gz
This places a folder called WLAN on the Desktop.

Code:
sudo ndiswrapper -i /home/dean/Desktop/WLAN/sis163u.inf
NB Change this if dean is not your user name.

Probe the new driver:

Code:
sudo modprobe ndiswrapper
iwconfig finds the device if it installed correctly:

Code:
iwconfig
Click on Wifi icon in bottom toolbar and enter wifi password.

If this does not work, reboot and check that wifi indicator light is ON.

If not, hold down Fn key and press F2.

Reboot if needed.

Last edited by beachboy2; 05-30-2016 at 03:48 PM.
 
1 members found this post helpful.
Old 05-30-2016, 03:56 PM   #8
deanfourie
LQ Newbie
 
Registered: May 2016
Posts: 6

Original Poster
Rep: Reputation: Disabled
Hey beachboy,

Thanks for the reply. I will give it a go im not going to spend too much time on it as I can get a new adapter for like $7 but ill try it now before buying.


Appreciate your time and help!
 
Old 05-30-2016, 04:05 PM   #9
deanfourie
LQ Newbie
 
Registered: May 2016
Posts: 6

Original Poster
Rep: Reputation: Disabled
root@kali:~/Downloads# tar -xzf driver.tar.gz
root@kali:~/Downloads# ndiswrapper -i WLAN/sis163u.inf
installing sis163u ...
root@kali:~/Downloads# modprobe ndiswrapper
modprobe: FATAL: Module ndiswrapper not found.
root@kali:~/Downloads# sudo modprobe ndiswrapper
modprobe: FATAL: Module ndiswrapper not found.
root@kali:~/Downloads#
 
Old 05-30-2016, 04:09 PM   #10
Emerson
LQ Sage
 
Registered: Nov 2004
Location: Saint Amant, Acadiana
Distribution: Gentoo ~amd64
Posts: 7,661

Rep: Reputation: Disabled
You may need to run depmod.
 
Old 11-30-2017, 09:52 PM   #11
alexpslab
LQ Newbie
 
Registered: Nov 2017
Posts: 3

Rep: Reputation: Disabled
Quote:
Originally Posted by beachboy2 View Post
deanfourie,

Why on earth did you not say you were using Kali at the very beginning?

I have wasted time searching for an answer to your problem, assuming you were using a standard Linux distro.

If you are looking for a Linux distribution to learn the basics of Linux and need a good starting point, Kali Linux is not the ideal distribution for you.

http://docs.kali.org/introduction/sh...use-kali-linux

https://kodiadvices.org/123movies-kodi-addon/

http://www.wirelesshack.org/top-kali...gles-2015.html

Good luck.
Thanks Mate!
 
Old 01-01-2019, 05:53 AM   #12
alexpslab
LQ Newbie
 
Registered: Nov 2017
Posts: 3

Rep: Reputation: Disabled
Quote:
Originally Posted by beachboy2 View Post
deanfourie,

Why on earth did you not say you were using Kali at the very beginning?

I have wasted time searching for an answer to your problem, assuming you were using a standard Linux distro.

If you are looking for a Linux distribution to learn the basics of Linux and need a good starting point, Kali Linux is not the ideal distribution for you.

https://www.inthow.com/http-bit-ly-getbuildpin/

https://techfela.com/icdrama-kodi-addon/

https://firedout.com/neptune-rising-kodi-addon/

Good luck.
Thanks for these wonderful guides. I know this is not the right time to say thanks, but I still wanted share my gratitude.
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
[SOLVED] Can't get Atheros USB wifi adapter to work on Linux Mint 17.2 ssalvat Linux - Hardware 9 11-28-2015 03:08 PM
newbie / wifi usb adapter issues jetechnologies Linux - Newbie 3 12-23-2013 11:11 AM
Wanted: 802.11n usb wifi adapter dongle for linux jdkaye Linux - Hardware 12 11-18-2013 02:53 AM
[SOLVED] problems with usb wifi adapter bogey Ubuntu 3 08-31-2011 07:34 PM
Installing WiFi USB Adapter The_Watcher Linux - Newbie 1 01-30-2010 09:45 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Hardware

All times are GMT -5. The time now is 04:11 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration