আমি প্রতীকী লিঙ্কগুলি আরও ভালভাবে বোঝার চেষ্টা করছি ... এবং খুব বেশি ভাগ্য নেই। ব্যবহারকারীর নাম / হোস্ট পরিবর্তিত এটি আমার আসল শেল আউটপুট:
username@host:~$ mkdir actual
username@host:~$ mkdir proper
username@host:~$ touch actual/file-1.txt
username@host:~$ echo "file 1" > actual/file-1.txt
username@host:~$ touch actual/file-2.txt
username@host:~$ echo "file 2" > actual/file-2.txt
username@host:~$ ln -s actual/file-1.txt actual/file-2.txt proper
username@host:~$ # Now, try to use the files through their links
username@host:~$ cat proper/file-1.txt
cat: proper/file-1.txt: No such file or directory
username@host:~$ cat proper/file-2.txt
cat: proper/file-2.txt: No such file or directory
username@host:~$ # Check that actual files do in fact exist
username@host:~$ cat actual/file-1.txt
file 1
username@host:~$ cat actual/file-2.txt
file 2
username@host:~$ # Remove the links and go home :(
username@host:~$ rm proper/file-1.txt
username@host:~$ rm proper/file-2.txt
আমি ভেবেছিলাম যে একটি প্রতীকী লিঙ্কটি স্বচ্ছতার সাথে পরিচালিত হওয়ার কথা ছিল, সেই অর্থে যে আপনি যে ফাইলটি সরাসরি ফাইলটি অ্যাক্সেস করছেন সেটিকে নির্দেশ করে (কোর্সের ক্ষেত্রে rm
যেখানে লিঙ্কটি সরানো হয়েছে কেবল তার ক্ষেত্রে ব্যতীত) )।
df -T
) - উপরের ফলাফলটিও কি আপনার কাছে আজব?