1. homebrew update to enable anonymous aggregate formulae

 

ellords-Mac-book:~ ellord$ /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
==> Checking for `sudo` access (which may request your password)...
Password:
==> You are using macOS 10.14.
==> We (and Apple) do not provide support for this old version.
This installation may not succeed.
After installation, you will encounter build failures with some formulae.
Please create pull requests instead of asking for help on Homebrew's GitHub,
Twitter or any other official channels. You are responsible for resolving any
issues you experience while you are running this old version.

==> This script will install:
/usr/local/bin/brew
/usr/local/share/doc/homebrew
/usr/local/share/man/man1/brew.1
/usr/local/share/zsh/site-functions/_brew
/usr/local/etc/bash_completion.d/brew
/usr/local/Homebrew

Press RETURN/ENTER to continue or any other key to abort:
==> /usr/bin/sudo /usr/sbin/chown -R ellord:admin /usr/local/Homebrew
==> Downloading and installing Homebrew...
remote: Enumerating objects: 78, done.
remote: Counting objects: 100% (78/78), done.
remote: Compressing objects: 100% (62/62), done.
remote: Total 78 (delta 32), reused 50 (delta 16), pack-reused 0
Unpacking objects: 100% (78/78), done.
From https://github.com/Homebrew/brew
   650f516c5..b3684e55a  master     -> origin/master
HEAD is now at b3684e55a Merge pull request #14997 from ZhongRuoyu/ventura-system-settings
Updated 3 taps (shivammathur/php, homebrew/core, and homebrew/cask).
==> Installation successful!

==> Homebrew has enabled anonymous aggregate formulae and cask analytics.
Read the analytics documentation (and how to opt-out) here:
  https://docs.brew.sh/Analytics
No analytics data has been sent yet (nor will any be during this install run).

==> Homebrew is run entirely by unpaid volunteers. Please consider donating:
  https://github.com/Homebrew/brew#donations

==> Next steps:
- Run these two commands in your terminal to add Homebrew to your PATH:
    (echo; echo 'eval "$(/usr/local/bin/brew shellenv)"') >> /Users/ellord/.bash_profile
    eval "$(/usr/local/bin/brew shellenv)"
- Run brew help to get started
- Further documentation:
    https://docs.brew.sh

 

 

2. bash change

ellords-Mac-book:~ ellord$ echo 'eval "$(/opt/homebrew/bin/brew shellenv)"' >> ~/.zprofile

 

3. install freetype

ellords-Mac-book:~ ellord$ brew install freetype
Warning: You are using macOS 10.14.
We (and Apple) do not provide support for this old version.
It is expected behaviour that some formulae will fail to build in this old version.
It is expected behaviour that Homebrew will be buggy and slow.
Do not create any issues about this on Homebrew's GitHub repositories.
Do not create any issues even if you think this message is unrelated.
Any opened issues will be immediately closed without response.
Do not ask for help from Homebrew or its maintainers on social media.
You may ask for help in Homebrew's discussions but are unlikely to receive a response.
Try to figure out the problem yourself and submit a fix as a pull request.
We will review it but may or may not accept it.

==> Fetching freetype
==> Downloading https://gitlab.freedesktop.org/freetype/freetype/-/commit/2257f9
######################################################################## 100.0%
==> Downloading https://gitlab.freedesktop.org/freetype/freetype/-/commit/d874ff
######################################################################## 100.0%
==> Downloading https://downloads.sourceforge.net/project/freetype/freetype2/2.1
Already downloaded: /Users/ellord/Library/Caches/Homebrew/downloads/34c0ca3c59c0f54b35bf7667b3ef864f2321172ace9cf180c40e81819e46f0f3--freetype-2.13.0.tar.xz
==> Patching
==> Applying 2257f9abf6e12daf7c3e1bfe28fa88de85e45785.diff
patching file include/freetype/internal/compiler-macros.h
==> Applying d874ffa96ccad7dd122cdc369a284d171e221809.diff
patching file include/freetype/internal/compiler-macros.h
==> ./configure --prefix=/usr/local/Cellar/freetype/2.13.0_1 --enable-freetype-c
==> make
==> make install
🍺  /usr/local/Cellar/freetype/2.13.0_1: 67 files, 2.4MB, built in 26 seconds
==> Running `brew cleanup freetype`...
Disable this behaviour by setting HOMEBREW_NO_INSTALL_CLEANUP.
Hide these hints with HOMEBREW_NO_ENV_HINTS (see `man brew`).

 

 

 

 

 

 

 

 

 

'Mac' 카테고리의 다른 글

Change OSX ssh port 맥OS ssh 포트 변경  (0) 2022.11.04
OSX mariadb 설치  (0) 2022.04.21
osx apache httpd는 어디에 설치?  (0) 2022.04.21
osx 원격제어설정  (0) 2022.04.15
OSX ssh 포트 변경  (0) 2022.04.14
블로그 이미지

엘로드넷

,

ssh의 기본 포트는 22이다.

 

OSX에서 ssh 포트를 변경하는 방법 

 

1. /etc/services에서 변경

 

vi /etc/services

ssh              22/udp     # SSH Remote Login Protocol
ssh              22/tcp     # SSH Remote Login Protocol

22를 적당한 포트로 변경하고 저장한다.

 

1 ~ 65535 중의 하나로 변경가능하지만 다른 곳에서 사용중인 것은 피한다.

 

 

2. ssh데몬 재시작

 

아래와 같이 데몬을 내렸다가 올리는 방식으로 처리한다.

 

sudo launchctl unload /System/Library/LaunchDaemons/ssh.plist 
sudo launchctl load -w /System/Library/LaunchDaemons/ssh.plist

 

변경된 포트로 접속하는 방법

 

ssh 192.168.0.100 -p 변경된포트 -l 사용자명

'Mac' 카테고리의 다른 글

OSX Mojave freetype install error  (0) 2023.03.18
OSX mariadb 설치  (0) 2022.04.21
osx apache httpd는 어디에 설치?  (0) 2022.04.21
osx 원격제어설정  (0) 2022.04.15
OSX ssh 포트 변경  (0) 2022.04.14
블로그 이미지

엘로드넷

,
{call test_proc(
	${id:integer:inparam}
    ,${name:integer:inparam}
    ,${result:integer:outparam}
    ,${msg:varchar:outparam}
)}

'DEV-ON' 카테고리의 다른 글

DEV-ON IN 쿼리 방법  (0) 2022.09.17
MSSQL PIVOT 배열 동적쿼리시 대괄호 파라미터 처리방법  (0) 2022.09.17
블로그 이미지

엘로드넷

,