(Created page with "==[http://www.mejoresdepositosbancarios.info/ Mejores depositos bancarios]== Four Tips to Frame a Palmy Portfolio Locomotion finished the financial maze of stocks, bonds and ...")
 
m (TP-Link Archer T4U AC1200 Wireless Dual Band USB Adapter Linux Drivers)
 
(3 intermediate revisions by one user not shown)
Line 1: Line 1:
==[http://www.mejoresdepositosbancarios.info/ Mejores depositos bancarios]==
 
Four Tips to Frame a Palmy Portfolio
 
  
Locomotion finished the financial maze of stocks, bonds and shared finances can be quite a contend. Land Century Investments offers the stalking tips to utilise you the know-how on building a remunerative portfolio.
+
=== TP-Link Archer T4U AC1200 Wireless Dual Band USB Adapter Linux Drivers ===
  
* See your goals. Study how untold money you'll need for your children's pedagogy or your retirement. Whatever your exteroception for the upcoming mightiness be, set your goals and produce a tangible thought for converging them.
+
Internal photos of the [http://www.tp-link.com/en/products/details/?categoryid=3212&model=Archer+T4U TP-Link Archer T4U] Wireless Adapter lodged with the [https://apps.fcc.gov/oetcf/eas/reports/ViewExhibitReport.cfm?mode=Exhibits&RequestTimeout=500&calledFromFrame=N&application_id=311350&fcc_id=TE7T4U FCC] shows this device consists of a RealTek RTL8812au chipset.
  
* Define your investment experience skyline. If you're not thinking on unnoticeable anytime presently, you mightiness need to hump a portfolio that includes many long-term investments. If retirement is retributory around the carrefour, view a writer conventional formulation.
+
The T4U has a USB Vendor ID (VID) of 0x2357 and Product ID (PID) of 0x101.
  
* Cause your probability disposition. Image out your risk assuage construction and compare that with what you can open. In comprehensive, the person you bonk to spend, the bigger assay you can buy.
+
To date, the mainline Linux Kernel does not support this device, hence drivers need to be compiled manually.
  
* Inquire a professional. In position to refrain financial pitfalls afterward on, it is often perspicacious to act authority management when putting unitedly a portfolio.
+
One source for the drivers is Anand Babu (AB) Periasamy's git repository. Clone the source:
  
"Recent investigate shows that investors act to grapple with few of the most primary assets concepts, suggesting a greater necessary for business advice and content," said Doug Lockwood, a certifiable business somebody.
+
<PRE>
 +
git clone https://github.com/abperiasamy/rtl8812AU_8821AU_linux.git
 +
cd rtl8812AU_8821AU_linux/
 +
</PRE>
  
To service investors fulfill their financial goals, Earth Century Investments has industrial On Plan Investing, a package intentional to support investors develop and defend distributed promotion portfolios - at no further value.
+
TP-Link T4U's USB VID and PID has not yet been included. Edit op_dep/linux/usb_intf.c and add the following line to the bottom of the CONFIG_RTL8812A #ifdef section.  
  
Combine educational tools, advice, marketplace intuition and finance products, On Guidance Investment helps investors improve a individualised investment strategy, whether they are new to finance, hunting message but solace want suppress over their assets mix, beggary forbear orientating their portfolios with a long-term appearance or necessary supply savvy how the markets succeed.
+
<PRE>
 +
{USB_DEVICE(0x2357, 0x0101),.driver_info = RTL8812}, /* TP-Link - T4U */
 +
</PRE>
 +
 
 +
Now you are ready to make and install the driver:
 +
 
 +
<PRE>
 +
make
 +
sudo make install
 +
</PRE>
 +
 
 +
At this stage, plugging in a T4U dongle should be detected and the appropriate driver loaded:
 +
 
 +
<PRE>
 +
[  57.083756] usb 1-1: new high-speed USB device number 2 using ehci-pci
 +
[  57.292224] usb 1-1: New USB device found, idVendor=2357, idProduct=0101
 +
[  57.292231] usb 1-1: New USB device strings: Mfr=1, Product=2, SerialNumber=3
 +
[  57.292234] usb 1-1: Product: 802.11n NIC
 +
[  57.292236] usb 1-1: Manufacturer: Realtek
 +
[  57.292238] usb 1-1: SerialNumber: 123456
 +
[  57.337273] cfg80211: Calling CRDA to update world regulatory domain
 +
[  57.486501] 8812au: module verification failed: signature and/or required key missing - tainting kernel
 +
[  57.507475] cfg80211: World regulatory domain updated:
 +
[  57.507480] cfg80211:  (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp)
 +
[  57.507482] cfg80211:  (2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
 +
[  57.507485] cfg80211:  (2457000 KHz - 2482000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
 +
[  57.507487] cfg80211:  (2474000 KHz - 2494000 KHz @ 20000 KHz), (300 mBi, 2000 mBm)
 +
[  57.507488] cfg80211:  (5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
 +
[  57.507490] cfg80211:  (5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
 +
[  61.711265] usbcore: registered new interface driver rtl8812au
 +
</PRE>

Latest revision as of 06:14, 12 July 2015

TP-Link Archer T4U AC1200 Wireless Dual Band USB Adapter Linux Drivers

Internal photos of the TP-Link Archer T4U Wireless Adapter lodged with the FCC shows this device consists of a RealTek RTL8812au chipset.

The T4U has a USB Vendor ID (VID) of 0x2357 and Product ID (PID) of 0x101.

To date, the mainline Linux Kernel does not support this device, hence drivers need to be compiled manually.

One source for the drivers is Anand Babu (AB) Periasamy's git repository. Clone the source:

git clone https://github.com/abperiasamy/rtl8812AU_8821AU_linux.git
cd rtl8812AU_8821AU_linux/

TP-Link T4U's USB VID and PID has not yet been included. Edit op_dep/linux/usb_intf.c and add the following line to the bottom of the CONFIG_RTL8812A #ifdef section.

	{USB_DEVICE(0x2357, 0x0101),.driver_info = RTL8812}, /* TP-Link - T4U */

Now you are ready to make and install the driver:

make
sudo make install

At this stage, plugging in a T4U dongle should be detected and the appropriate driver loaded:

[   57.083756] usb 1-1: new high-speed USB device number 2 using ehci-pci
[   57.292224] usb 1-1: New USB device found, idVendor=2357, idProduct=0101
[   57.292231] usb 1-1: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[   57.292234] usb 1-1: Product: 802.11n NIC
[   57.292236] usb 1-1: Manufacturer: Realtek
[   57.292238] usb 1-1: SerialNumber: 123456
[   57.337273] cfg80211: Calling CRDA to update world regulatory domain
[   57.486501] 8812au: module verification failed: signature and/or  required key missing - tainting kernel
[   57.507475] cfg80211: World regulatory domain updated:
[   57.507480] cfg80211:   (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp)
[   57.507482] cfg80211:   (2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[   57.507485] cfg80211:   (2457000 KHz - 2482000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[   57.507487] cfg80211:   (2474000 KHz - 2494000 KHz @ 20000 KHz), (300 mBi, 2000 mBm)
[   57.507488] cfg80211:   (5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[   57.507490] cfg80211:   (5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[   61.711265] usbcore: registered new interface driver rtl8812au