创建符号链接
ln -s /mnt/ goto_mnt
验证是否创建了符号链接
[root@MIO-2 ~]# ls -l goto_mnt lrwxrwxrwx. 1 root root 5 Aug 22 22:17 goto_mnt -> /mnt/
打印出当前目录的符号链接
[root@MIO-2 ~]# ll | grep "^l" lrwxrwxrwx. 1 root root 5 Aug 22 22:17 goto_mnt -> /mnt/
使用find命令查找符号链接
[root@MIO-2 ~]# find / -type l
使用readlink打印出符号链接指向的目标路径
[root@MIO-2 ~]# readlink goto_mnt /mnt/