/etc/profile
동일한 inode 번호로 5개의 복제본을 만드는 방법은 무엇입니까 ?
답변1
하드 링크를 만듭니다.
예를 들어:
sudo ln /etc/profile /etc/new_prof
이제 /etc/new_prof
둘 다 /etc/profile
동일한 inode 번호를 갖게 됩니다.
$ ls -li /etc/*prof*
3014852 -rw-r--r-- 3 root root 665 Aug 20 2013 /etc/new_prof
3014852 -rw-r--r-- 3 root root 665 Aug 20 2013 /etc/profile