본문 바로가기

RHEL15

RHEL/ACPI Error logged on /var/log/messages OS Event log - messagesOct 14 07:09:07 Hostname kernel: ACPI Error: SMBus/IPMI/GenericSerialBus write requires Buffer of length 66, found length 32 (20130517/exfield-389)Oct 14 07:09:07 Hostname kernel: ACPI Error: Method parse/execution failed [\_SB_.PMI0._PMM] (Node ffff88016d9e8ed8), AE_AML_BUFFER_LIMIT (20130517/psparse-536)Oct 14 07:09:07 Hostname kernel: ACPI Exception: AE_AML_BUFFER_LIMIT.. 2020. 10. 14.
RHEL7/Using ifconfig command RHEL7 을 기본 설치 후 ifconfig 명령을 수행하면 오류가 난다. 더이상 기본 패키지가 아니다. # ifconfig -bash: ifconfig: command not found 대신 다른 명령을 통해 확인 가능하다. (Check IP Address)# ip a s # ip addr show # ip -s link 너무 익숙해서 다시 사용하고 싶다면, 설치하면 되는 것~ ifconfig 명령을 사용하기 위해 설치해야 하는 패키지 확인# yum provides ifconfig# yum whatprovides ifconfig 필요 패키지 설치# yum install net-tools 이제 잘 된다.# ifconfig -a 2019. 5. 18.
RHEL7/Teaming 차차 Bonding을 대체하게될 Teaming을 사용해보자. # nmcli device status# nmcli connection show ----------------------------------# nmcli con add type team con-name CNAME ifname INAME [config JSON] Where CNAME will be the name used to refer the connection ,INAME will be the interface name and JSON (JavaScript Object Notation) specifies the runner to be used. JSON has the following syntax: '{"runner":{"name":"MET.. 2015. 5. 16.
RHEL7/Teamviewer 설치 1. 필요한 패키지 사전 설치# yum install glibc alsa-lib freetype libICE libSM libX11 libXau libXdamage libXext libXfixes libXi libXrandr libXrender libXtst libgcc libuuid libxcb zlib 2. 시스템프록시 구성(필요 시, 택 일)# export http_proxy= 3. 설치 패키지 다운로드# wget http://download.teamviewer.com/download/teamviewer_linux.rpm 4. 패키지 설치 - 사전 필요 패키지를 설치했음에도 의존성 검사가 실패하며 설치가 안되는 경우가 간혹 있더라 ㅡ.ㅡ;# rpm -Uvh teamviewer_linux.rpm---.. 2015. 5. 16.
RHEL7/NIC interface ethx 사용 (NIC Naming Convention) RHEL7에서 NIC 장치의 명명 규칙이 변화를 갖었다. RHEL 7 the names have two character prefixes based on the type of interface:en for Ethernet,sl for serial line IP (slip),wl for wireless LAN (WLAN),ww for wireless wide area network (WWAN). 과거의 ethx 로 장치명을 사용하기 위해1. MAC Address 확인[root@RH71 ~]# ip link1: lo: mtu 65536 qdisc noqueue state UNKNOWN mode DEFAULT link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:002: .. 2015. 5. 16.
RHEL7/VNC Server 설치/구성 RHEL7에 VNC 접근을 위해 VNC 서버를 설치 및 구성해보자. 1. VNC 관련 패키지 설치 (택 일)# yum install vnc*or # yum install tigervnc-server 2. VNC 에 접근시 사용할 Password 구성# vncserver; vncserver -kill :1----------Input vnc password :---------- 2. VNC 관련 GUI 패키지 설치# yum groupinstall 'X Window System' 'Desktop' 3. VNC를 통해 접근 시 사용할 해상도 지정# vncserver -geometry 1280x768 4. VNC 접근에 사용할 구성파일 편집# cp /lib/systemd/system/vncserver@.servi.. 2015. 5. 16.
Why does yum return error: [Errno 256] No more mirrors to try ? Why does yum return error: [Errno 256] No more mirrors to try ?https://access.redhat.com/solutions/203603 Issue[Errno 256] No more mirrors to try. Resolution# rm -fr /var/cache/yum/*# yum clean all# yum repolist all 2015. 5. 16.
RHEL7 - Build Repository RHEL7 설치 후 DVD media를 사용해 Repository 구성하기. 1. DVD 미디어를 마운트# mkdir -p /media/RH7-DVD # mount -o loop /dev/cdrom /media/RH7-DVD 2. Repo 구성 파일 생성/편집# vi /etc/yum.repos.d/RH7-DVD.repo아래 내용과 유사하도록 편집 -------------------[RHEL7-DVD]NAME=RHEL7-DVDBASEURL=file:///media/RH7-DVDENABLED=1GPGCHECK=0------------------------------------------ 3. 지속적으로 사용하기 위해 등록(선택)# vi /etc/fstabAppend below line ------------.. 2015. 5. 16.
GNU Bourne Again Shell (Bash) "Shellshock" Vulnerability 이슈 : "Shellshock" bash 쉘 취약점 취약사항 : 원격의 공격자가, bash의 환경 변수 할당 시 문자열 코드를 전달하는 과정에 공격자의 임의의 악성코드를 실행할 수 있는 취약 사항이 2014-09-24일 발견됨 확인된 취약사례 1. bash 쉘에서 수행되는 Apache HTTP Server의 CGI Scriptis (via mod-cgi and mod_cgid) 2. DHCP Clients 3. Force Command를 사용하는 OpenSSH Server 4. bash를 사용하는 네트워크 관련 서비스들 각 OS 제조사에서는 현재 bash 쉘 관련 패치를 긴급 배포 중이다. RHEL: Bash Code Injection Vulnerability via Specially Crafted En.. 2014. 10. 3.