intel vtune 介紹、安裝和使用


intel vtune 介紹

https://software.intel.com/en-us/vtune

intel vtune 安裝包下載地址

https://software.intel.com/en-us/vtune/choose-download

intel® VTune™ Amplifier 2019 安裝手冊 - Linux* OS:

https://software.intel.com/sites/default/files/VTune Amplifier 2019.5 Install Guide for Linux.pdf

intel® VTune™ Amplifier 用戶使用手冊

https://software.intel.com/en-us/vtune-amplifier-help-introduction

安裝步驟:

Intel VTune Amplifier在Linux環境下的安裝:
$tar zxvf vtune_amplifie_2018_update3.tar.gz 
$cd vtune_amplifie_2018_update3
$install.sh

接下來就是傻瓜式操作了,如果是在線安裝,需要Serial Number,如果是離線安裝,則需要一份.lic文件。對於試用版,Serial Number和.lic文件是比較容易獲取的。
在后續的安裝過程中遇到一個問題,即

Missing critical prerequisite
-- Xorg X11 server is not found. 'Graphical user interface' component(s) cannot 
be installed.

這個應該是圖形用戶界面所需要的,所以我們可以暫停安裝VTune,先安裝Xorg X11 server

VNC Server在Linux環境下的安裝在下一節中說明。

說明:安裝需要root身份。

VNC Server常用的三個命令是:

$ps -ef | grep -i xvnc

$vncserver -kill :1

$vncserver :1

接下來,就可以使用安裝在Windows上的VNC客戶端連接VNC Server了,然后打開VTune應用

可執行文件為/opt/intel/vtune_amplifier/bin64/amplxe-gui

調分辨率:xrandr -s 1920x1200

注意這個命令並非是在SecureCRT上的終端上執行的,而是在VNC Viewer上的終端上執行的。

在Linux下安裝vnc-server

用處:遠程可以通過客戶端的方式訪問linux服務器

1.檢查是否安裝了VNC server

rpm -qa | grep vnc

2.沒有安裝那么通過yum安裝【Redhat不能使用Yum已經解決】

yum install tigervnc tigervnc-server

3.安裝完畢,第一次啟動需要輸入兩次密碼

vncserver

4.我們可以選擇關閉防火牆或者將VNC添加進去防火牆信任列表

關閉防火牆:service iptables stop

Tip:打開防火牆service iptables start

查看狀態:service iptables status

重新打開防火牆:service iptables restart

添加到信任用表:修改iptables

/etc/sysconfig/iptables

在-A INPUT -j REJECT --reject-with icmp-host-prohibited之前添加

-A INPUT -m state --state NEW -m tcp -p tcp --dport 5900:5903 -j ACCEPT
 
5.設置開啟啟動

安裝成功

修改密碼:

vncpasswd

停止服務

vncserver -kill :1

使用 vtune

To get started using Intel VTune Amplifier 2019 Update 5:

  • To set your environment variables:
    • csh/tcsh users: source
      /opt/intel/vtune_amplifier_2019.5.0.601413/amplxe-vars.csh
    • bash users: source
      /opt/intel/vtune_amplifier_2019.5.0.601413/amplxe-vars.sh
  • To start the graphical user interface: amplxe-gui
  • To use the command-line interface: amplxe-cl
  • For additional product configuration instructions, see the
    post-installation steps in the Intel VTune Amplifier
    Installation Guide:
    /opt/intel/vtune_amplifier_2019.5.0.601413/documentation/en/
  • For more getting started resources:
    /opt/intel/vtune_amplifier_2019.5.0.601413/documentation/en/welcomepage/get_star
    ted.htm

To view movies and additional training, visit
http://www.intel.com/software/products

https://blog.csdn.net/WY_stutdy/article/details/79106501

ref:
https://blog.csdn.net/xin917480852/article/details/78143210
https://blog.csdn.net/Pearson9/article/details/81506444
https://blog.csdn.net/WY_stutdy/article/details/79106501


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM