1. 通过网线连接两台 Windows 电脑
2. Linux 通过网线分享网络给 Windows
2.1. 以 NetworkManager 为例
在 Linux 上配置新的共享网络
nmcli connection add type ethernet con-name SharedConnection ifname nmcli connection modify SharedConnection ipv4.method shared nmcli connection modify SharedConnection ipv6.method disabled nmcli connection up SharedConnection
- 在 Windows 上修改“更改适配器选项”
- 网络等改成自动分配
- 在高级选项中修改自动跃点数为比较大的数字,以降低网络优先级
- 网络等改成自动分配
3. Linux 开启 5G 热点
# echo options iwlwifi lar_disable=1 >> /etc/modprobe.d/iwlwifi.conf
这个方法在 5.5 已经被移除,具体的提交记录为[PATCH v5.5 6/7] iwlwifi: remove lardisable module parameter。
因此我们可以通过一些 dirty 的方法来恢复这个选项。
reless/intel/iwlwifi/iwl-nvm-parse.c index 480f8edbfd..109d64b539 100644 --- a/drivers/net/wireless/intel/iwlwifi/iwl-nvm-parse.c +++ b/drivers/net/wireless/intel/iwlwifi/iwl-nvm-parse.c @@ -1557,7 +1557,7 @@ iwl_parse_nvm_data(struct iwl_trans *trans, const struct iwl_cfg *cfg, return NULL; } - if (lar_enabled && + if (0 && lar_enabled && fw_has_capa(&fw->ucode_capa, IWL_UCODE_TLV_CAPA_LAR_SUPPORT)) sbands_flags |= IWL_NVM_SBANDS_FLAGS_LAR; @@ -2100,7 +2100,7 @@ struct iwl_nvm_data *iwl_get_nvm(struct iwl_trans *trans, nvm->valid_tx_ant = (u8)le32_to_cpu(rsp->phy_sku.tx_chains); nvm->valid_rx_ant = (u8)le32_to_cpu(rsp->phy_sku.rx_chains); - if (le32_to_cpu(rsp->regulatory.lar_enabled) && + if (0 && le32_to_cpu(rsp->regulatory.lar_enabled) && fw_has_capa(&fw->ucode_capa, IWL_UCODE_TLV_CAPA_LAR_SUPPORT)) { nvm->lar_enabled = true;
之后进行编译内核,安装,重启内核后, LAR 就被关闭了。
此时查看信道:
iw list | grep MHz | grep -v disabled | grep -v 'no IR' | grep -F '*' * 2452.0 MHz [9] (20.0 dBm) * 2457.0 MHz [10] (20.0 dBm) * 2462.0 MHz [11] (20.0 dBm) * 2467.0 MHz [12] (20.0 dBm) * 2472.0 MHz [13] (20.0 dBm) * 5180.0 MHz [36] (20.0 dBm) (radar detection) * 5200.0 MHz [40] (20.0 dBm) (radar detection) * 5220.0 MHz [44] (20.0 dBm) (radar detection) * 5240.0 MHz [48] (20.0 dBm) (radar detection) * 5260.0 MHz [52] (20.0 dBm) (radar detection) * 5280.0 MHz [56] (20.0 dBm) (radar detection) * 5300.0 MHz [60] (20.0 dBm) (radar detection) * 5320.0 MHz [64] (20.0 dBm) (radar detection) * 5745.0 MHz [149] (22.0 dBm) * 5765.0 MHz [153] (22.0 dBm) * 5785.0 MHz [157] (22.0 dBm)
发现部分 5G 信道已经被打开了。
3.1. 查看当前 wifi 信息
$ iwconfig lo no wireless extensions. enp52s0 no wireless extensions. wlan0 IEEE 802.11 ESSID:"AndroidAP_9142" Mode:Managed Frequency:5.805 GHz Access Point: ********** Bit Rate=1.0806 Gb/s Tx-Power=22 dBm Retry short limit:7 RTS thr:off Fragment thr:off Power Management:off Link Quality=59/70 Signal level=-51 dBm Rx invalid nwid:0 Rx invalid crypt:0 Rx invalid frag:0 Tx excessive retries:0 Invalid misc:4 Missed beacon:0 ap0 IEEE 802.11 Mode:Master Tx-Power=22 dBm Retry short limit:7 RTS thr:off Fragment thr:off Power Management:on
可以看到频率为 Frequency:5.805 GHz
已经为 5G 了。
3.2. 开启热点
可以使用 linux-router 工具。
但是需要确认正确的信道(通过频率来找到对应的信道)。
Footnotes:
1
A file server that supports static serving, uploading, searching, accessing control, webdav…