Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to implement vtune automatic installation script

2025-04-05 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/03 Report--

This article introduces the relevant knowledge of "how to realize vtune automatic installation script". In the actual case operation process, many people will encounter such difficulties. Next, let Xiaobian lead you to learn how to deal with these situations! I hope you can read carefully and learn something!

The code is as follows:

#!/ bin/bash

#!/ usr/bin/expect -f

#!/ usr/bin/env bash

yum install -y expect wget

cd /root

wget http://172.16.92.99/share/tar/vtune_amplifier_xe_2013_update15.tar.gz

wget http://172.16.92.99/share/tar/EVAL_L_VT__VGXB-RDCJPN8X.lic

tar -zxvf vtune_amplifier_xe_2013_update15.tar.gz

expect -c "spawn sh /root/vtune_amplifier_xe_2013_update15/install.sh;

set timeout 5; expect "*Enter*"; send \"\r\n\";

expect "*Enter*"; send \"\r\n\";

expect "*Enter*"; send \"\r\n\";

while {1} {

expect {

"*--More--*" {send \"\r\n\"}

"*accept*" {break}

}

}

expect "*accept*"

send "accept\\r"

expect "*selection*";send "3\\r";

expect "*choice*"; send "2\\r";

send "/root/EVAL_L_VT__VGXB-RDCJPN8X.lic"

expect "*Enter*"; send \"\r\n\";

expect "*selection:*"; send "1\\r";

expect "*Enter*"; send \"\r\n\";

set timeout 25;

expect "*Enter*"; send \"\r\n\";

expect "*Enter*"; send \"\r\n\";

expect eof;"

rm -rf /root/*

source /opt/intel/vtune_amplifier_xe_2013/amplxe-vars.sh

"How to achieve vtune automatic installation script" content is introduced here, thank you for reading. If you want to know more about industry-related knowledge, you can pay attention to the website. Xiaobian will output more high-quality practical articles for everyone!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report