LinuxQuestions.org
Help answer threads with 0 replies.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware
User Name
Password
Slackware This Forum is for the discussion of Slackware Linux.

Notices


Reply
  Search this Thread
Old 02-28-2018, 05:27 AM   #1
ReallyAnnoyedAboutWifi
LQ Newbie
 
Registered: Feb 2018
Location: İstanbul
Distribution: Slackware
Posts: 7

Rep: Reputation: Disabled
Slackware Wireless Error


Hi there

I have installed slackware and i like it. However after the upgrade I can't connect my wireless network and I didn't install wicd. While using the iwconfig, i have been getting "set encode invalid arguments" error while I add "s:" prefix. Also I'm trying to use wpa_dupplicant but I get some errors like ioctl[SIOCSIWSCAN]: invalid arguments. What can I do for it?

Thank you
 
Old 02-28-2018, 05:52 AM   #2
Lysander666
Senior Member
 
Registered: Apr 2017
Location: The Underearth
Distribution: Ubuntu, Debian, Slackware
Posts: 2,178
Blog Entries: 6

Rep: Reputation: 2470Reputation: 2470Reputation: 2470Reputation: 2470Reputation: 2470Reputation: 2470Reputation: 2470Reputation: 2470Reputation: 2470Reputation: 2470Reputation: 2470
Merhaba. In the absence of a better reply, I'll attempt some semblance of assistance. You say - after the upgrade you can't connect - which upgrade is this? Or do you mean after the installation? Are you using DHCP or Network Manager?
 
Old 02-28-2018, 06:07 AM   #3
ReallyAnnoyedAboutWifi
LQ Newbie
 
Registered: Feb 2018
Location: İstanbul
Distribution: Slackware
Posts: 7

Original Poster
Rep: Reputation: Disabled
Merhaba

This the post-install upgrade and I'm using DHCP but I'm not sure about am I should use in this way.
 
Old 02-28-2018, 06:12 AM   #4
Lysander666
Senior Member
 
Registered: Apr 2017
Location: The Underearth
Distribution: Ubuntu, Debian, Slackware
Posts: 2,178
Blog Entries: 6

Rep: Reputation: 2470Reputation: 2470Reputation: 2470Reputation: 2470Reputation: 2470Reputation: 2470Reputation: 2470Reputation: 2470Reputation: 2470Reputation: 2470Reputation: 2470
Try

Code:
netconfig
Select Network Manager, reboot and see if that helps.
 
Old 02-28-2018, 09:23 AM   #5
ReallyAnnoyedAboutWifi
LQ Newbie
 
Registered: Feb 2018
Location: İstanbul
Distribution: Slackware
Posts: 7

Original Poster
Rep: Reputation: Disabled
I haven't try but I have to say I can't access x.org for now. So should I switch it to the network manager?
 
Old 02-28-2018, 09:28 AM   #6
Lysander666
Senior Member
 
Registered: Apr 2017
Location: The Underearth
Distribution: Ubuntu, Debian, Slackware
Posts: 2,178
Blog Entries: 6

Rep: Reputation: 2470Reputation: 2470Reputation: 2470Reputation: 2470Reputation: 2470Reputation: 2470Reputation: 2470Reputation: 2470Reputation: 2470Reputation: 2470Reputation: 2470
Quote:
Originally Posted by ReallyAnnoyedAboutWifi View Post
I haven't try but I have to say I can't access x.org for now. So should I switch it to the network manager?
Try it! Can you access your desktop?

Code:
#nmtui-connect
Can help you connect to your router. I'll wait for someone else more knowledgeable than I to help out more.

Last edited by Lysander666; 02-28-2018 at 09:31 AM.
 
1 members found this post helpful.
Old 02-28-2018, 10:01 AM   #7
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
here is a script I wrote awhile ago to get wifi up and running and hooked up, you're going to need to make it conform to your service provider name, you could even mod it to take in information from the command line if you like, and or know how to.

Code:
$ cat Dropbox/linux/upwifi
#!/bin/bash
#device name
sudo ifconfig wlan0 up
#list providers
#sudo  iwlist wlan0 scan
#set a provider to the device
sudo iwconfig wlan0  essid "service provider name" key "off"
because I have some time to kill.
Quote:
I have installed slackware and i like it. However after the upgrade I can't connect my wireless network and I didn't install wicd. While using the iwconfig, i have been getting "set encode invalid arguments" error while I add "s:" prefix. Also I'm trying to use wpa_dupplicant but I get some errors like ioctl[SIOCSIWSCAN]: invalid arguments. What can I do for it?
I assume you've already made
rc.networkmanager an executable, yes?
then ran the command to bring up the network.
Code:
su
password
/etc/rc.d/rc.networkmanager start
# i always run this next for good mesure
/etc/rc.d/rc.networkmanager restart
# then start up my desktop, this is on a fresh install.
# nevertheless ./etc/rc.d/rc.networkmanager needs to be 
#made executable and started, or you'll get no where.
then find your service provider even if it is you, off your router in your house, then add that to that script then run it. it should hook you up if you have the needed information in the script, or just do all of that off the command line instead. as root or sudo.

or make /etc/rc.d/rc.networkmanager executable, start it, then start your window manager and let networkmanager take it from there.

note: after it is made executable, every time you boot up it will start during that process afterwards.

deviating from the norm can cause issues as you have clearly found out.

