FortiClient 더 이상 쓸 필요가 없을 것 같아서 지우려고 했더니 안 지워진다. 항목이 잠겨있다고.. 당연히 자연스럽게 Iterm 열고 rm 으로 지우려고했는데 rm results in "operation not permitted" 이번엔 다른 에러.. 이렇게 해주면 된다. 잠금상태 풀어주는 명령어 $ cd /Applications $ sudo chflags -hv noschg FortiClient.app $ rm -rf FortiClient.app
ubuntu 20.04 postgreSQL 설치 방법 1 ) apt update ubuntu@dev1990:~$ sudo apt update 2) postgresql install (extension을 위해서 postgresql-contrib install ) ubuntu@dev1990:~$ sudo apt install postgresql-14 postgresql-contrib 3) systemctl status postgresql.service (설치 확인 및 서비스 확인) ubuntu@dev1990:~$ systemctl status postgresql.service ● postgresql.service - PostgreSQL RDBMS Loaded: loaded (/lib/systemd/syste..
ubuntu 20.04에서 redis를 설치하기 위한 방법 apt로 간단하게 설치 가능하다. 1 ) apt update ubuntu@dev1990:~$ sudo apt update 2 ) apt-get install redis-server ubuntu@dev1990:~$ sudo apt-get install redis-server 3) systemctl status redis-server.service (등록된 서비스 파일 확인) (또는 프로세스 확인 (ps -ef)) ubuntu@dev1990:~$ sudo systemctl status redis-server.service ● redis-server.service - Advanced key-value store Loaded: loaded (/lib/s..
ubuntu 20.04 환경에서 Go로 프로젝트를 진행하기 위해 Golang install 하는 방법 https://go.dev/doc/install Download and install - The Go Programming Language Download and install Download and install Go quickly with the steps described here. For other content on installing, you might be interested in: 1. Go download. Click the button below to download the Go installer. Download Go Don't see your operating syste go.dev..
ubuntu 20.04 환경에서 ip 를 확인하기 위해서 ifconfig 명령어를 입력한다. ubuntu@dev1990:~$ ifconfig Command 'ifconfig' not found, but can be installed with: sudo apt install net-tools net-tools 을 설치해야 ip를 확인 할 수 있다. ubuntu@dev1990:~$ sudo apt update ubuntu@dev1990:~$ sudo apt install net-tools ubuntu@dev1990:~$ ifconfig
1. Git(소스 코드 관리를 위한 분산 버전 관리 시스템) 설치 ubuntu@dev1990:~$ sudo apt-get update ubuntu@dev1990:~$ sudo apt-get install git 2. Git 설치 확인 ubuntu@dev1990:~$ git version git version 2.34.1 3. Git config 설정 $ git config --global user.name "USER_NAME" $ git config --global user.email "USER_EMAIL" (참고로 repository 마다 각각 다르게 설정할거면 --global 대신에 --local 로 등록하면 된다.) 4. Git config 확인 ubuntu@dev1990:~$ git config ..
2022.09.17 - [Server/Oracle] - [Oracle] Create a VM instance 2022.09.18 - [Server/Oracle] - [Oracle] 고정 IP 설정 (static ip address) 1) nginx 설치 $ sudo apt-get update $ sudo apt-get install nginx -y 2) nginx 서비스 확인 (systemctl status nginx) ubuntu@dev1990:~$ systemctl status nginx.service ● nginx.service - A high performance web server and a reverse proxy server Loaded: loaded (/lib/systemd/system/n..
Homebrew Homebrew 는 맥스 호웰이 만든 Mac OS 패키지 관리 애플리케이션 https://brew.sh/index_ko Homebrew The Missing Package Manager for macOS (or Linux). brew.sh (1) homebrew install /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" (2) Next steps 문구 확인 ==> Next steps: - Run these two commands in your terminal to add Homebrew to your PATH: echo 'eval "$(/opt/homebrew/b..