Forum Replies Created
-
Posted in: Abacus AroioDAC made in Germany
-
13. Januar 2016 at 5:04 #17824
Hi Alex:
Sorry I got busy.
Last evening I downloaded and compiled a „hostapd“ version using software from Realtek the makers of the RTL8188CUS chip in the Edimax.
This is a another attempt at getting a hostapd that works.To try it follow the recipe
1. Burn a new image. 2. Expand it. 3. Update M2P. 4. Increase the USB current via the raspberry plug in (not really necessary yet) 5. Plug in the wifi dongle. 6. install wifi. 7. install access-point. 8. remove power and then apply power. 9. login to the PI and execute these commands: cd /usr/sbin sudo rm -f hostapd sudo wget https://www.dropbox.com/s/jqbwtzxmstt9zvr/hostapd sudo chown root:root hostapd sudo chmod 755 hostapd sudo service networking restart sudo service hostapd restart
1. on your IOS device, set-up -> wifi should show an available network with SSID “max2play” (or whatever you set it to) 2. Try to connect to this network, if you get an error, “forget” the network, and re-try (you will prompted for password in this case). 3. If connected, on the IOS device use safari or chrome and browse the PI at: http://192.168.189.1/ , you should see the max2play page.
If you see the web page then access point is successfully installed.
12. Januar 2016 at 19:19 #17807re copy and paste:
On your PC search and download a program called putty.exe. It’s a nice simple standalone executable.
run it and select the „ssh“ connection type. Type in the IP address of the PI, and hit open. Accept the key and log in.
You should be able to copy and paste from the putty window, by selecting the text from the putty window (to copy), and then hitting Ctrl-V
(to paste) in another window.Are you saying that:
Ioctl[RTL_IOCTL_HOSTAPD]: Invalid argument
is the only response from that command?12. Januar 2016 at 16:33 #17802Thanks for the link, it appears that many people struggle with getting access-point working.
Looks like we have the correct hostapd program for your edimax dongle, we confirmed yesterday that the access-point plug-in detected it.
OK Two things:
– Yesterday you mentioned a glitch while installing the accesspoint plug-in
ALEX: "This is a bit worrying, it started to d/l then the page just cleared, so I hit the back button..."
I’m not sure if that would have messed things up or not. perhaps a retry?
– At this point since hostapd is running but not working, we really need to look at the debug output from that program.
You say that you cannot cut and paste? What are the issues there?
The output that would be of interest is that generated by (after access-point installation and reboot):sudo /etc/init.d/hostapd stop sudo /usr/sbin/hostapd /etc/hostapd/hostapd.conf -d | less
The first line stops hostapd daemon and the second line runs it interactively with debug output.
Even more debug output can be obtained by running with the option „-dd“ rather than „-d“.11. Januar 2016 at 16:32 #17727Alex:
No problem… I hoped you wouldn’t bother last night.
So, after you get a chance to try that. I had another thought … you EDIMAX dongle „should“ simply work. Maybe your download image is somehow corrupt. It wouldn’t hurt to try re-downloading the image and simply trying it.
11. Januar 2016 at 0:08 #17711after work tomorrow try this alternate hostapd, it for the EDIMAX
sudo /etc/init.d/hostapd stop sudo perl -i.orig -p -e 's/driver=nl80211/driver=rtl871xdrv/' /etc/hostapd/hostapd.conf cd /usr/sbin sudo rm -f hostapd sudo wget http://www.daveconroy.com/wp3/wp-content/uploads/2013/07/hostapd.zip sudo unzip hostapd.zip sudo chown root:root hostapd sudo chmod 755 hostapd sudo service networking restart sudo service hostapd restart sudo apt-get install iw sudo iw wlan0 info
10. Januar 2016 at 22:44 #17697okay here goes…if it gets messed up we lose nothing just reflash (LOL).
/etc/init.d/hostapd stop sudo perl -i.orig -p -e 's/driver=nl80211/driver=rtl871xdrv/' /etc/hostapd/hostapd.conf cd /usr/sbin sudo rm -f hostapd sudo wget http://dl.dropbox.com/u/1663660/hostapd/hostapd sudo chown root:root hostapd sudo chmod 755 hostapd sudo service networking restart sudo service hostapd restart iw wlan0 info
hopefully it says that you are AP mode
- This reply was modified 8 years, 10 months ago by noop.
-