# 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.
============================================================
1. 개요 본 글은 LVM의 스냅샷(snapshot) 기능으로 복구 지점 생성 → 파일 변경 → 스냅샷 병합(rollback) 과정을 실습합니다. 동일한…
https://youtu.be/ZcxB7akkDKs 1. 개요 두 개의 디스크(/dev/vdb, /dev/vdc)로 LVM을 구성하고, ext4·XFS 파일시스템 생성 → 마운트 → VG/LV 확장 → ext4 축소(오프라인)까지 전체…
https://youtu.be/XYBR1ZFrV9s 1. 개요 parted를 사용해 새 디스크에 GPT 라벨 생성 → 파티션 생성(ext4/XFS) → 포맷/마운트 →…
https://youtu.be/yYV8RQKCFzA 1. 개요 이 문서는 fdisk를 사용해 MBR(DOS) 디스크에 파티션을 생성하고, ext4/XFS 파일시스템을 포맷·마운트, /etc/fstab에 등록했다가, 안전하게 해제·삭제하는 전…
1. 개요 Linux에서 디스크 파티션 스타일은 MBR(Master Boot Record) 와 GPT(GUID Partition Table)에 대해 설명합니다. 2. MBR이란? 디스크…
https://youtu.be/CNd1bJV4wGY 1. 개요 Windows Server를 새로 설치할 때의 설치 과정을 단계별로 정리하였습니다. Windows Server 설치…