I want to run IBALauncher app as administrator. After downloading the tar.gz file what should I do?... I am using ubuntu 16.04 Thanku
Asked
Active
Viewed 17 times
0
tar xf <filename>
, then run it withsudo
– NinePlusTenEqualsTwentyOne Nov 25 '20 at 11:11tar.gz
file, so you needtar xzf filename.tar.gz
, and most like you also need to./configure
,make
and thensudo make install
but we can't know unless we know the details of the program. – terdon Nov 25 '20 at 12:53