os/Window

Scoop - Command-line Install Manager

C/H 2018. 9. 13. 08:30

윈도우 명령줄 설치관리자

Make sure Powershell 3 (or later) and .NET Framework 4.5 (or later) are installed. Then run:
Powershell 3.NET Framework 4.5이 사전 설치 되어 있다면 아래 명령어로 실행할 수 있다.

Requirement

  • Windows 7 SP1+ / Windows Server 2008+
  • PowerShell 3 (or later) and .NET Framework 4.5+
  • PowerShell must be enabled for your user account e.g. set-executionpolicy remotesigned -s currentuser

기본으로 `%USERPROFILE%/scoop/` 폴더에 설치가 된다.

설치

Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser
Invoke-RestMethod -Uri https://get.scoop.sh | Invoke-Expression
  • SSL/TSL 에러가 발생 할 경우 TLS1.2 사용을 설정하고 실행한다.
    [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12
  • Running the installer as administrator is disabled by default, see https://github.com/ScoopInstaller/Install#for-admin for details. 에러
    iex "& {$(irm get.scoop.sh)} -RunAsAdmin"

Inspiration 영향을 받은 프로젝트

Scoop가 할 수 있는일?

Scoop installs programs from the command line with a minimal amount of friction. It tries to eliminate things like:
스쿠프는 최소한의 마찰로 명령줄에서 프로그램을 설치합니다. 다음과 같은 것들을 제거하려고 한다.

  • Permission popup windows
    권한 팝업 창
  • GUI wizard-style installers
    GUI 마법사 스타일 설치자
  • Path pollution from installing lots of programs
    많은 프로그램 설치로 인한 경로 오염
  • Unexpected side-effects from installing and uninstalling programs
    프로그램 설치 및 제거로 인한 예상치 못한 부작용
  • The need to find and install dependencies
    종속성을 찾아 설치해야 함
  • The need to perform extra setup steps to get a working program
    작업 프로그램을 가져오기 위해 추가 설정 단계를 수행해야 함

Multi-connection downloads with aria2 aria2를 이용 다중 연결 다운로드2

Scoop can utilize aria2 to use multi-connection downloads. Simply install aria2 through Scoop and it will be used for all downloads afterward.
Scoop는 aria2를 이용하여 다중 접속 다운로드를 사용할 수 있다. Scoop를 통해 aria2를 설치하면 이후에 모든 다운로드에 사용된다.

# aria2 설치 
scoop install aria2

What sort of apps can Scoop install? 스쿠프는 어떤 앱을 설치할 수 있나?

The apps that install best with Scoop are commonly called "portable" apps: i.e. compressed program files that run stand-alone when extracted and don't have side-effects like changing the registry or putting files outside the program directory.
Scoop과 함께 가장 잘 설치되는 앱은 일반적으로 "이동식" 앱입니다. 즉, 압축을 풀 때 독립형으로 실행되고 레지스트리 변경이나 프로그램 디렉토리 외부에 파일을 넣는 것과 같은 부작용이 없는 압축 프로그램 파일입니다.

Since installers are common, Scoop supports them too (and their uninstallers).
설치 프로그램이 일반적이므로 Scoop은 설치 프로그램 및 설치 관리자도 지원합니다.

Scoop is also great at handling single-file programs and Powershell scripts. These don't even need to be compressed. See the runat package for an example: it's really just a GitHub gist.
Scoop는 또한 단일 파일 프로그램과 Powershell 스크립트를 다루는 데에도 탁월하다. 압축할 필요도 없다. 런트 패키지를 예로 들어보자: 그것은 정말로 GitHub gist이다.

Support this project If you find Scoop useful and would like to support ongoing development and maintenance, here's how:
이 프로젝트 지원 Scop이 유용하다고 생각되고 지속적인 개발 및 유지 보수를 지원하려면 다음과 같이 하십시오.

확장 저장소 설치

# 저장소 추가 
scoop bucket add extras  
# HeidiSQL 설치 
scoop install heidisql
반응형

'os > Window' 카테고리의 다른 글

Scoop Bucket Wiki  (0) 2018.09.15
Scoop Extra Bucket  (0) 2018.09.14
Windows10 화면 배율 조정  (0) 2017.02.15
PowerShell SSH  (0) 2017.02.02
Choco GUI Tool  (0) 2016.12.09