strace -o output -fp <실행할려고하는 스크립트 pid>
grep "No such file" output > output1
예시)
아래 예시는 ls -al 실행하고 10초 쉬고 다시 ls -al 실행하는 쉡스크립트입니다.
[root@oracle ~]# cat test.sh
#!/bin/sh
ls -al
sleep 10
ls -al
sleep 10
ls -al
sleep 10
ls -al
sleep 10
ls -al
sleep 10
ls -al
sleep 10
ls -al
sleep 10
[root@oracle ~]# ps -ef | grep test.sh | grep -v grep
root 3567 16338 0 15:09 pts/4 00:00:00 /bin/sh ./test.sh
[root@oracle ~]# strace -o output -fp 3567
ctrl + c 를 눌러 중지.
grep "No such file" output > output1
[root@oracle ~]# cat output1
3618 access("/etc/ld.so.preload", R_OK) = -1 ENOENT (No such file or directory)
3618 open("/usr/share/locale/en_US.UTF-8/LC_TIME/coreutils.mo", O_RDONLY) = -1 ENOENT (No such file or directory)
3618 open("/usr/share/locale/en_US.utf8/LC_TIME/coreutils.mo", O_RDONLY) = -1 ENOENT (No such file or directory)
3618 open("/usr/share/locale/en_US/LC_TIME/coreutils.mo", O_RDONLY) = -1 ENOENT (No such file or directory)
3618 open("/usr/share/locale/en.UTF-8/LC_TIME/coreutils.mo", O_RDONLY) = -1 ENOENT (No such file or directory)
3618 open("/usr/share/locale/en.utf8/LC_TIME/coreutils.mo", O_RDONLY) = -1 ENOENT (No such file or directory)
3618 open("/usr/share/locale/en/LC_TIME/coreutils.mo", O_RDONLY) = -1 ENOENT (No such file or directory)
3618 connect(4, {sa_family=AF_FILE, path="/var/run/nscd/socket"...}, 110) = -1 ENOENT (No such file or directory)
3618 connect(4, {sa_family=AF_FILE, path="/var/run/nscd/socket"...}, 110) = -1 ENOENT (No such file or directory)
3618 connect(4, {sa_family=AF_FILE, path="/var/run/nscd/socket"...}, 110) = -1 ENOENT (No such file or directory)
3618 connect(4, {sa_family=AF_FILE, path="/var/run/nscd/socket"...}, 110) = -1 ENOENT (No such file or directory)
3618 open("/usr/share/locale/en_US.UTF-8/LC_MESSAGES/coreutils.mo", O_RDONLY) = -1 ENOENT (No such file or directory)
3618 open("/usr/share/locale/en_US.utf8/LC_MESSAGES/coreutils.mo", O_RDONLY) = -1 ENOENT (No such file or directory)
3618 open("/usr/share/locale/en_US/LC_MESSAGES/coreutils.mo", O_RDONLY) = -1 ENOENT (No such file or directory)
3618 open("/usr/share/locale/en.UTF-8/LC_MESSAGES/coreutils.mo", O_RDONLY) = -1 ENOENT (No such file or directory)
3618 open("/usr/share/locale/en.utf8/LC_MESSAGES/coreutils.mo", O_RDONLY) = -1 ENOENT (No such file or directory)
3618 open("/usr/share/locale/en/LC_MESSAGES/coreutils.mo", O_RDONLY) = -1 ENOENT (No such file or directory)
3619 access("/etc/ld.so.preload", R_OK) = -1 ENOENT (No such file or directory)
3620 access("/etc/ld.so.preload", R_OK) = -1 ENOENT (No such file or directory)
3620 open("/usr/share/locale/en_US.UTF-8/LC_TIME/coreutils.mo", O_RDONLY) = -1 ENOENT (No such file or directory)
3620 open("/usr/share/locale/en_US.utf8/LC_TIME/coreutils.mo", O_RDONLY) = -1 ENOENT (No such file or directory)
3620 open("/usr/share/locale/en_US/LC_TIME/coreutils.mo", O_RDONLY) = -1 ENOENT (No such file or directory)
3620 open("/usr/share/locale/en.UTF-8/LC_TIME/coreutils.mo", O_RDONLY) = -1 ENOENT (No such file or directory)
3620 open("/usr/share/locale/en.utf8/LC_TIME/coreutils.mo", O_RDONLY) = -1 ENOENT (No such file or directory)
3620 open("/usr/share/locale/en/LC_TIME/coreutils.mo", O_RDONLY) = -1 ENOENT (No such file or directory)
3620 connect(4, {sa_family=AF_FILE, path="/var/run/nscd/socket"...}, 110) = -1 ENOENT (No such file or directory)
3620 connect(4, {sa_family=AF_FILE, path="/var/run/nscd/socket"...}, 110) = -1 ENOENT (No such file or directory)
3620 connect(4, {sa_family=AF_FILE, path="/var/run/nscd/socket"...}, 110) = -1 ENOENT (No such file or directory)
3620 connect(4, {sa_family=AF_FILE, path="/var/run/nscd/socket"...}, 110) = -1 ENOENT (No such file or directory)
3620 open("/usr/share/locale/en_US.UTF-8/LC_MESSAGES/coreutils.mo", O_RDONLY) = -1 ENOENT (No such file or directory)
3620 open("/usr/share/locale/en_US.utf8/LC_MESSAGES/coreutils.mo", O_RDONLY) = -1 ENOENT (No such file or directory)
3620 open("/usr/share/locale/en_US/LC_MESSAGES/coreutils.mo", O_RDONLY) = -1 ENOENT (No such file or directory)
3620 open("/usr/share/locale/en.UTF-8/LC_MESSAGES/coreutils.mo", O_RDONLY) = -1 ENOENT (No such file or directory)
3620 open("/usr/share/locale/en.utf8/LC_MESSAGES/coreutils.mo", O_RDONLY) = -1 ENOENT (No such file or directory)
3620 open("/usr/share/locale/en/LC_MESSAGES/coreutils.mo", O_RDONLY) = -1 ENOENT (No such file or directory)
3621 access("/etc/ld.so.preload", R_OK) = -1 ENOENT (No such file or directory)
게시판 목록
프로그램
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 8230 | 9년 전 | 71 | ||
| 8229 | 9년 전 | 68 | ||
| 8228 |
커네드커네드
|
9년 전 | 112 | |
| 8227 | 9년 전 | 124 | ||
| 8226 | 9년 전 | 161 | ||
| 8225 | 9년 전 | 149 | ||
| 8224 | 9년 전 | 147 | ||
| 8223 | 9년 전 | 113 | ||
| 8222 |
|
9년 전 | 186 | |
| 8221 | 9년 전 | 90 | ||
| 8220 | 9년 전 | 102 | ||
| 8219 | 9년 전 | 99 | ||
| 8218 | 9년 전 | 139 | ||
| 8217 |
star3840
|
9년 전 | 113 | |
| 8216 | 9년 전 | 160 | ||
| 8215 | 9년 전 | 111 | ||
| 8214 | 9년 전 | 226 | ||
| 8213 | 9년 전 | 158 | ||
| 8212 | 9년 전 | 82 | ||
| 8211 | 9년 전 | 242 | ||
| 8210 | 9년 전 | 244 | ||
| 8209 | 9년 전 | 335 | ||
| 8208 | 9년 전 | 217 | ||
| 8207 | 9년 전 | 225 | ||
| 8206 |
|
9년 전 | 186 | |
| 8205 | 9년 전 | 169 | ||
| 8204 | 9년 전 | 131 | ||
| 8203 | 9년 전 | 232 | ||
| 8202 | 9년 전 | 139 | ||
| 8201 | 9년 전 | 181 | ||
| 8200 | 9년 전 | 163 | ||
| 8199 | 9년 전 | 213 | ||
| 8198 | 9년 전 | 174 | ||
| 8197 | 9년 전 | 167 | ||
| 8196 | 9년 전 | 555 | ||
| 8195 | 9년 전 | 155 | ||
| 8194 | 9년 전 | 280 | ||
| 8193 | 9년 전 | 155 | ||
| 8192 | 9년 전 | 188 | ||
| 8191 | 9년 전 | 141 | ||
| 8190 | 9년 전 | 127 | ||
| 8189 | 9년 전 | 189 | ||
| 8188 | 9년 전 | 128 | ||
| 8187 | 9년 전 | 141 | ||
| 8186 | 9년 전 | 141 | ||
| 8185 | 9년 전 | 309 | ||
| 8184 | 9년 전 | 108 | ||
| 8183 | 9년 전 | 324 | ||
| 8182 | 9년 전 | 166 | ||
| 8181 | 9년 전 | 130 | ||
| 8180 | 9년 전 | 692 | ||
| 8179 | 9년 전 | 487 | ||
| 8178 | 9년 전 | 310 | ||
| 8177 |
kiplayer
|
9년 전 | 318 | |
| 8176 | 9년 전 | 351 | ||
| 8175 | 9년 전 | 219 | ||
| 8174 | 9년 전 | 243 | ||
| 8173 | 9년 전 | 342 | ||
| 8172 | 9년 전 | 194 | ||
| 8171 | 9년 전 | 184 | ||
| 8170 | 9년 전 | 297 | ||
| 8169 |
커네드커네드
|
9년 전 | 260 | |
| 8168 | 9년 전 | 320 | ||
| 8167 | 9년 전 | 320 | ||
| 8166 | 9년 전 | 237 | ||
| 8165 | 9년 전 | 165 | ||
| 8164 | 9년 전 | 302 | ||
| 8163 | 9년 전 | 284 | ||
| 8162 | 9년 전 | 298 | ||
| 8161 | 9년 전 | 297 | ||
| 8160 |
|
9년 전 | 489 | |
| 8159 | 9년 전 | 427 | ||
| 8158 | 9년 전 | 248 | ||
| 8157 | 9년 전 | 374 | ||
| 8156 | 9년 전 | 279 | ||
| 8155 | 9년 전 | 251 | ||
| 8154 |
00년생용띠
|
9년 전 | 599 | |
| 8153 | 9년 전 | 229 | ||
| 8152 |
|
9년 전 | 408 | |
| 8151 | 9년 전 | 408 | ||
| 8150 | 9년 전 | 498 | ||
| 8149 |
Jangfolk
|
9년 전 | 348 | |
| 8148 | 9년 전 | 169 | ||
| 8147 | 9년 전 | 372 | ||
| 8146 | 9년 전 | 435 | ||
| 8145 | 9년 전 | 379 | ||
| 8144 | 9년 전 | 345 | ||
| 8143 | 9년 전 | 192 | ||
| 8142 | 9년 전 | 425 | ||
| 8141 | 9년 전 | 380 | ||
| 8140 | 9년 전 | 928 | ||
| 8139 | 9년 전 | 260 | ||
| 8138 |
전갈자리남자
|
9년 전 | 387 | |
| 8137 | 9년 전 | 395 | ||
| 8136 | 9년 전 | 744 | ||
| 8135 |
|
9년 전 | 794 | |
| 8134 |
PlayPixel
|
9년 전 | 514 | |
| 8133 |
|
9년 전 | 433 | |
| 8132 | 9년 전 | 447 | ||
| 8131 | 9년 전 | 811 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기