# dnf -y install gcc-c++# wget https://registrationcenter-download.intel.com/akdlm/IRC_NAS/dfc4a434-838c-4450-a6fe-2fa903b75aa7/intel-oneapi-base-toolkit-2025.0.1.46_offline.sh# sh intel-oneapi-base-toolkit-2025.0.1.46_offline.sh# /opt/intel/oneapi/installer/installer# sh intel-oneapi-base-toolkit-2025.0.1.46_offline.sh -a -s --eula accept --install-dir /apps/intel/oneapi-a: Automatic Mode를 의미하며, 자동으로 설치를 진행
-s: Silent Mode를 의미하며, 설치 과정에서 화면에 출력되는 메시지를 최소화
--eula accept: 설치 시 필요한 End User License Agreement (EULA), 즉 최종 사용자 사용권 계약을 사용자가 이미 읽고 동의함을 나타 냄
--install-dir: 설치가 완료된 파일들이 위치할 디렉토리를 지정 # /opt/intel/oneapi/installer/installer --list-products
============================================================
ID Version Installed Name
==================================================================================
intel.oneapi.lin.basekit.product 2025.0.1+45 true Intel® oneAPI Base Toolkit
============================================================# /opt/intel/oneapi/installer/installer -s --action remove --product-id intel.oneapi.lin.basekit.product
============================================================
Start installation flow...
Log files: /tmp/root/intel_oneapi_installer/2024.12.29.03.13.00.120
Removal has successfully completed
============================================================# source /apps/intel/oneapi/setvars.sh
============================================================
:: initializing oneAPI environment ...
-bash: BASH_VERSION = 5.1.8(1)-release
args: Using "$@" for setvars.sh arguments:
:: advisor -- latest
:: ccl -- latest
:: compiler -- latest
:: dal -- latest
:: debugger -- latest
:: dev-utilities -- latest
:: dnnl -- latest
:: dpcpp-ct -- latest
:: dpl -- latest
:: ipp -- latest
:: ippcp -- latest
:: mkl -- latest
:: mpi -- latest
:: pti -- latest
:: tbb -- latest
:: umf -- latest
:: vtune -- latest
:: oneAPI environment initialized ::
============================================================# icx -V
============================================================
Intel(R) oneAPI DPC++/C++ Compiler for applications running on Intel(R) 64, Version 2025.0.4 Build 20241205
Copyright (C) 1985-2024 Intel Corporation. All rights reserved.
============================================================# mkdir /apps/modulefiles/intel
============================================================
cd /apps/intel/oneapi
============================================================# ./modulefiles-setup.sh --output-dir=/apps/modulefiles/intel
============================================================
:: Initializing oneAPI modulefiles folder ...
:: Removing any previous oneAPI modulefiles folder content.
:: WARNING: "/apps/modulefiles/intel" exists and will be deleted.
Okay to proceed with deletion? [yn] y
============================================================# module avail
============================================================
-------------------- /apps/modulefiles --------------------
intel/advisor/2025.0 intel/compiler-rt/latest intel/dnnl/3.6.1 intel/intel_ipp_intel64/latest intel/tbb/2022.0
intel/advisor/latest intel/compiler/2025.0.4 intel/dnnl/latest intel/intel_ippcp_intel64/2025.0 intel/tbb/latest
intel/ccl/2021.14.0 intel/compiler/latest intel/dpct/2025.0.0 intel/intel_ippcp_intel64/latest intel/umf/0.9.1
intel/ccl/latest intel/debugger/2025.0.0 intel/dpct/latest intel/mkl/2025.0 intel/umf/latest
intel/compiler-intel-llvm/2025.0.4 intel/debugger/latest intel/dpl/2022.7 intel/mkl/latest intel/vtune/2025.0
intel/compiler-intel-llvm/latest intel/dev-utilities/2025.0.0 intel/dpl/latest intel/mpi/2021.14 intel/vtune/latest
intel/compiler-rt/2025.0.4 intel/dev-utilities/latest intel/intel_ipp_intel64/2022.0 intel/mpi/latest
============================================================# module load intel/compiler/2025.0.4
============================================================
Loading intel/compiler/2025.0.4
Loading requirement: intel/tbb/latest intel/compiler-rt/latest intel/umf/latest
============================================================# icx -V
============================================================
Intel(R) oneAPI DPC++/C++ Compiler for applications running on Intel(R) 64, Version 2025.0.4 Build 20241205
Copyright (C) 1985-2024 Intel Corporation. All rights reserved.
============================================================https://youtu.be/n8-wlkZiqio 1. 개요 NFS(Network File System)를 설치하고, rw/ro 및 root_squash 옵션에 따른 접근 제어와 성능을 테스트하는 방법을 정리한 가이드입니다.…
https://youtu.be/4MVxzmepY3s 1. 개요 리눅스에서 정기적으로 실행되는 작업(백업, 로그 정리, 모니터링 등)은 cron 서비스를 통해 자동화할 수 있습니다.…
https://youtu.be/vPfxWFBE1yc 1. 개요 리눅스 서버를 운영할 때 사용자 계정 생성, 비밀번호 설정, 권한 부여, 계정…
https://youtu.be/Gvp2XwBfoKw 1. 개요 리눅스 서버에서는 시스템 시간(OS 시간) 과 하드웨어 시간(RTC, Real-Time Clock) 을 동기화하는 것이 매우 중요합니다. 클러스터…
https://youtu.be/pt9qhawl8LY 1. 개요 리눅스 서버에서는 시스템 시간(OS 시간) 과 하드웨어 시간(RTC, Real-Time Clock) 을 모두 관리할 수 있습니다. 운영체제의…
https://youtu.be/iPdHGXh7DUg 1. 개요 서버 운영 시 시스템 시간이 올바르게 설정되어 있지 않으면 로그 분석, 모니터링,…