자체 제작 - 기본 명령 및 메모장


Homebrew는 무료 소스 패키지 관리 시스템으로 애플 macOS 운영체제의 소프트웨어 설치를 간소화했다.이것은 macOS의 패킷 관리자라고 불린다.
Homebrew는 Ruby 프로그래밍 언어로 작성되었으며, 목표는 macOS 운영체제에 설치된 Ruby 버전입니다.Homebrew는 패키지를 자신의 디렉토리(Cell)에 설치하고 파일 기호를/usr/local에 연결합니다.

자체 제작 기반 설치


macOS에 Homebrew를 설치하는 방법을 알아보는 가장 좋은 방법은 Homebrew의 홈페이지를 방문하는 것이다.다음 링크를 클릭하십시오.
  • Install Homebrew
  • 자제 명령


    Brew 도움말


    brew를 성공적으로 설치한 후에 어떻게 brew에 대한 도움을 받는지 이해하는 것이 매우 중요하다.다음 명령은 macOS에서 brew 명령을 사용할 수 있도록 도와줍니다.
    # Display the version of Homebrew.
    $ brew --version
    # Print Help Information
    $ brew help
    # Print Help Info for a brew command
    $ brew help <sub-command>
    # Check system for potential problems.
    $ brew doctor
    

    Brew 업데이트


    자체 제작의 일부 기능은 응용 프로그램을 최신으로 유지하고 다른 응용 프로그램은 특정 버전을 유지하는 것이다.이 명령 세트는 Homebrew 자체와 설치된 응용 프로그램을 업데이트하는 데 사용됩니다.
    # Fetch latest version of homebrew and formula
    $ brew update
    # Show formulae with an updated version available
    $ brew outdated
    # Upgrade all outdated and unpinned brews
    $ brew upgrade
    # Upgrade only the specified brew
    $ brew upgrade <formula>
    # Prevent the specified formulae from being upgraded
    $ brew pin <formula>
    # Allow the specified formulae to be upgraded.
    $ brew unpin <formula>
    

    Brew 저장소


    brew tap 명령을 사용하면 홈 brew에 다른 저장소를 추가할 수 있습니다.이렇게 하면 기본 저장소 세트에 속하지 않는 다른 응용 프로그램을 설치할 수 있습니다.
    # List all the current tapped repositories (taps)
    $ brew tap
    # Tap a formula repository from Github using https for tap https://github.com/user/homebrew-repo
    $ brew tap <user/repo>
    # Tap a formula repository from the specified URL
    $ brew tap <user/repo> <URL>
    # Remove the given tap from the repository
    $ brew untap <user/repo>
    

    양조통


    Homebrew Cask는 바이너리 파일로 배포되는 macOS 응용 프로그램을 관리하기 위해 우호적인 CLI 워크플로우를 제공합니다.
    # Tap the Cask repository from Github.
    $ brew tap homebrew/cask
    # List all the installed casks .
    $ brew cask list
    # Search all known casks based on the substring text.
    $ brew search <text>
    # Install the given cask.
    $ brew cask install <cask>
    # Reinstalls the given Cask
    $ brew cask reinstall <cask>
    # Uninstall the given cask.
    $ brew cask uninstall <cask>
    

    Brew 검색, 설치, 제거


    다음 명령은 자체 제작 저장소에서 사용할 수 있는 다양한 응용 프로그램과 도구를 검색, 나열 및 설치하는 데 사용됩니다.
    # List all the installed formulae.
    $ brew list
    # Display all locally available formulae for brewing.
    $ brew search
    # Perform a substring search of formulae names for brewing.
    $ brew search <text>
    # Display information about the formula.
    $ brew info <formula>
    # Install the formula.
    $ brew install <formula>
    # Uninstall the formula.
    $ brew uninstall <formula>
    

    Brew 정리


    방정식 및 컨테이너의 오래된 잠금 파일과 만료된 다운로드를 삭제하고 설치된 방정식의 이전 버전을 삭제합니다.
    # Remove older versions of installed formulae.
    $ brew cleanup
    # Remove older versions of specified formula.
    $ brew cleanup <formula>
    # Display all formula that will be removed (dry run)
    $ brew cleanup -n
    

    알림 및 메모장


    Brew 메모장 명령은 다음 링크에서 다운로드할 수 있습니다.PDF 문서에는 자주 사용하는 brew 명령 목록이 포함되어 있습니다.이 메모장 문서는 모든 명령의 전체 문서 목록이 아닙니다. brew 공식 문서 페이지에 접근하는 것이 좋습니다.
    PDF 버전 다운로드: Homebrew Cheatsheet

    설치 물품


    이 절에는 macOS에 응용 프로그램과 명령행 도구를 설치하는 데 자체 제작 소프트웨어를 사용하는 방법을 설명하는 일련의 글이 포함되어 있다.

    명령줄 도구 및 응용 프로그램


    이 절의 도구와 프로그램 목록은brew 설치 명령을 사용합니다.
  • How to install ACK on macOS using Homebrew
  • How to install Apache Ant on macOS using Homebrew
  • How to install AWS CLI on macOS using Homebrew
  • How to install cURL on macOS using Homebrew
  • How to install Git on macOS using Homebrew
  • How to install Gradle on macOS using Homebrew
  • How to install Maven on macOS using Homebrew
  • How to install Node.js on macOS using Homebrew
  • How to install Vagrant on macOS using Homebrew
  • How to install Wget on macOS using Homebrew
  • 응용 프로그램 개발


    이 절의 프로그램 목록은brew cask install 명령을 사용합니다.
  • How to install AppCode on macOS using Homebrew
  • How to install Atom on macOS using Homebrew
  • How to install DBeaver (CE) on macOS using Homebrew
  • How to install DBeaver (EE) on macOS using Homebrew
  • How to install DiffMerge on macOS using Homebrew
  • How to install Docker on macOS using Homebrew
  • How to install Eclipse on macOS using Homebrew
  • How to install Firefox on macOS using Homebrew
  • How to install Google Chrome on macOS using Homebrew
  • How to install Insomnia on macOS using Homebrew
  • How to install IntelliJ IDEA (CE) on macOS using Homebrew
  • How to install IntelliJ IDEA (UE) on macOS using Homebrew
  • How to install iTerm2 on macOS using Homebrew
  • How to install Java on macOS using Homebrew
  • How to install Postman on macOS using Homebrew
  • How to install Slack on macOS using Homebrew
  • How to install Spring Tool Suite (STS) on macOS using Homebrew
  • How to install Sublime Text on macOS using Homebrew
  • How to install Tower on macOS using Homebrew
  • How to install Virtualbox on macOS using Homebrew
  • How to install Visual Studio Code on macOS using Homebrew
  • How to install WebStorm on macOS using Homebrew

  • 결론


    본고는 사용자가 자체 제작 소프트웨어를 사용하여 Mac에 응용 프로그램을 설치하고 관리하는 데 도움을 줄 수 있기를 바랍니다.메모지를 마음대로 공유하고 명령을 사용할 때 겪는 모든 문제에 대해 논평해 주십시오.

    좋은 웹페이지 즐겨찾기