=======================
Run Installer in Ubuntu
=======================
Graphical Method
Right click on the file in the file manager and click 'Properties'. Click the 'Permissions' tab and tick the box that says 'Allow executing file as program'.
Double click the file to execute it.
If this method doesn't work, try using the terminal method.
Terminal Method
Assume the file is called some-app.run and is in the folder /home/user/Downloads. You will need to modify these instructions to fit your situation.
Open a terminal (Applications->Accessories->Terminal).
enter cd /home/user/Downloads
enter chmod +x app.run
enter ./app.run
if step 4 fails with a message including 'permission denied', try entering sudo ./app.run (you will need to enter your password for this).
====================================
How to install tar.gz file on Ubuntu
====================================
Issue
I have downloaded a file with the tar.gz extension. How do I install it?
Solution
$tar -zxvf program.tar.gz
$tar -zjvf program.tar.bz2
Change the directory to unzipped folder, i.e.:
cd /download/program/
./configure
make
sudo make install
if compiler show error
try this
apt-get install libc6-dev g++ gcc c++
apt-get install libc6-dev g++ gcc
sudo apt-get install clang && rvm install 1.9.3 --with-gcc=clang
apt-get install libaprutil1-dev
sudo apt-get install build-essential
Run Installer in Ubuntu
=======================
Graphical Method
Right click on the file in the file manager and click 'Properties'. Click the 'Permissions' tab and tick the box that says 'Allow executing file as program'.
Double click the file to execute it.
If this method doesn't work, try using the terminal method.
Terminal Method
Assume the file is called some-app.run and is in the folder /home/user/Downloads. You will need to modify these instructions to fit your situation.
Open a terminal (Applications->Accessories->Terminal).
enter cd /home/user/Downloads
enter chmod +x app.run
enter ./app.run
if step 4 fails with a message including 'permission denied', try entering sudo ./app.run (you will need to enter your password for this).
====================================
How to install tar.gz file on Ubuntu
====================================
Issue
I have downloaded a file with the tar.gz extension. How do I install it?
Solution
$tar -zxvf program.tar.gz
$tar -zjvf program.tar.bz2
Change the directory to unzipped folder, i.e.:
cd /download/program/
./configure
make
sudo make install
if compiler show error
try this
apt-get install libc6-dev g++ gcc c++
apt-get install libc6-dev g++ gcc
sudo apt-get install clang && rvm install 1.9.3 --with-gcc=clang
apt-get install libaprutil1-dev
sudo apt-get install build-essential
0 comments:
Post a Comment