msys2是一种在Windows平台上模拟Linux运行环境的技术,它的一个优点就在于利用pacman包管理器,我们可以比较轻松的使用Linux包管理器的方式来安装一整套可以在Windows上运行的Linux工具。如果你只是想要在Windows上简单运行一些Linux程序,那么msys2是一个很好的选择。
下载安装msys2
到清华镜像源网站来下载msys2,网址如下。
https://mirrors.tuna.tsinghua.edu.cn/msys2/distrib/
然后找到适合自己系统架构的安装包,我这里是64位,所以选择下面这个。
下载完成后安装即可。第一次打开以后会看到一个比较小的窗口,可以修改一下字体、语言什么的。如果安装程序没有创建快捷方式的话,可以手动去安装目录里面寻找msys2.exe
文件。
修改安装源
前面提到了,msys2可以使用pacman来安装软件包,所以第一件事情自然是修改镜像源的地址了。编辑镜像源文件的方法很简单,假设你msys2的安装路径是,运行下面的powershell脚本即可。如果你安装路径在其他位置,修改脚本即可。
function InsertConentToFileTop {
param(
[String]$filename,
[String]$content
)
$filecontent = Get-Content $filename
$s = @()
$s += $content
$s += $filecontent
$s | Out-File $filename
}
$msys2_install_dir = 'C:\msys64'
InsertConentToFileTop $msys2_install_dir\etc\pacman.d\mirrorlist.mingw32 'Server = https://mirrors.tuna.tsinghua.edu.cn/msys2/mingw/i686'
InsertConentToFileTop $msys2_install_dir\etc\pacman.d\mirrorlist.mingw64 'Server = https://mirrors.tuna.tsinghua.edu.cn/msys2/mingw/x86_64'
InsertConentToFileTop $msys2_install_dir\etc\pacman.d\mirrorlist.msys 'Server = https://mirrors.tuna.tsinghua.edu.cn/msys2/msys/$arch'
然后在终端中运行pacman -Syu
更新系统,就像archlinux那样。更新完成之后,就可以使用msys2的模拟Linux环境来运行一些bash脚本以及Linux程序了。很多常见的程序都可以在msys2的软件仓库中找到,vim、nano、git等程序都可以正常运行。
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。