Original post: http://www.aiotestking.com/linux/2011/07/which-command-would-accomplish-to-use-a-symbolic-link-to-tmpfoo-dfoo-conf/ Question 1: You are experimenting with a binary in /tmp/foo.d that expects its configuration file at /etc/foo.conf. You don’t want to save it there, but use a symbolic link to /tmp/foo.d/foo.conf instead. Which command would accomplish that? A. ln -s /tmp/foo.d/foo.conf /etc/foo.conf B. ln /tmp/foo.d/foo.conf /etc/foo.conf C. ln -s /etc/foo.conf /tmp/foo.d/foo.conf D. ln /etc/foo.conf /tmp/foo.d/foo.conf [Hint] Có hay không có "-s": Dùng "-s" để tạo soft link hay symbolic link (symlink), khi tạo hard link thì không có "-s). Thứ tự của original file và symlink file: "Có bột mới gột nên hồ", original file phải có sẵn và phải đứng trước symlink. Hard link chỉ link đến file và chỉ link đến file nằm trên cùng file system ln -s <orginal> <symlink> [Reference] Learn Linux...