학번 : 이름 : 1. 다음파일트리구조를가진유닉스시스템이있다고가정하자. / /bin/ /home/ /home/taesoo/ /usr/ /usr/lib/ /usr/local/lib /media 모든폴더에파일이하나도없다고가정했을때사용자가터미널에서다음 ls 명령입력시화면출력을예측하시오. $ cd /usr $ ls..? $ ls.? 2. 다음그림은어떤프로세스가다음코드를수행했다는가정에서도시되었다. int newfd=dup(1); 여기서화살표는 file table 과 v-node 테이블의연결관계를나타낸다. a) 변수 newfd 에들어있는값은? b) 다음명령수행후의테이블연결관계를위그림을참고하여도시하시오. int fd1=open(pathname, oflags); int fd2=open(pathname, oflags); // fd1==3, fd2==5 를가정하시오.
3. 다음 ll 명령의결과를보고아래질문에답하시오. (ll 은 ls -alf 의약자.) $ ll /usr/bin/passwd -rwsr-xr-x 1 root root 42824 Apr 9 2012 /usr/bin/passwd* $ ll /usr/bin/apt-get -rwxr-xr-x 1 root root 192592 Aug 21 07:38 /usr/bin/apt-get* $ ll /etc/passwd -rw-r--r-- 1 root root 1711 Sep 26 14:23 /etc/passwd a) 두실행파일 (passwd, apt-get) 의파일권한이어떻게다른지설명하고, 그래야만하는이유를설명하시오. b) 다음구체적인사용예 ~$ whoami taesoo ~$ passwd ~$ sudo apt-get install gcc 에서 passwd 와 apt-get 프로세스의 real user 와 effective user 를각각적으시오. 4. Bourne-again 셸 (bash) 은다음과같은표기법을지원한다. n> 파일이름이것은해당파일을연후, 그파일서술자 fd 와같은파일로파일서술자 (file descriptor) n 을재지정하는것이다. 즉시스템호출 dup2(fd, n) 에해당한다. 숫자 n 생략시 n 은 1(stdout) 이다. ( 예 :./a.out > outfile 시 1 번파일서술자는 outfile 을가리킨다.) n>& fd 이것은파일서술자 (file descriptor) n 을파일서술자 fd 와같은파일로재지정하는것이다. 즉 dup2(fd, n) 에해당한다. 그렇다면다음명령수행후 outfile 의내용과화면내용을각각설명하시오. 소스코드 : void main() fprintf(stderr, err ); fprintf(stdout, out ); a) $./a.out 2> outfile 터미널화면 : outfile: b)./a.out > outfile 2>&1 터미널화면 : outfile: c)./a.out 2>&1 > outfile 터미널화면 :
outfile: ( 힌트 : 셸은주어진명령줄을왼쪽에서오른쪽으로처리한다 ) 5. a) 다음명령실행상황을읽어본후아래공란 ( ) 에적절한숫자를적으시오. ~/temp$ umask 777 ~/temp$ touch a ~/temp$ ll total 16 drwx------ 2 taesoo taesoo 4096 Oct 15 16:47./ drwxr-xr-x 137 taesoo taesoo 12288 Oct 15 16:45../ ---------- 1 taesoo taesoo 0 Oct 15 16:47 a ~/temp$ umask ( ) ~/temp$ touch b ~/temp$ ll total 16 drwx------ 2 taesoo taesoo 4096 Oct 15 16:48./ drwxr-xr-x 137 taesoo taesoo 12288 Oct 15 16:45../ ---------- 1 taesoo taesoo 0 Oct 15 16:47 a -rw-r--r-- 1 taesoo taesoo 0 Oct 15 16:48 b ~/temp$ ( 힌트 : touch 명령은빈파일을생성함. 파일 a 와파일 b 는파일권한이다름, ll 은 ls -alf 의약자.) b) 파일 a 의 permission( 권한 ) 을파일 b 와동일하게만드려면아래명령을수행해야함. 공란에적절한숫자를적으시오. ~/temp$ chmod ( ) a c) 다음 c 코드수행후셸에서 ll a 입력시결과를예측하시오. chmod( a, S_IRUSR S_IXGRP S_IRGRP S_IWOTH); 6. ln b c 명령을사용해서 b 파일을 c 파일로하드링크를건후의 ll 결과이다. total 16 drwx------ 2 taesoo taesoo 4096 Oct 15 17:12./ drwxr-xr-x 137 taesoo taesoo 12288 Oct 15 16:45../ -rw-r--r-- 1 taesoo taesoo 0 Oct 15 16:47 a -rw-r--r-- 2 taesoo taesoo 0 Oct 15 16:48 b -rw-r--r-- 2 taesoo taesoo 0 Oct 15 16:48 c 여기서이숫자 2 는무엇을의미하는가? 다른숫자로바꾸는방법은?
7. 표준 I/O 스트림에 fsync 함수를사용해야하는상황이라면어떻게해야할까? ( 즉모든출력이디스크에저장되도록보장하려면?) 9. 다음프로그램이하는일을간단히설명하시오. int main(int argc, char *argv[]) char* path=argv[1]; struct stat statbuf; struct dirent *dirp; DIR *dp; if ((dp = opendir(path)) == NULL) exit(1); while ((dirp = readdir(dp))!= NULL) printf("%s\n", dirp->d_name); 10. line buffered, unbuffered, fully buffered stream 의차이점을간단히설명하시오. (fprintf 사용상황, buffer size=1024 를가정하세요.) 11. 다음프로그램의출력물을예측하시오. ( 컴파일은잘된다고가정 ) jmp_buf jmpbuffer; int main(int argc, char *argv[]) printf("1\n"); if(setjmp(jmpbuffer)!=0) printf("2\n"); printf("3\n"); cmd(); printf("4\n"); void cmd() static int i=0; printf("5\n"); i++; if (i<2) longjmp(jmpbuffer, 1); printf("6\n");
12. 다음프로그램의출력물을예측하시오. void m1(void) printf("1\n"); void m2(void) printf("2\n"); int main(void) atexit(m2); atexit(m2); atexit(m1); printf("done\n"); return 0; 13. _Exit 과 exit 의차이점을간단히설명하시오. 14. 아래와같이 file1, file2, file3 의내용이확인되는상황을가정하자. ~/test$ cat file1 file1 ~/test$ cat file2 file2 ~/test$ cat file3 asdf lkj 이때아래명령어의출력결과를예측하시오. ~/test$ cat file3 cat /dev/fd/0 file1 file2 > /dev/fd/1 15. etags 와 gdb 를간단히설명하세요. ( 용도또는대표적기능 ) 16. 하드디스크상의특정파일의내용을복사하는프로그램을작성할때다음두가지방법중하나를써야만한다면, 둘중에어느것이속도가빠를지예측하고, 이유를간단히설명하시오. a) fgetc, fputc 사용 b) read, write 함수에서 nbytes 값으로 1 사용. 참고 : ssize_t read(int filedes, void *buf, size_t nbytes);
17. 아래와같은파일의존성 (dependency 를가정하시오 ) a) fred.c 변경시재생성되어야하는파일들은? b) 아래메이크파일의공란에필요한파일이름들을적으세요. program : ( ) gcc o program main.o libfoo.a libfoo.a: ( ) ar crv libfoo.a ( ) main.o : lib.h main.c gcc c main.c bill.o : ( ) gcc c bill.c fred.o : ( ) gcc c fred.c c) static library 인 libfoo.a 대신동적라이브러리 (shared library) libfoo.so 를만들어서사용하는것이유용한대표적상황한가지를설명하세요.