본문 바로가기

OS-OE Knowledge210

Note. ipmitool 명령 Show BMC Information # ipmitool lan print 1 # ipmitool mc info # ipmitool bmc info BMC IP Setting a. set static # ipmitool lan set 1 ipsrc static b. Set IP address # ipmitool lan set 1 ipaddr 192.168.15.2 c. Set Subnet/Netmask # ipmitool lan set 1 netmask 255.255.255.0 d. Set Default Gateway # ipmitool lan set 1 defgw ipaddr x.x.x.x e. Enable device. # ipmitool lan set 1 access on x.x.x.x Reset .. 2024. 1. 12.
Ubuntu/Manage netowork on Ubuntu 20.04.2 LTS Manage netowork on Ubuntu 20.04.2 LTS 1. Bringing interfaces up/down Two methods can be used to bring interfaces up or down. a. Using "ip" Usage: # ip link set dev up # ip link set dev down Example: # ip link set dev eth0 up # ip link set dev eth0 down b. Using "ifconfig" Usage: # /sbin/ifconfig up # /sbin/ifconfig down Example: # /sbin/ifconfig eth0 up # /sbin/ifconfig eth0 down 출처: https://tld.. 2023. 10. 20.
Ubuntu/Offline Repository 구성 Ubuntu Offline Repository 구성 일이 있어, Test를 하려니 Network가 기본으로 잡히지 않았다 ... Intel I350 part인데, 왜 안되지 ... igb driver를 설치하려니, gcc와 make가 없어 불가하다고 ... 천상 iso에서 설치해야 해서 ... offline repository 구성... 1. enable Ubuntu root # sudo passwd root > create root password 2. Remove repository data # rm /etc/apt/sources.list.d/* # mv /etc/apt/sources.list /etc/apt/sources.list.org 3. create mount point # mkdir -p /.. 2023. 10. 19.
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.
반응형