Last edited by BW-userx; 02-28-2018 at 10:24 AM.
 
2 members found this post helpful.
Old 02-28-2018, 10:48 AM   #8
ReallyAnnoyedAboutWifi
LQ Newbie
 
Registered: Feb 2018
Location: İstanbul
Distribution: Slackware
Posts: 7

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by Lysander666 View Post
Try it! Can you access your desktop?

Code:
#nmtui-connect
Can help you connect to your router. I'll wait for someone else more knowledgeable than I to help out more.
Its worked! Thank you. I have consume the times with trying connect.
 
Old 02-28-2018, 10:50 AM   #9
ReallyAnnoyedAboutWifi
LQ Newbie
 
Registered: Feb 2018
Location: İstanbul
Distribution: Slackware
Posts: 7

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by BW-userx View Post
here is a script I wrote awhile ago to get wifi up and running and hooked up, you're going to need to make it conform to your service provider name, you could even mod it to take in information from the command line if you like, and or know how to.

Code:
$ cat Dropbox/linux/upwifi
#!/bin/bash
#device name
sudo ifconfig wlan0 up
#list providers
#sudo  iwlist wlan0 scan
#set a provider to the device
sudo iwconfig wlan0  essid "service provider name" key "off"
because I have some time to kill.

I assume you've already made
rc.networkmanager an executable, yes?
then ran the command to bring up the network.
Code:
su
password
/etc/rc.d/rc.networkmanager start
# i always run this next for good mesure
/etc/rc.d/rc.networkmanager restart
# then start up my desktop, this is on a fresh install.
# nevertheless ./etc/rc.d/rc.networkmanager needs to be 
#made executable and started, or you'll get no where.
then find your service provider even if it is you, off your router in your house, then add that to that script then run it. it should hook you up if you have the needed information in the script, or just do all of that off the command line instead. as root or sudo.

or make /etc/rc.d/rc.networkmanager executable, start it, then start your window manager and let networkmanager take it from there.

note: after it is made executable, every time you boot up it will start during that process afterwards.

deviating from the norm can cause issues as you have clearly found out.
Thank you too but I had some problems with iwlist/iflist. They aren't a good choise I think.
 
Old 02-28-2018, 10:53 AM   #10
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
Quote:
Originally Posted by ReallyAnnoyedAboutWifi View Post
Thank you too but I had some problems with iwlist/iflist. They aren't a good choise I think.
let me bounce out of WMaker and run my script, get right back to you...
 
Old 02-28-2018, 11:01 AM   #11
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
you're still on run level 3 yes?
Code:
xwmconfig
#select twm
startx
run that script, then start your firefox in the term and I have no idea how you log in if you have to or not, that part you'll have to figure out on your own.

but I am up and running.

Last edited by BW-userx; 02-28-2018 at 11:05 AM.
 
Old 02-28-2018, 01:08 PM   #12
ReallyAnnoyedAboutWifi
LQ Newbie
 
Registered: Feb 2018
Location: İstanbul
Distribution: Slackware
Posts: 7

Original Poster
Rep: Reputation: Disabled
I had done it. There is no need to something. Thank you anyway.
 
Old 02-28-2018, 01:30 PM   #13
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
now that you've fixed you wifi issue are you considering changing your user name?
ReallyAnnoyedAboutWifi to ????
 
Old 03-01-2018, 04:31 AM   #14
Lysander666
Senior Member
 
Registered: Apr 2017
Location: The Underearth
Distribution: Ubuntu, Debian, Slackware
Posts: 2,178
Blog Entries: 6

Rep: Reputation: 2470Reputation: 2470Reputation: 2470Reputation: 2470Reputation: 2470Reputation: 2470Reputation: 2470Reputation: 2470Reputation: 2470Reputation: 2470Reputation: 2470
Quote:
Originally Posted by ReallyAnnoyedAboutWifi View Post
Its worked! Thank you. I have consume the times with trying connect.
Çok güzel.

Quote:
Originally Posted by BW-userx View Post
now that you've fixed you wifi issue are you considering changing your user name?
ReallyAnnoyedAboutWifi to ????
NotReallyAnnoyedAboutWifi? ReallyAnnoyedAboutWifiNoLonger? IHaveMadePeaceWithWifi?

Unless he's always really annoyed about wifi.
 
Old 03-01-2018, 08:06 AM   #15
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
Quote:
Originally Posted by Lysander666 View Post
Çok güzel.



NotReallyAnnoyedAboutWifi? ReallyAnnoyedAboutWifiNoLonger? IHaveMadePeaceWithWifi?

Unless he's always really annoyed about wifi.
stands looking at pc wondering where to plug the network cable in . I'd get annoyed too. I suppose.
 
1 members found this post helpful.
  


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
Slackware Wireless Error ReallyAnnoyedAboutWifi Slackware 1 02-28-2018 05:34 AM
[SOLVED] Slackware wireless networking setup w/Broadcom Wireless BCM4311 NIC on HP DV9000 astanton Slackware 14 12-30-2010 07:37 PM
Slackware 13 - PHY transmission error for wireless networking novat0 Slackware 0 02-20-2010 04:59 AM
error installing sierra wireless card driver Slackware 12.2 masmddr Linux - Hardware 1 09-14-2009 06:52 AM
Wireless Configuration Slackware 12.2 - wpa_supplicant error - Intel 4965 Do7AN Slackware 4 01-19-2009 11:25 PM

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

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