LinuxQuestions.org
Latest LQ Deal: Latest LQ Deals
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Debian
User Name
Password
Debian This forum is for the discussion of Debian Linux.

Notices


Closed Thread
  Search this Thread
Old 08-11-2014, 06:57 PM   #1
KillahBeez
LQ Newbie
 
Registered: Aug 2014
Posts: 1

Rep: Reputation: Disabled
Cannot access Network in Kali Linux!!!!!!!!!


Hello all,

Please please please help me with the following issue. I've been searching for HOURS on how to solve this, but no one can provide me with a specific solution. Please explain it to me like I'm completely new to linux. (I'm not).

Im running Kali Linux off of a bootable USB on my laptop. It is a fresh install. It says "No network devices available." There is no network management application. I cannot install the wicd-client because I have no internet access to download it! And I cannot discover or connect to any Wireless Networks!

When I type in iwconfig it says: no wireless extensions.

For some reason Kali is not using my wireless card and or running the drivers to enable network discovery. How can I fix this?
 
Old 08-11-2014, 07:16 PM   #2
notKlaatu
Senior Member
 
Registered: Sep 2010
Location: Lawrence, New Zealand
Distribution: Slackware
Posts: 1,077

Rep: Reputation: 732Reputation: 732Reputation: 732Reputation: 732Reputation: 732Reputation: 732Reputation: 732
Technically, it could be as simple as listing your network interfaces:

Code:
ifconfig
..and then look through the list to see what your wireless card is called; let's say it's wlan0:

Code:
ifconfig wlan0 up
and then connect:
Code:
iwconfig wlan0 essid "myEssidName" 
dhclient wlan0
This assumes that you have no encryption on the wireless network you are attaching to; that is usually best when troubleshooting.

However, you might need a driver, or possibly firmware for the network card.

What network card does the computer have? To find out, run this command as root:

Code:
lspci
Somewhere in there, you should see a network device; use that result to find out what driver to use:
http://wireless.kernel.org/en/users/Devices

Then it's just a matter of downloading that driver and/or firmware, installing, and using (as above).

I don't know what you intend to use Kali for, but I'm thinking you probably want to AVOID auto-detection (Network Manager) since when you are pentesting, it's better to maintain control of your network interfaces, rather than passing them off to wicd or nm. It's just a lot more flexible that way.
 
Old 08-11-2014, 07:38 PM   #3
evo2
LQ Guru
 
Registered: Jan 2009
Location: Japan
Distribution: Mostly Debian and CentOS
Posts: 6,724

Rep: Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705
Hi,
Quote:
Originally Posted by KillahBeez View Post
When I type in iwconfig it says: no wireless extensions.
This is the starting point, no wirless device is seen. What exactly is the wireless device? If it is a pci device, the output should tell us:
Code:
lspci -vvv  |grep -A 10 -i net
Evo2.
 
Old 08-11-2014, 08:01 PM   #4
John VV
LQ Muse
 
Registered: Aug 2005
Location: A2 area Mi.
Posts: 17,627

Rep: Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651
you do know that the kali devs have set networking to the OFF position
you have to turn it ON
http://docs.kali.org/

and read the troubleshooting section
http://docs.kali.org/troubleshooting...-driver-issues

Quote:
Please please please help me with the following issue. I've been searching for HOURS
i take it you did not look on the Kali forum ?
on the kali website .

http://www.kali.org/community/
http://forums.kali.org/

also please READ the section in the documentation
"Should I use Kali"
http://docs.kali.org/introduction/sh...use-kali-linux

and pay attention to the section
"Is Kali Linux Right For You?"

Last edited by John VV; 08-11-2014 at 08:03 PM.
 
4 members found this post helpful.
Old 08-11-2014, 08:31 PM   #5
evo2
LQ Guru
 
Registered: Jan 2009
Location: Japan
Distribution: Mostly Debian and CentOS
Posts: 6,724

Rep: Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705
Hi,
Quote:
Originally Posted by John VV View Post
and read the troubleshooting section
http://docs.kali.org/troubleshooting...-driver-issues
That is a very nice little guide. It seems the Kali documentation is quite good - I'll be sure to refer Kali users to it in the future.

Cheers,

Evo2.
 
1 members found this post helpful.
Old 08-11-2014, 08:57 PM   #6
John VV
LQ Muse
 
Registered: Aug 2005
Location: A2 area Mi.
Posts: 17,627

Rep: Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651
The docs are good
Arch's are better but kali is not Arch

and my position on kali is basically

If one has to ask basic question and not one on a ruby gem for fuzzing something , then one should not be using it .
 
1 members found this post helpful.
Old 08-14-2014, 01:41 PM   #7
widget
Senior Member
 
Registered: Oct 2008
Location: S.E. Montana
Distribution: Debian Testing, Stable, Sid and Manjaro, Mageia 3, LMDE
Posts: 2,628

Rep: Reputation: 497Reputation: 497Reputation: 497Reputation: 497Reputation: 497
Quote:
Originally Posted by John VV View Post
you do know that the kali devs have set networking to the OFF position
you have to turn it ON
http://docs.kali.org/

and read the troubleshooting section
http://docs.kali.org/troubleshooting...-driver-issues


i take it you did not look on the Kali forum ?
on the kali website .

http://www.kali.org/community/
http://forums.kali.org/

also please READ the section in the documentation
"Should I use Kali"
http://docs.kali.org/introduction/sh...use-kali-linux

and pay attention to the section
"Is Kali Linux Right For You?"
I too must thank you for those links. Will keep them in mind.

See a lot of people using Kali. Suspect most are trying to be leet and are probably people that run Windows as Administrator. Really scary.

Thanks again.
 
Old 08-19-2015, 09:46 AM   #8
Diablo3511
LQ Newbie
 
Registered: Aug 2015
Posts: 2

Rep: Reputation: Disabled
Exclamation hi guys new to forms please be patient

I installed kali linux on my lenovo g570 and the fresh install was perfect
After updating the system with apt get update and upgrade the whole interface changed
And for some reason I cant get access to a network. There is no icon in the upper right
And if I open the networks tab it tels me that it is not compatible with the current version
I have been trolling the web on my phone for hours now and dont seem to get any where
I have tried starting the network service in the startup and resetting but still no success
My version of linux is just kali-rolling
 
Old 08-20-2015, 04:15 AM   #9
Randicus Draco Albus
Senior Member
 
Registered: May 2011
Location: Hiding somewhere on planet Earth.
Distribution: No distribution. OpenBSD operating system
Posts: 1,711
Blog Entries: 8

Rep: Reputation: 635Reputation: 635Reputation: 635Reputation: 635Reputation: 635Reputation: 635
Have you looked at the /etc/network/interfaces file? Since Kali is a modified Debian, it should have that file. Since you are using Kali, I assume you know how to edit that file to set up a network connection.
 
Old 08-20-2015, 04:37 AM   #10
Diablo3511
LQ Newbie
 
Registered: Aug 2015
Posts: 2

Rep: Reputation: Disabled
Yes I tried that but no success . But its fine I installed kali 2.0 now and its all running now . It looks like debian3 had a issue with the network manager version .
But thanx for the quick reply
 
  


Closed Thread



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
Problems in Kali Linux 1.0.7 criztian Linux - Newbie 2 06-18-2014 09:50 AM
LXer: How safe is your network? – Kali Tutorial LXer Syndicated Linux News 0 09-09-2013 09:00 AM
kali linux iceman81 Linux - Newbie 3 09-03-2013 03:45 PM
Kali Linux in VirtualBox starcityque Linux - Newbie 3 04-19-2013 11:23 AM
Ubuntu 8.04 in mixed Mac & Windows network Internet access but no access to network. traveller7 Linux - Networking 1 01-10-2009 07:53 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Debian

All times are GMT -5. The time now is 05:33 PM.

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