- My Blog
- For reference
- Install hostapd
- Install Mercury’s MW150UH/300UH WiFi USB Adapter driver on Unbunt 18.04
- Contents
- Mercury MW150UH
- Mercury MW300UH
- N150 Nano Wi-Fi USB-адаптер
- Обзор
- Ваш карманный Wi-Fi
- Миниатюрный размер
- Скорость Wi-Fi до 150 Мбит/с
- Простая настройка
- Операционная система
- Спецификации
- My Blog
- For reference
- Install hostapd
- Install Mercury’s MW150UH/300UH WiFi USB Adapter driver on Unbunt 18.04
- Contents
- Mercury MW150UH
- Mercury MW300UH
My Blog
The wifi dongle cannot be recognized by command lsusb and lsusb, found the chipset of MW150US is rtl8188eu, not rtl8192cu, it is very important.
My RPi kernel is 3.2.27+, it is need to compile module rtl8188eu with RPi source code.
Procedure as below
Get rtl8188eu source code from http://gutspot.com/wp-content/uploads/2013/01/8188eu_USB_linux.zip
unzip the file and go to directory driver
# make && make install
In my case, it’s all. The module rtl8188eu has been load into RPi, MW150US WIFI dongle can be recognized.
If it does not work, try the following method,
sudo nano /etc/network/interfaces
sudo nano /etc/wpa_supplicant/wpa_supplicant.conf
Join WIFI network by running from command prompt with wpa_cli
For reference
script for auto-start wifi connection(Optional) /etc/init.d/wifi-connect
Install hostapd
- unzip wpa_supplicant_hostapd-0.8_rtw_20120803.zip
go to directory hostapd and compile
make && make install
should not start hostapd by /etc/init.d/hostapd start just run
/usr/local/bin/hostapd p2p_hostapd.conf -B
then hostapd started with ssid DIRECT-RT - config IP address
ifconfig wlan0 192.168.0.1 netmask 255.255.255.0 (the segment should be match with udhcp)
sudo apt-get udhcpd
/etc/init.d/udhcp start
Open your mobile’s wifi to search ssid “DIRECT-RT” and pair with it using pasword “12345678”, it will obtain the IP adddress dynamically.
Источник
Install Mercury’s MW150UH/300UH WiFi USB Adapter driver on Unbunt 18.04
Contents
The MW150UH/MW300UH 11N Wireless USB Adapters auto-sensing capability allows high packet transfer rateof up to 150Mbps/300Mbps for maximum throughput. It has good capability on anti-jamming; it can alsointeroperate with other wireless products. The adapter supports WEP, WPA and WPA2 encryptionto prevent outside intrusion and protect your personal information from being exposed. But we can only download the Window verison drives for them from official website. But How to make enable the wifi adapters on Ubuntu 18.04.You can follow the steps below.
Mercury MW150UH
Mercury MW150U Wifi USB adapter includes embedded the chip of Realtek RTL8188CE, you can install it instead.
Save the Downloaded zip file and extract the Driver package.
Type “make all && sudo make install» the driver package will start compiling.
Mercury MW300UH
Mercury MW300UH Wifi USB adapter includes embedded the chip of REALTEK RTL-8192EU, So we can install rtl8192eu-linux-driver on Ubuntu 18.04. The Linux Driver at Mange/rtl8192eu-linux-driver is one of the only working driver packages for the Realtek 8192eu chipset WiFi Adapters.
Just go to the main page here and click on the Green “clone or download” button.
Save the Downloaded zip and Extract the package, cd to the directory.
Sudo make && Sudo make install in the terminal and press “Enter” and the driver package will start compiling.
If you have upgraded to Linux kernel >= 4.9.x and the RTL8192EU has stopped working. do the following:
- Open +“/etc/modules” from Root File Manager by a text-editor (Leafpad, Gedit. etc..)
- Add an entry “8192eu” without the quotation marks to the “etc/modules” above.
- Recompile the driver using “sudo make && sudo make install” as in Step-3 above:
- Reboot and the RTL8192EU will start working.
Источник
N150 Nano Wi-Fi USB-адаптер
Обзор
Ваш карманный Wi-Fi
N150 Wi-Fi Nano USB-адаптер
MW150 US
Миниатюрный размер
Благодаря компактному размеру MW150US можно с лёгкостью использовать в любом месте — дома или в поездке. Просто подключите его к USB-порту вашего ПК — и наслаждайтесь скоростным интернет-соединением.
Скорость Wi-Fi до 150 Мбит/с
Компактный адаптер позволит подключаться к Wi-Fi со скоростью до 150 Мбит/с, обеспечивая удобный браузинг в интернете, быструю загрузку файлов и IP-телефонию.
Простая настройка
Удобная утилита для установки
на компакт-диске
Операционная система
* Максимальная скорость беспроводного сигнала — это физический максимум согласно спецификациям стандарта IEEE 802.11. Фактическая пропускная способность беспроводной сети и покрытие беспроводной сети не гарантируются и будут варьироваться в зависимости от 1) факторов окружающей среды, включая строительные материалы, физические объекты и препятствия в помещении 2) условий сети, включая локальные помехи, объем и плотность трафика, местоположение продукта, сложность сети и её загруженность 3) ограничения клиента, включая номинальную производительность, местоположение, соединение, качество и состояние клиента.
Спецификации
11n: до 150 Мбит/с (динамически)
11g: до 54 Мбит/с (динамически)
11b: до 11 Мбит/с (динамически)
130M: -68дБм@10% PER
108M: -68дБм@10% PER
54M: -68дБм@10% PER
Защита беспроводной сети WEP, WPA/WPA2, WPA-PSK/WPA2-PSK Аппаратные Размеры (Ш × Д × В)
18.9 × 14.8 × 6.85 мм
Интерфейсы USB 2.0 Тип антенны
Прочее Сертификация CE, ROHS Комплект поставки
Источник
My Blog
The wifi dongle cannot be recognized by command lsusb and lsusb, found the chipset of MW150US is rtl8188eu, not rtl8192cu, it is very important.
My RPi kernel is 3.2.27+, it is need to compile module rtl8188eu with RPi source code.
Procedure as below
Get rtl8188eu source code from http://gutspot.com/wp-content/uploads/2013/01/8188eu_USB_linux.zip
unzip the file and go to directory driver
# make && make install
In my case, it’s all. The module rtl8188eu has been load into RPi, MW150US WIFI dongle can be recognized.
If it does not work, try the following method,
sudo nano /etc/network/interfaces
sudo nano /etc/wpa_supplicant/wpa_supplicant.conf
Join WIFI network by running from command prompt with wpa_cli
For reference
script for auto-start wifi connection(Optional) /etc/init.d/wifi-connect
Install hostapd
- unzip wpa_supplicant_hostapd-0.8_rtw_20120803.zip
go to directory hostapd and compile
make && make install
should not start hostapd by /etc/init.d/hostapd start just run
/usr/local/bin/hostapd p2p_hostapd.conf -B
then hostapd started with ssid DIRECT-RT - config IP address
ifconfig wlan0 192.168.0.1 netmask 255.255.255.0 (the segment should be match with udhcp)
sudo apt-get udhcpd
/etc/init.d/udhcp start
Open your mobile’s wifi to search ssid “DIRECT-RT” and pair with it using pasword “12345678”, it will obtain the IP adddress dynamically.
Источник
Install Mercury’s MW150UH/300UH WiFi USB Adapter driver on Unbunt 18.04
Contents
The MW150UH/MW300UH 11N Wireless USB Adapters auto-sensing capability allows high packet transfer rateof up to 150Mbps/300Mbps for maximum throughput. It has good capability on anti-jamming; it can alsointeroperate with other wireless products. The adapter supports WEP, WPA and WPA2 encryptionto prevent outside intrusion and protect your personal information from being exposed. But we can only download the Window verison drives for them from official website. But How to make enable the wifi adapters on Ubuntu 18.04.You can follow the steps below.
Mercury MW150UH
Mercury MW150U Wifi USB adapter includes embedded the chip of Realtek RTL8188CE, you can install it instead.
Save the Downloaded zip file and extract the Driver package.
Type “make all && sudo make install» the driver package will start compiling.
Mercury MW300UH
Mercury MW300UH Wifi USB adapter includes embedded the chip of REALTEK RTL-8192EU, So we can install rtl8192eu-linux-driver on Ubuntu 18.04. The Linux Driver at Mange/rtl8192eu-linux-driver is one of the only working driver packages for the Realtek 8192eu chipset WiFi Adapters.
Just go to the main page here and click on the Green “clone or download” button.
Save the Downloaded zip and Extract the package, cd to the directory.
Sudo make && Sudo make install in the terminal and press “Enter” and the driver package will start compiling.
If you have upgraded to Linux kernel >= 4.9.x and the RTL8192EU has stopped working. do the following:
- Open +“/etc/modules” from Root File Manager by a text-editor (Leafpad, Gedit. etc..)
- Add an entry “8192eu” without the quotation marks to the “etc/modules” above.
- Recompile the driver using “sudo make && sudo make install” as in Step-3 above:
- Reboot and the RTL8192EU will start working.
Источник