Ubuntu安裝和使用Vivado

2021-10-22 20:50:42 字數 880 閱讀 2854

目錄

一:安裝ncurses庫

二:安裝vivado

三:安裝驅動

四:重啟電腦

五:啟動vivado

六:常用tlc命令

sudo apt install libncurses5
sudo ./xsetup
在安裝目錄/tools/xilinx/vivado/2018.3/data/xicom/cable_drivers/lin64/install_script/install_drivers執行

sudo ./install_drivers
輸入命令:

sudo gedit .bashrc
在該檔案末端,新增:   

source /tools/xilinx/vivado/2018.3/settings64.sh

source /tools/xilinx/sdk/2018.3/settings64.sh

關閉終端,並在你想建立vivado工程的目錄下,右鍵開啟終端,然後輸入命令:   

vivado        //開啟vivado軟體

xsdk //開啟sdk軟體

vivado_hls //開啟vivado hls軟體

設定最大執行緒數

set_param general.maxthreads 16
檢視最大執行緒數

get_param general.maxthreads

Ubuntu安裝和使用supervisor

前言 對於需要以程序的方式常駐在ubuntu系統中或開機啟動的指令碼程式,通常使用supervisor程序管理工具進行管理。本文將簡單介紹supervisor程序管理工具的安裝和使用。安裝 sudo apt get install supervisor新建程序配置 安裝supervsor程序管理工具...

ubuntu下tftp安裝和使用

這樣tftp伺服器就啟動了,下面可以做乙個測試 4.cd tftpboot touch test 建立乙個檔案 5.cd home usrname 登入另乙個目錄 6.tftp 192.168.0.59 換成自己的ip get tftpboot test 如果能夠得到檔案,那麼就成功了。ps 不要忘...

ubuntu下ctags安裝和使用

一.安裝 sudo apt get install ctags 二.建立tags索引檔案 cd 目錄 ctags r 指令執行完後出現tags檔案 三.etc vim vimrc檔案底部增加 set tags tags 四.使用方法 1.vim t 開啟定義 的檔案,命令列模式 2.ts 命令就能列...