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

Notices


Reply
  Search this Thread
Old 08-28-2018, 02:28 AM   #1
spi!
LQ Newbie
 
Registered: Aug 2018
Posts: 5

Rep: Reputation: Disabled
Question I created USB persistent, but I cannot create WiFi network SSID...


I created USB persistent, but I cannot create WiFi network, in other linux (ubuntu, Mint etc), automatic display: name SSID WiFi, what happen? I found Network, but cannot display connect, what can I do?
 
Old 08-28-2018, 04:53 AM   #2
business_kid
LQ Guru
 
Registered: Jan 2006
Location: Ireland
Distribution: Slackware, Slarm64 & Android
Posts: 16,484

Rep: Reputation: 2361Reputation: 2361Reputation: 2361Reputation: 2361Reputation: 2361Reputation: 2361Reputation: 2361Reputation: 2361Reputation: 2361Reputation: 2361Reputation: 2361
Are you connecting to an existing SSID, or setting up a WiFi hotspot? Your post is very unclear. Please provide hardwarte & box info.
 
Old 08-28-2018, 07:53 AM   #3
spi!
LQ Newbie
 
Registered: Aug 2018
Posts: 5

Original Poster
Rep: Reputation: Disabled
Exclamation I have an existing SSID(like in ubuntu and mint): Qualcomm Atheros AR9485 802.11b/g/n WiFi Adapter...

I have an existing SSID(like in ubuntu and mint): Qualcomm Atheros AR9485 802.11b/g/n WiFi Adapter...
 
Old 08-28-2018, 08:01 AM   #4
business_kid
LQ Guru
 
Registered: Jan 2006
Location: Ireland
Distribution: Slackware, Slarm64 & Android
Posts: 16,484

Rep: Reputation: 2361Reputation: 2361Reputation: 2361Reputation: 2361Reputation: 2361Reputation: 2361Reputation: 2361Reputation: 2361Reputation: 2361Reputation: 2361Reputation: 2361
So you're trying to connect?
 
Old 08-28-2018, 08:34 AM   #5
spi!
LQ Newbie
 
Registered: Aug 2018
Posts: 5

Original Poster
Rep: Reputation: Disabled
Question Yes, but SSID there is not display(appears) like in Ubuntu and Mint, how appears? from Menu? command line? I see 6-7 SSID from Ubuntu and M

Yes, but SSID there is not display(appears) like in Ubuntu and Mint, how appears? from Menu? command line?

I see 6-7 SSID from Ubuntu and Mint...
 
Old 08-28-2018, 09:58 AM   #6
BW-userx
LQ Guru
 
Registered: Sep 2013
Location: Somewhere in my head.
Distribution: Slackware (15 current), Slack15, Ubuntu studio, MX Linux, FreeBSD 13.1, WIn10
Posts: 10,342

Rep: Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242
have you ran some cli command to see if your nic is up and running?
Code:
ip link 
ip link set wlan0 up
------
rfkill list all : to make sure nothing is blocked.
ip commands cheat sheet
https://access.redhat.com/sites/defa..._jcs_print.pdf

a script I wrote a long time ago that can get your wifi info and connected off command line, may need further modification, that depends on what network tools you have installed.

I already made the change from ifconfig to ip changes.
Code:
#!/bin/bash

#your wifi connection hardware name. it wlan0, wlo1 etc
wifiHW=wlo1

whatsmyline(){
echo ""
echo " mac                 essid                 key"

sudo iwlist wlan0 scan | while IFS= read -r line; do

    ## test line contents and parse as required
    [[ "$line" =~ Address ]] && mac=${line##*ss: }
    [[ "$line" =~ Encrypt ]] && key=${line##*key:}
    [[ "$line" =~ ESSID ]] && { essid=${line##*ID:}
        echo " $mac  $essid  $key"  #Prints all connections 
    } #end read

done
}

whatsmyIPconnection() {
	ip link | while ISF= read -r line ; do
	#test for wifi example
	if 	[[ "$line" =~ "$wifiHW" ]] && [[ "$line" =~ UP ]] ; 
	then
		echo "connection UP"
	else
		sudo ip link set "$wifiHW" up
	fi
done
}
whatsmyIPconnection

getConnected(){
	
	
	sudo iwconfig "$wifiHW" essid "$essid" key "$key"	
	
}

Last edited by BW-userx; 08-28-2018 at 10:23 AM.
 
Old 08-28-2018, 01:57 PM   #7
fatmac
LQ Guru
 
Registered: Sep 2011
Location: Upper Hale, Surrey/Hants Border, UK
Distribution: Mainly Devuan, antiX, & Void, with Tiny Core, Fatdog, & BSD thrown in.
Posts: 5,532

Rep: Reputation: Disabled
Also check that your kernel is loading the driver for your wifi card.

Code:
lsmod
 
  


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
Printer ssid, pw wifi setup using usb cable to talk to printer linux os. pgaboria Linux - Networking 8 11-20-2017 07:05 AM
Which distros have live USB Isos with built in WiFi support that are persistent? kudsu Linux - Networking 8 05-03-2017 03:11 PM
Connman and WiFi network with multiple AP and same SSID RonanG Linux - Networking 1 04-05-2016 02:09 AM
How to create a persistent live USB darksyde Linux - Software 2 04-20-2010 03:13 PM
capture SSID of wifi network powah Linux - Software 7 09-01-2005 07:14 PM

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

All times are GMT -5. The time now is 01:31 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