所以我试图在我的笔记本电脑上重新安装 Linux。目前,我在 Windows 和 Linux 之间进行双重引导,当我检查后我有两个 EFI 系统分区 (ESP)。我想摆脱在安装 Manjaro 时创建的那个,并保持 Windows 不变,以防我想在该特定机器上完全恢复到 Windows。
有没有一种特殊的方法来检查哪个 ESP 适用于 Linux 以及哪个适用于 Windows 和 Linux?我认为第一个分区应该是 Windows ESP,但我不是 100% 确定。
我创建了一个脚本来更改我的IP
地址/掩码和VLAN ID
接口,但问题是为了更改VLAN ID
,我需要执行一个PowerShell
命令。我的包含接口名称的变量包含一个空格,所以我需要把它放在引号中。问题是我需要为相同的 插入两个变量interfaceName
,一个带有单引号用于 Powershell 命令,另一个用于批处理netsh
命令,否则会出错。这是我的批处理文件:
:: Configuration Variables
set ifName='Ethernet 2'
set connectionName="Ethernet 2"
set ipAddress=10.88.167.27
set subnetMask=255.255.255.240
set vlanID=100
:: set defaultGateway=x.x.x.x
:: set primaryDNS=x.x.x.x
:: set alternateDNS=x.x.x.x
:: Change of IP address and NetMask ::
netsh interface ipv4 set address name=%connectionName% source=static addr=%ipAddress% mask=%subnetMask%
:: Change VLAN ID ::
powershell -Command "& {Set-NetAdapter -Name %ifName% -VlanID %vlanID% -Confirm:$false}"
echo The VLAN ID of %ifName% has been successfully changed to %vlanID%
pause > null
我的批处理脚本运行良好,但我只想为接口名称设置一个变量,而不是两个。我的问题是:
如果我ifName
在更改 IP 地址命令中使用,我会收到以下错误:The filename, directory name, or volume label syntax is incorrect.
.
如果我使用connectionName
带双引号的 for PowerShell 命令,则会出现以下错误:
Set-NetAdapter : A positional parameter cannot be found that accepts argument '2'.
At line:1 char:4
+ & {Set-NetAdapter -Name Ethernet 2 -VlanID 100 -Confirm:$false}
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : InvalidArgument: (:) [Set-NetAdapter], ParameterBindingException
+ FullyQualifiedErrorId : PositionalParameterNotFound,Set-NetAdapter
我什至尝试将 Powershell 命令用单引号括起来,并在里面使用connectionName
如下:
powershell -Command '& {Set-NetAdapter -Name %connectionName% -VlanID %vlanID% -Confirm:$false}'
但网络接口 VLAN 保持不变。
我希望tcpdump
通过数据包长度缩小我的范围。我知道我可以`| grep 但我想知道我是否可以将这个特定的数据包长度作为“tcpdump”中的一个选项传递。我正在尝试编写一个脚本,使用以下命令向我展示网络上所有存在的 MPEG-TS 多播:
sudo tcpdump -c 1000 -ti <network_interface> multicast | grep 1316 | sort | uniq
所以这个命令有效并准确地给出了我想要的输出,但我想我可以通过在tcpdump
命令中传递长度来简化它,比如:
sudo tcpdump -c 1000 -ti <network_interface> multicast and length 1316 | sort | uniq