본문 바로가기

OS-OE Knowledge207

VMw Host/Install Infiniband Adpt in SR-IOV on VMware Infiniband Switch SR-IOV를 운용하기 위해서는 Infiniband Switch의 가상화 지원 기능이 활성화 되어야 함. [Switch Hostname] > enable [Switch Hostname] # config terminal [Switch Hostname] (config) # show ib sm virt Enabled 참고문서: Command Line Interface https://docs.nvidia.com/networking/display/MLNXOSv381000/Command+Line+Interface Standard mode (default) > "enable" into Enable mode > "configure terminal" into config mode. 또는,.. 2023. 7. 7.
Linux Host/Install Infiniband OFED driver Linux Host – OFED Driver 설치 무작정 따라하기 Test Model: DL380 Gen10 1. Set WP w/ UEFI boot mode a. Restore Set Default b. Set WP to HPC. 2. Install RHEL 8.7 - Server with GUI 3. prerequisite # mkdir -p /media/odd # mount -t iso9660 -o loop /tmp/RHEL-8.7.0-20221013.1-x86_64-dvd1.iso /media/odd or # mount -o loop /dev/cdrom /media/odd # vim /etc/yum.repos.d/odd.repo [RHEL8DVD_BaseOS] name=RHEL8DVD_BaseOS.. 2023. 7. 7.
Debug - Windbg/디버그를 위한 Symbol 지정하기 (Revised) Windows OS를 운영하다보면 알 수 없는 원인으로 장애가 발생하는 경우가 종종 있다. 원인을 규명하기 위해 강제로 메모리 덤프(현재 상태의 메모리 상주 정보를 강제로 저장)를 생성하게 된다. 그리 하면 .dmp 파일이 생성이 되는데, 이 파일을 열람하기 위해서는 디버깅 툴이 필요하다. 아래 경로에서 디버깅 툴을 다운로드 받고 설치하면 된다. Download and Install Debugging Tools for Windows https://learn.microsoft.com/en-us/windows-hardware/drivers/debugger/debugger-download-tools Start > Programs > Windows Kits > Debugging Tools for Windows .. 2023. 3. 29.
Red Hat - 2023 Legends of Linux TRIVIA Red Hat free badge event 몇 문제의 퀴즈를 풀고 나면, 뱃지를 얻을 수 있다! 이름 물어보길래, 이름 새겨주나 했더니 ... 그건 아닌듯 ... What is Linux? https://www.redhat.com/en/topics/linux/what-is-linux How well do you know Linux? Red Hat is offering three nifty badges for Linux® lovers and badge collectors alike. https://redhatdg.co1.qualtrics.com/jfe/form/SV_bjRFSHqPdTpIjoa?Q_R=R_2xWsDMYVUqedzyX&Choose_Quiz=true&Q_R_DEL=1 2023. 3. 28.
Linux 원하는 해상도 설정하기 (Revised) 1. 사용 가능 해상도 확인 (GUI 실행) # xrandr -q # xrandr Note. 결과에 현재 변경 가능한 해상도 외 특정 장치에 연결된 정보가 표시된다. (e.g.) VGA-1 connected, 연결 장치는 장치마다 다르게 표시될 수 있음) 2. cvt 명령으로 변경하고자 하는 해상도의 modeline 확인 (변경 가능 해상도가 없는 경우) # cvt 1600 960 -------------------------- # 1600x960 59.92 Hz (CVT) hsync: 59.68 kHz; pclk: 127.00 MHz Modeline "1600x960_60.00" 127.00 1600 1696 1864 2128 960 963 973 996 -hsync +vsync ------------.. 2023. 3. 9.
How disable Linux firewall (Revised) Check Status # systemctl status firewalld Start and Stop # systemctl start firewalld # systemctl stop firewalld Enable and Disable # systemctl disable firewalld # systemctl enable firewalld Legacy - ipchains/iptables Stop ipchains. # service ipchains stop Stop iptables. # service iptables stop Disable ipchains. # chkconfig ipchains off Disable iptables. # chkconfig iptables off 2023. 3. 8.
Windows 1x, SSH Server 구성 Windows 10, Windows 11 SSH Server 구성: 1) Check status for SSH tools via POSH PS> Get-WindowsCapability -Online | Where-Object Name -like 'OpenSSH*' Name : OpenSSH.Client~~~~0.0.1.0 State : NotPresent Start-Service sshd # Status of the sshd service PS> Get-Service sshd # Stop the sshd service PS> Stop-Service sshd # OPTIONAL but recommended: PS> Set-Service -Name sshd -StartupType 'Automatic' # C.. 2023. 2. 15.
Windows.old 강제 삭제 Windows 10에서 Windows 11 업그레이드 후, 어떤 사유에서인지, Windows.old 파일의 일부가 삭제되지 않고 남아있다. (분명 자동 삭제 된다고 했는데 ... 무서운 녀석들 ...) 해서 알려진 Disk 정리를 시도했지만 역시 안되고 ... 강제 삭제를 위해 찾아보니 역시 고수님이 알려주신 ... 1. 관리자 권한으로 Command 창 열기 2. 권한 취득 C:\> takeown /F C:\Windows.old\* /R /A /D Y C:\> cacls C:\Windows.old\*.* /T /grant administrators:F 3. 강제 삭제 C:\> rd /s C:\Windows.old takeown https://learn.microsoft.com/en-us/windows-.. 2022. 9. 28.
Linux/check WWN and state of port(s) Linux WWN 확인: System 장착된 HBA 정보 # ll /sys/class/scsi_host 위 명령의 결과에서, HBA hostXX 정보 확인 후, # cat /sys/class/scsi_host/hostXX/port_name # cat /sys/class/scsi_host/hostXX/port_state 참조 툴: Fibreutils for HPE Storage Fibre Channel Host Bus Adapters for Linux -Red Hat Enterprise Linux (RHEL) https://support.hpe.com/connect/s/softwaredetails?softwareId=MTX_1dbf71983b26453da634c97ee4&language=en_US&tab=.. 2022. 9. 2.
반응형