Category Archives: macOS

macOS Sonoma에 Quantum Espresso 7.3 설치하기

여기서는 macOS sonoma에 quantum espresso 7.3을 설치하는 방법에 대해 설명한다. 이전의 글 "macOS Catalina에 Quantum Espresso 6.7 설치하기" 에서 사용하였던 방법으로는 sonoma에 QE를 설치 할 수가 없어 MatriApps 에 소개되어 있는 Homebrew and the MateriApps Installer 를 사용하여 설치하는 방법을 정리한다. 참고로 여기에 정리한 방법은 "How to install Quantum ESPRESSO on macOS using MateriApps Installer"… Read More »

Cluster ssh Tool on MacOS

클러스터에 속해있는 여러대의 컴퓨터를 같은 상태로 설정하기위해 같은 작업을 반복해야 할 경우가 있다. 이같이 같은 작업을 반복해 진행하는 것이 지루하기도 하지만, 실수가 발생할 가능성도 높다. 여러개의 컴퓨터에 같은 명령을 전달해 수행토록하게 하는 기구로 cluster ssh 가 있다. 여기서는 macOS에서 cluster ssh를 설치하여 cluster에 속한 컴퓨터를 동시에 설정하는 방법에 대해 정리하였다. 1. 클러스터 ssh 설치 먼저… Read More »

macOS Catalina에 Quantum Espresso 6.7 설치하기

1. Homebrew 설치 다음의 명령문을 터미날에서 실행하여 homebrew를 설치한다. /bin/bash -c “$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)” 그리고 다음의 페키지를 설치한다. brew install wget brew install gcc gfortran fftw lapack openblas open-mpi eigen 2. Quantum Espresso 설치 2.1 소스 다운로드 적당한 위치에 소스를 다운로드 한다. 아래의 경우는 (나)/tmp 에 소스를 다운로드하는 경우이다. cd mkdir tmp cd tmp wget… Read More »