Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
29 | 30 | 31 |
Tags
- netsh
- lsof
- VirtualBox
- ssh
- maVen
- IntelliJ
- web.xml
- Mac
- GIT
- 줄바꿈 문자
- port
- Windows
- find
- context
- resource
- profile
- 네트워크
- import
- JavaScript
- grep
- xargs
- Windows 10
- vscode
- 단축키
- tomcat
- bash
- plugin
- Quartz
- Source
- Eclipse
Archives
- Today
- Total
develog
[linux] 시스템 정보 확인 본문
1. 시스템 정보 확인
- CPU 사양확인 : cat /proc/cpuinfo
- 메모리 용량 확인 : cat /proc/meminfo
- 기타하드웨어 확인 : cat /etc/sysconfig/hwconf
- LAN Card 사양 확인 : lspci | grep Ethernet
- SCSI 컨트롤로 확인 : lspci | grep SCSI
- HBA 컨트롤로 확인 : lspci | grep Fibre
- VGA Card 사양 확인 : lspci | grep VGA
- Gateway 확인 : route or netstat -nr
2. 시스템 정보 수정
- 호스트 네임 변경 : vi /etc/sysconfig/network
- 게이트웨이 변경 : vi /etc/sysconfig/network-scripts/ifcfg-eth0 -> service network restrart
3. 시스템 로그 확인
- 시스템 로그 : tail /var/log/messages
- 부팅로그 : dmesg | more or vi /var/log/dmesg
- 서비스(데몬)관련 로그 : tail -f /var/log/boot.log
- 보안(접근)관련 로그 : more /var/log/secure
- 현재 접속자 확인 : finger or who
4. rpm
- rpm -Uvh : 패키지 인스톨 (의존성 무시 : rpm -Uhv --nodeps)
- rpm -qa : 인스톨된 패키지 질의 (cf. rpm -qa | grep 패키지명)
- rpm -e : 패키지 삭제
# fdisk -l (파티션 전체 정보 보기)
# cat /proc/scsi/scsi (스카시 하드 디스크인 경우 하드디스크 정보 보기)
# cat /proc/ide/ide0/hda/model (IDE 하드인 경우)
# df -h
'OS & Shell > Linux' 카테고리의 다른 글
apachectl 옵션 (0) | 2012.04.13 |
---|---|
rsync (0) | 2012.04.12 |
[linux] 디렉토리 구조 (0) | 2012.04.12 |
[linux] 아파치 웹서버 동시접속 세션수 확인 (0) | 2012.04.12 |
리눅스 명령어 요약정리 (0) | 2012.04.12 |
Comments