======= Linux inode = 파일이나 디렉터리의 고유한 숫자* = 모든것을 의미 1. 루트 디렉터리에서 # mkdir test2. # cd test 로 이동3. # touch /test/file1 or # cd /test # touch file1 4. # echo hello > /test/file2 5. # cat >> file2 or # cat >> /test/file2 ( >> 두개로 원래 있던 내용을 건드리지 않고 작성) byebye (엔터) CTL+D (저장) 6. # cat /test/file2 or # cat file2 7. # mkdir /test/dir1 or # mkdir dir1 8. # cp /test/f..