坑:使用Centos 创建软连接时提示错:
ln-s 创建符号链接的时候一定要使用绝对路径,
[cqs@centos7 boost_1_59_0]$ sudo ln -s boost /usr/local/boost
解决方案:
[cqs@centos7 boost_1_59_0]$ pwd
/home/cqs/soft/boost/boost_1_59_0
[cqs@centos7 boost_1_59_0]$ sudo ln -s /home/cqs/soft/boost/boost_1_59_0/boost/ /usr/local/boost