Scheck インストール¶
- バージョン:1.0.7-7-g251eead
- リリース日:2023-04-06 11:17:57
- 対応OS:windows/amd64, windows/386, linux/arm, linux/arm64, linux/386, linux/amd64
この記事では Scheck の基本的なインストール方法について説明します。
インストール¶
=== Linux
```Shell
sudo -- bash -c "$(curl -L https://static.guance.com/security-checker/install.sh)"
```
=== Windows
```powershell
Set-ExecutionPolicy Bypass -scope Process -Force; Import-Module bitstransfer; start-bitstransfer -source https://static.guance.com/security-checker/install.ps1 -destination .install.ps1; powershell .install.ps1;
```
アップデート¶
=== Linux
```Shell
SC_UPGRADE=1 bash -c "$(curl -L https://static.guance.com/security-checker/install.sh)"
```
=== Windows
```powershell
$env:SC_UPGRADE;Set-ExecutionPolicy Bypass -scope Process -Force; Import-Module bitstransfer; start-bitstransfer -source https://static.guance.com/security-checker/install.ps1 -destination .install.ps1; powershell .install.ps1;
```
インストールが完了すると、サービスとして実行されます。サービス名は scheck で、サービス管理ツールを使用してプログラムの起動/停止を制御できます。
その他の関連リンク:
- Scheck の基本的な使用方法については、Scheck 使用入門 を参照してください。