Tejas Shetty
An alternate way of faming this question is
> **How to configure texstudio to use a specific texlive version ?**
> In addition to the texlive version which ships with ubuntu, I installed a vanilla texlive 2021 and would like to use it in texstudio.
> For the usage via the terminal, I added the path in my .bashrc and it works fine.
> However in texstudio I have the problem, that even if I specify the full path, arara picks up the binaries from the system texlive versions. How can I change this this?
*Going back to the original thing*
My OS is Ubuntu 18.04 LTS.
I have arara working perfectly fine on the terminal. But when I set it up

It just gives
```
Process started: "/usr/local/texlive/2021/bin/x86_64-linux/arara" --verbose --max-loops 3 --log "basic"
__ _ _ __ __ _ _ __ __ _
/ _` | '__/ _` | '__/ _` |
| (_| | | | (_| | | | (_| |
\__,_|_| \__,_|_| \__,_|
arara 3.0a - The cool TeX automation tool
Copyright (c) 2012, Paulo Roberto Massa Cereda
All rights reserved.
usage: arara [file [--log] [--verbose] [--timeout N] [--language L] |
--help | --version]
-h,--help print the help message
-l,--log generate a log output
-L,--language <arg> set the application language
-t,--timeout <arg> set the execution timeout (in milliseconds)
-V,--version print the application version
-v,--verbose print the command output
Process exited normally
```
in the message section without actually doing anything
The TeX file in question contains
```
% arara: indent: { overwrite: yes }
% arara: pdflatex
% arara: bibtex
% arara: pdflatex
% arara: pdflatex
\documentclass{article}
\begin{document}
\section{Termite recipes}
\label{sec:termiterecipes}
A big idiotic citation from my thesis~\cite{peter:2020}.
\bibliographystyle{alpha}
\bibliography{bibliography}
\end{document}
```
and BibTeX
```
@phdthesis{peter:2020,
author = {Peter Anteater},
title
= {On flexibility: \LaTeX, latex and rubber},
school = {Polytechnic University of P{\^{a}}ntano Fundo},
year
= 2020,
address = {Pantanal},
month
= {jan}
}
```
arara in the teminal produces
```
__ _ _ __ __ _ _ __ __ _
/ _` | '__/ _` | '__/ _` |
| (_| | | | (_| | | | (_| |
\__,_|_| \__,_|_| \__,_|
Processing "basic.tex" (size: 328 B, last modified: 07/22/2021
21:38:30), please wait.
(Indent) The latexindent.pl script ...................... SUCCESS
(PDFLaTeX) PDFLaTeX engine .............................. SUCCESS
(BibTeX) The BibTeX reference management software ....... SUCCESS
(PDFLaTeX) PDFLaTeX engine .............................. SUCCESS
(PDFLaTeX) PDFLaTeX engine .............................. SUCCESS
Total: 1.38 seconds
```