87 lines
2.2 KiB
Markdown
87 lines
2.2 KiB
Markdown
---
|
|
title: Hosting Bluesky PDS on my Server Using Docker
|
|
categories:
|
|
- Note
|
|
tags:
|
|
- note
|
|
- wifi
|
|
layout: default.liquid
|
|
is_draft: true
|
|
permalink: /posts/notes/1
|
|
---
|
|
|
|
|
|
## Notes On Dongle Wifi Install On Linux
|
|
|
|
I recemtly got some wifi key. I has hoping that would work out the box on linux whatwever it did note.
|
|
These just quick note how to install the correct drivers and fix all.
|
|
|
|
```
|
|
$ lsusb
|
|
<skip>
|
|
Bus 005 Device 003: ID 0e8d:7612
|
|
<skip>
|
|
```
|
|
|
|
First download the drivers form the official, first good news was that linux source for the driver were availabe.
|
|
|
|
```sh
|
|
$ tree -L 2
|
|
.
|
|
├── Linux
|
|
│ ├── 00007319-RTL88x2BU_WiFi_linux_v5.1.7_19806_BTCOEX20161024-3333.20161025.zip
|
|
│ ├── RTL8192EU_linux_v4.4.1.1_18873_BTCOEX20160412-0042.20160805.zip
|
|
│ └── RTL8811AU_Linux_v5.2.6_21981_COEX20170206-6760.20170407.zip
|
|
├── MAC OS
|
|
│ └── 00008703-RTLWlanU_MacOS10.9_MacOS10.12_Driver_1830.15.b13_1827.4.b26_UI_5.0.5.b5.zip
|
|
├── __MACOSX
|
|
├── Realtek user's manual.doc
|
|
└── Windows
|
|
└── 5D-00007964-RTLWlanU_WindowsDriver_1030.17.1101.2016_Drv_3.00.0014_UI_1.00.0287B.L.zip
|
|
```
|
|
|
|
From we are able to identify
|
|
|
|
|
|
```
|
|
$ yay RTL8192EU
|
|
3 aur/rtl8192eu-git 118.1628c74-1 (+2 0.00)
|
|
Drivers for the rtl8192eu chipset for wireless adapters (D-Link DWA-131).
|
|
2 aur/rtl8192eu-dkms 5.6.4.r302.g2fddecc-1 (+3 0.58)
|
|
Driver for Realtek 8192eu chipset (DKMS)
|
|
1 aur/rtl8192eu 4.4.1-3 (+11 0.00) (Out-of-date: 2021-10-12)
|
|
Driver for the Realtek8192eu chipset.
|
|
==> Packages to install (eg: 1 2 3, 1-3 or ^4)
|
|
==> 2
|
|
<skip>
|
|
```
|
|
|
|
```
|
|
$ lsusb
|
|
<skip>
|
|
Bus 005 Device 003: ID 0e8d:7612
|
|
<skip>
|
|
```
|
|
|
|
But, it was not workking, after research (and sometime...) i finally find this post talkgin about ```usb_modeswitch```
|
|
|
|
```
|
|
$ yay usb_modeswitch
|
|
2 aur/xmm7360-usb-modeswitch-git 1-1 (+1 0.00)
|
|
Tools for the Fibocom L850-GL / Intel XMM7360 LTE modem
|
|
1 extra/usb_modeswitch 2.6.1-4 (83.4 KiB 253.4 KiB)
|
|
Activating switchable USB devices on Linux.
|
|
==> Packages to install (eg: 1 2 3, 1-3 or ^4)
|
|
==> 1
|
|
<skip>
|
|
```
|
|
```
|
|
$ lsusb
|
|
<skip>
|
|
Bus 005 Device 003: ID 0e8d:7612 MediaTek Inc. MT7612U 802.11a/b/g/n/ac Wireless Adapter
|
|
<skip>
|
|
```
|
|
|
|
|
|
it know working,
|