글 수 367
CPU 확인
# dmesg | grep CPU
CPU: Intel(R) Xeon(TM) CPU 3.00GHz (2992.51-MHz K8-class CPU)
Hyperthreading: 2 logical CPUs
cpu0: <ACPI CPU> on acpi0
acpi_throttle0: <ACPI CPU Throttling> on cpu0
메모리 확인
# dmesg | grep memory
real memory = 1073610752 (1023 MB)
avail memory = 1025159168 (977 MB)
HDD 확인
# dmesg | grep SCSI
Waiting 5 seconds for SCSI devices to settle
ses0: <ESG-SHV SCA HSBP M30 1.07> Fixed Processor SCSI-2 device
da0: <COMPAQ BD03686223 HPB6> Fixed Direct Access SCSI-3 device
Network 설정
1. Sysinstall 사용
Configure -> Networking -> interface에서 해당 장치에 대한 IP주소 등을 설정하면 된다.
2. 수동설정
- 인터페이스 설정 -
# ifconfig em0 inet 192.168.100.10 netmask 255.255.255.0
- 기본 라우터 IP주소를 추가 -
# route add default 192.168.100.1
- 네임서버 추가 -
# vi /etc/resolve.conf
search localhost
nameserver 168.126.63.1
위 내용 추가
- 설정내용 반영 -
# sh /etc/netstart
# dmesg | grep CPU
CPU: Intel(R) Xeon(TM) CPU 3.00GHz (2992.51-MHz K8-class CPU)
Hyperthreading: 2 logical CPUs
cpu0: <ACPI CPU> on acpi0
acpi_throttle0: <ACPI CPU Throttling> on cpu0
메모리 확인
# dmesg | grep memory
real memory = 1073610752 (1023 MB)
avail memory = 1025159168 (977 MB)
HDD 확인
# dmesg | grep SCSI
Waiting 5 seconds for SCSI devices to settle
ses0: <ESG-SHV SCA HSBP M30 1.07> Fixed Processor SCSI-2 device
da0: <COMPAQ BD03686223 HPB6> Fixed Direct Access SCSI-3 device
Network 설정
1. Sysinstall 사용
Configure -> Networking -> interface에서 해당 장치에 대한 IP주소 등을 설정하면 된다.
2. 수동설정
- 인터페이스 설정 -
# ifconfig em0 inet 192.168.100.10 netmask 255.255.255.0
- 기본 라우터 IP주소를 추가 -
# route add default 192.168.100.1
- 네임서버 추가 -
# vi /etc/resolve.conf
search localhost
nameserver 168.126.63.1
위 내용 추가
- 설정내용 반영 -
# sh /etc/netstart