ipstor

0

ipstor

Tool

巧用Win10自带的PowerShell命令校验文件的Hash值(MD5、SHA1/256等)

在Win10开始按钮上点击右键,选择“Windows PowerShell(管理员)”打开“管理员: Windows PowerShell”窗口。 校验文件Hash值的命令格式如下: Get-FileHash 文件路径 -Algorithm 校验的Hash值类型| Format-List PS: 如果需要校验的文件路径比较复杂,例如路径中包含空格、括号等特殊符号,则需要在路径前后加上英文双引号。 Windows PowerShell命令可以校验的Hash值类型包括:SHA1、SHA256、SHA384、SHA512、MACTripleDES、MD5、RIPEMD160,暂不支持校验CRC32值。 如果不带-Algorithm参数,也就是不指明验证的Hash值类型,那么默认验证的就是SHA256值。 下面MS酋长举个例子,以验证系统的记事本程序的Hash值为例,程序文件的路径为C:\Windows\notepad.exe。如果我们想要校验它的MD5值,则运行如下命令: Get-FileHash C:\Windows\notepad.exe -Al

By ipstor

configuration

CentOS / RHEL 7 : How to setup yum repository using locally mounted DVD

https://www.thegeekdiary.com/centos-rhel-7-how-to-setup-yum-repository-using-locally-mounted-dvd/ yum is the primary tool for getting, installing, deleting, querying, and managing Red Hat Enterprise Linux RPM software packages from official Red Hat software repositories, as well as other third-party repositories. The post below describes step by step procedure to use a locally mounted RHEL

By ipstor