728x90
find . -type f | xargs -n 5 touch

해당 디렉토리에서 위 명령 실행으로 시간을 다시 맞춰야 한다.
728x90

'Programming > linux왕초보' 카테고리의 다른 글

ALSA  (0) 2012.03.26
5. Asynchronous I/O  (0) 2012.02.24
4. File advice (일반적인 파일입출력을 위한 advice)  (0) 2012.02.21
3. Memory mapped I/O  (0) 2012.02.17
2. epoll(), select(), poll()  (0) 2012.02.08
1. Scatter/gather I/O(vectored I/O)  (0) 2012.01.29
리눅스 파일 입출력 (Linux File I/O)  (0) 2012.01.29
VMware에서 telnet server 실행 및 접속  (0) 2011.09.26
grep 사용하기  (1) 2011.07.29
어셈 명령어 정리  (1) 2011.03.22
728x90

1. Scatter/gather I/O(vectored I/O)

vector를 이용한 입출력으로 한번의 연산을 통해 선형 입출력 연산 여러개를 대체할 수 있다.(시스템 호출 횟수를 줄이며 원자성을 가진다.)

readv(), writev()

#include <sys/uio.h>

ssize_t readv(int fd, const struct iovec *iov, int count);

ssize_t writev(int fd, const struct iovec *iov, int count);

struct iovec{ void *iov_base; size_t iov_len;}

count가 작으면 리눅스 커널에서 동적할당 대신 segment array를 만들기 때문에 count가 충분히 작은 경우 성능이 개선된다.(현재 한계값은 8)

728x90
728x90

1. Scatter/gather I/O

여러개의 버퍼를 이용한 입출력

2. Epoll

Event Poll: poll()과 select()를 개선한 형태

3. Memory-mapped I/O

file을 memory mapping하여 사용

4. File advice

Allows a process to provide hints to the kernel on its usage scenarios; can result in improved I/O performance. (힌트일 뿐 명령은 아님)

5. Asynchronous I/O

thread를 이용하지 않고 동시에 입출력 처리 가능.

728x90
728x90
1. xinetd 및 telnetd 설치
#apt-get install xinetd telnetd

2. /etc/inetd.conf 파일수정(수정: 없으면 생성) 
telnet stream tcp nowait telnetd /usr/sbin/tcpd /usr/sbin/in.telnetd

3. /etc/xinetd.conf 파일수정(수정: 없으면 생성)
# Simple configuration file for xinetd
#
# Some defaults, and include /etc/xinetd.d/
defaults
{
# Please note that you need a log_type line to be able to use log_on_success
# and log_on_failure. The default is the following :
# log_type = SYSLOG daemon info
instances = 60
log_type = SYSLOG authpriv
log_on_success = HOST PID
log_on_failure = HOST
cps = 25 30
}

4. /etc/services 파일수정(수정: 없으면 생성, 이부분 수정하면 port를 바꿀 수 있다)
telnet        23/tcp

5. etc/xinetd.d/telnet 파일수정(수정: 없으면 생성)
# default: on
# description: The telnet server serves telnet sessions; it uses
# unencrypted username/password pairs for authentication.
service telnet
{
disable = no
flags = REUSE
socket_type = stream
wait = no
user = root
server = /usr/sbin/in.telnetd
log_on_failure += USERID
}

6. /etc/securetty 파일수정(수정: 마지막에 추가)
pts/0
pts/1
pts/2
pts/3
pts/4
pts/5
pts/6
pts/7
pts/8
pts/9

7. /etc/pam.d/login 파일수정(수정: 마지막에 추가)
auth required /lib/security/pam_listfile.so item=user sense=allow file=/etc/loginuser onerr=succeed

8. /etc/loginuser 파일수정(원하는 계정 모두 추가)
root

9. server 재시작
 /etc/init.d/xinetd restart
728x90

+ Recent posts