'분류 전체보기'에 해당되는 글 256건

1) 사용중인 리눅스배포판 확인

cat /etc/issue.net (레드햇 계열이 아닐경우)
cat /etc/redhat-release (레드햇 계열일 경우)

2) 현재 시스템 비트구조 확인

getconf LONG_BIT


- 결과값이 32이면 32비트 시스템이고 64이면 64비트 시스템

현재 리눅스 배포판 조회하기

cat /etc/issue
uname -a 
cat /etc/redhat-release 


3) CPU 프로세서 확인

cat /proc/cpuinfo

- 하이퍼쓰레드를 지원하는 CPU 또는 듀얼코어 CPU는 아래와 같이 두개의 CPU정보가 출력

 

<실행 결과> 

processor       : 0

vendor_id       : GenuineIntel

cpu family      : 15

model           : 2

model name      : Intel(R) Pentium(R) 4 CPU 3.20GHz

stepping        : 9

cpu MHz         : 3215.662

cache size      : 512 KB

 

processor       : 1

vendor_id       : GenuineIntel

cpu family      : 15

model           : 2

model name      : Intel(R) Pentium(R) 4 CPU 3.20GHz

stepping        : 9

cpu MHz         : 3215.662

cache size      : 512 KB

 

4) 메모리 정보 확인

(방법1)

cat /proc/meminfo

(방법2)

free -m

- m : mega byte단위로 보여줍니다

- 출력결과 설명

메모리의 전체용량(total)

유휴메모리의 량(used)

사용중인 메모리의 량(free)

스왑(swap)메모리의 량(Swap)

커널에서 사용되는 공유메모리(shared)

버퍼 크기 (buffer)

캐시된 메모리의 량 (cached)

 

5) 하드디스크 확인

df

6) 사용중인 컴퓨터 IP주소 확인

ifconfig

출력예제

Link encap:Ethernet  HWaddr 00:0D:61:23:92:C3

inet addr:210.205.6.84  Bcast:210.205.6.255  Mask:255.255.255.0

UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1

 

리눅스 배포판마다 위의 명령이 실행 안될수도 있음.

7) 호스트이름 및 상세 커널버전 및 대략 커널버전 확인

uname -a
kernelversion

- 리눅스가 깔렸다면 당연히 운영체제는 리눅스리눅스의 커널 버전 보여줌

8) 자세한 모든 정보 확인

dmesg

- 내용이 많으므로 파일에 저장해서 봅니다. dmesg > infor.txt

9) 현재 파일시스템 보기

dmesg > infor.txt
vi ifor.txt

에서 아래의 항목을 찾습니다.

SELinux: initialized (dev hdb1, type ext3), uses xattr

10) 사용중인 쉘(shell) 확인

export 엔터
env 엔터
- SHELL=/bin/bash <- 배시쉘
- SHELL=/usr/bin/ksh <-콘쉘

 

 

블로그 이미지

디츠

“말은 쉽지, 코드를 보여줘.” “Talk is cheap. Show me the code.” – 리누스 토르발스(Linus Torvalds)

,

jquery - ajax

javascript, jquery 2014. 10. 7. 00:29
$.ajax({
	type: "POST" / "GET",
	url: "test.php",
	dataType: "html" / "json" / "xml" / "script",
	data: { name:value }
	timeout: 30000,
	cache: false / true,
	success: function(result) {
		$("#result").html(result);
	}
});

'javascript, jquery' 카테고리의 다른 글

이미지 변경하기  (0) 2014.10.10
ajax - ajaxStart, ajaxStop  (0) 2014.10.08
텍스트 롤링(rolling)  (0) 2014.10.03
jquery plugin site  (0) 2014.10.03
스크롤 이동 - scrollTo  (0) 2014.10.03
블로그 이미지

디츠

“말은 쉽지, 코드를 보여줘.” “Talk is cheap. Show me the code.” – 리누스 토르발스(Linus Torvalds)

,
* 포트 리다이렉션
# iptables -t nat -I PREROUTING -p tcp --dport 35001 -j REDIRECT --to-ports 8080
# iptables -t nat -I OUTPUT -p tcp --dport 35001 -j REDIRECT --to-ports 8080
* 적용
/etc/rc.d/init.d/iptables save
* 서버 시작
/etc/rc.d/init.d/iptables restart

 

* 확인
iptables -t nat -L

* 110번 포트 tcp / udp 허용

# iptables -A INPUT -p udp --dport 110 -j ACCEPT
# iptables -A INPUT -p tcp --dport 110 -j ACCEPT

* 110번 포트 차단

# iptables -A INPUT -p tcp --dport 110 -j DROP 

* 대역폭 차단

# iptables -A INPUT -s 1.2.3.0/24 -j DROP
블로그 이미지

디츠

“말은 쉽지, 코드를 보여줘.” “Talk is cheap. Show me the code.” – 리누스 토르발스(Linus Torvalds)

,

* 구조만 복사

create table source_table like target_table

* 구조 및 데이터 복사

create table source_table as select * from target_table;

'database, query' 카테고리의 다른 글

페이징시 유효한 FOUND_ROWS();  (0) 2014.10.09
mysql table / column(type) 변경  (0) 2014.10.08
mysqldump(백업)  (0) 2014.10.08
테이블 컬럼 추가, 변경, 삭제  (0) 2014.09.27
union(유니콘) 디비 샘플 쿼리  (0) 2014.09.27
블로그 이미지

디츠

“말은 쉽지, 코드를 보여줘.” “Talk is cheap. Show me the code.” – 리누스 토르발스(Linus Torvalds)

,

* style

<style>
.ticker {
	height: 30px;
	overflow: hidden;
	margin: 0;
	padding: 0;
	list-style: none;
}

.ticker li {
	height: 30px;
	padding: 5px;
	margin: 0px 5px;
}
</style>

* script

<script>
function tick() {
	$('#ticker li:first').fadeOut(function() {
		$(this).appendTo($('#ticker_01')).fadeIn(100); // li 첫번째 요소를 fadeOut 처리뒤에 li 요소 마지막으로 붙이고 fadeIn
	});
}
setInterval(function(){ tick () }, 5000);
</script>

* html

<div>
	<ul id="ticker" class="ticker">
		<li><a href="#">111</li>
		<li><a href="#">222</li>
		<li><a href="#">333</li>
		<li><a href="#">444</li>
	</ul>
</div>

'javascript, jquery' 카테고리의 다른 글

ajax - ajaxStart, ajaxStop  (0) 2014.10.08
jquery - ajax  (0) 2014.10.07
jquery plugin site  (0) 2014.10.03
스크롤 이동 - scrollTo  (0) 2014.10.03
ui > rgb slider  (0) 2014.10.03
블로그 이미지

디츠

“말은 쉽지, 코드를 보여줘.” “Talk is cheap. Show me the code.” – 리누스 토르발스(Linus Torvalds)

,
http://www.htmldrive.net/

'javascript, jquery' 카테고리의 다른 글

jquery - ajax  (0) 2014.10.07
텍스트 롤링(rolling)  (0) 2014.10.03
스크롤 이동 - scrollTo  (0) 2014.10.03
ui > rgb slider  (0) 2014.10.03
ui > www.jqueryui.com  (0) 2014.10.03
블로그 이미지

디츠

“말은 쉽지, 코드를 보여줘.” “Talk is cheap. Show me the code.” – 리누스 토르발스(Linus Torvalds)

,