일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 |
- LUSTRE
- Linux
- gpfs
- Cray
- infiniband
- Singularity
- top500
- CUDA
- hpcm패치
- Docker
- ubuntu
- client
- conda
- build
- 1.9
- nvidia
- PFSS
- GPU
- patch
- HPE
- SLURM
- rocm
- rhel
- rhel9
- Kernel
- HPCM
- 1.10
- Source
- AMD
- HPFSS
- Today
- Total
목록rhel9 (3)
HPE CRAY 자료 공유
RHEL 8까지는 SELINUX disable하는 방법으로 많이 사용되었던"/etc/selinux/config" 파일에 "SELINUX=disabled" 와 같이 SELINUX변수의 값을 수정 했었다. RHEL 9에서는 SELINUX 변수값을 수정해도 적용되지 않는다.RHEL 9에서 "/etc/selinux/config" 파일을 열어 보면 grubby 명령을 이용하여 켜거나 끄도록 안내되어져 있다. 구분적용 방법SELinux disabled# grubby --update-kernel ALL --args selinux=0SELinux enabled# grubby --update-kernel ALL --remove-args selinux - 참고: https://access.redhat.com/documen..
RedHat Enterprise Linux 9버전 부터 GRUB 설정 방법이 변경되었다. 기본 설정 방법이 grubby 명령을 사용하도록 변경 되었다.아래는 변경된 방법과 변경된 설정방법에 grub2-mkconfig명령을 사용하게 하는 방법,RHEL 8 버전까지 사용했던 방법을 사용하게 하는 설정을 예제로 작성한다. Predictable Network Interface Names을 사용하지 않게하는 "net.ifnames=0" 옵션을 예제로 한다. 1. grubby 사용 방법# grubby --update-kernel ALL --args "net.ifnames=0" # shutdown -r now - net.ifnames 옵션을 제거 하는 경우# grubby --update-kernel ALL --rem..