petrea77
petrea77

Reputation: 25

how to delete xilinx from my linux mint permanently

enter image description here

I had to manually delete all Xilinx files on my Linux Mint and now every time I open terminal this shows up.I don't know what is the cause. Does anyone now how to get rid of it? Thanks in advance.

Upvotes: 0

Views: 345

Answers (1)

Decclo
Decclo

Reputation: 71

Looks like your bash environment still tries to source Xilinx ISE.

Please open your .bashrc located at /home/$USER/.bashrc and find a line which looks something like

. /opt/Xilinx/14.7/ISE_DS/settings64.sh

or

source /opt/Xilinx/14.7/ISE_DS/settings64.sh

Bash might also source a file which sources a file. You might want to post the contents of /home/$USER/.bashrc in your question so we can give you better advice.

Other places to look might include /home/$USER/.bash_profile and /home/$USER/.bash_aliases, though I think it's rather unlikely you will find it there.

Upvotes: 1

Related Questions