比较
cmd | PowerShell-alias | PowerShell | bash | 作用 |
---|---|---|---|---|
alias | gal | Get-Alias | alias | 别名 |
cd /d | cd | Set-Location | cd | 进入路径 |
cls | clear | Clear-Host | clear | 清屏 |
copy | cp | Copy-Item | cp | 复制文件 |
curl | curl | Invoke-WebRequest | curl | 网络请求 |
dir | ls | Get-ChildItem | ls | 查看目录 |
echo | echo | Write-Output | echo | 输出内容 |
- | - | - | touch | 创建文件 |
help | Get-Help | Get-Help | man | 帮助 |
md | md | mkdir | mkdir | 创建文件夹 |
more | more | more | more | 更多 |
pwd | pwd | Get-Location | pwd | 当前目录 |
rename | ren | Rename-Item | mv | 重命名文件 |
rd | rd | Remove-Item | rmdir | 删除文件夹 |
set | $env:* | - | env | 查看变量 |
tasklist | ps | Get-Process | ps | 查看进程 |
tree | tree | tree | tree | 目录树 |
type | cat | Get-Content | cat | 显示内容 |
% | $ | - | $ | 变量 |
%errorlevel% | $? | - | $? | 执行是否成功 |
>> | ac | Add-Content | >> | 增加内容 |
- | sleep | Start-Sleep | sleep | 中断 |
功能
查看ip
ipconfig #win
ifconfig 或 ip addr #linux
apt install net-tools #解决没有ifconfig
ip 配置
win
: 图形界面
控制面板\网络和 Internet\网络连接 #更改设备的属性
win
: 命令行
netsh -c interface dump #查看配置
netsh interface ipv4 show ip #查看ip
netsh interface ipv4 show interfaces #查看接口
netsh interface ipv4 set address name= "WLAN" source=dhcp #设置动态ip分配
netsh interface ipv4 set address name="WLAN" static 192.168.43.95 255.255.255.0 192.168.43.1 #静态ip
netsh interface ipv4 set dns name="本地连接" static 8.8.8.8 register=PRIMARY #设置dns:8.8.8.8
netsh interface ip set address name="本地连接" source=dhcp #自动获得dns
ununtu
: 静态ip
vim /etc/network/interface
auto ens33
iface ens33 inet static
address 192.168.1.120
netmask 255.255.255.0
gateway 192.168.1.1
dns-nameserver 114.114.114.114 8.8.8.8
dns
配置
vim /etc/resolve.conf
nameserver 114.114.114.114
nameserver 8.8.8.8
永久保存
vim /etc/resolvconf/resolv.conf.d/base
nameserver 114.114.114.114
nameserver 8.8.8.8
重启
/etc/init.d/networking restart
#service network restart
服务
win
set path=%path%;C:\Windows;C:\Windows\System32;C:\Windows\SysWOW64;C:\WINDOWS\system32\WindowsPowerShell\v1.0; #设置环境变量
services.msc #打开服务
net stop studsrv #停止服务
sc config studsrv start= disabled #禁止开启服务
linux
service --status-all #查看服务
service ssh start #打开ssh服务
#/etc/init.d/ssh start
#systemctl start ssh
#systemctl start sshd.service
update-rc.d ssh enable #开机启动
#systemctl enable sshd.service