问题解决
使用VTune Remote连接Linux服务器时,出现了无法使用scp的问题,我首先在cmd中使用scp传输了一个文件,发现无法传输,也没有报错,只是出现了PATH环境变量,仔细查看后发现,PATH中没有默认的临时文件保存路径/tmp,因此,在~/.bashrc
中添加:
export PATH=/tmp:$PATH
然后执行命令:
source ~/.bashrc
source一下后,发现仍然报错,几经查找,在官网上发现了一篇文章,正是解决这个问题,于是在~/.bashrc
中添加如下代码:
if [ -z "$PS1" ]; then
return
fi
重新运行VTune,问题解决。
参考
Intel® VTune™ Amplifier - Collection failed due to SCP failing to copy files from the host to the target
Set Up Linux* System for Remote Analysis