PDA

View Full Version : [ubuntu] Don't know how to install a *.bin program in UU9.10



tommark
March 1st, 2010, 01:03 AM
I downloaded a CRM (vtiger), which came as a *.bin program. There are complete instructions on the vtiger site about installation, but I have to be logged in as "root".
I understand that "root" privileges have been excluded from UU910, how do I log is as a root user? typing "su" doesn't do the job. No matter what I try, I get the "~", not the "#".
Thank you.

darkod
March 1st, 2010, 01:07 AM
If the file is meant to be executed, I guess it already has the execute bit on. In that case I believe running from the folder where the file is

sudo bash filename.bin

should do the job.

darkod
March 1st, 2010, 01:08 AM
Another option is:

./filename.bin

(yes, put ./ in front of the name)

But not sure if it works if sudo is needed. Give it a shot.

oldos2er
March 1st, 2010, 01:50 AM
sudo -i will give you a persistent root shell.