• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Help a Linux Newbie - Installing software

Murpheeee

Diamond Member
Okay, this one is easy.....but I am a Linux newbie

I have downloaded Star Office to install....but can't figure out how to install it. I have a 90MB file called *.bin

So how do I extract it/install it?
 
*bbbzzzztt* wrong! 🙂

At least in this case

To install staroffice, you perform the following steps:

go to the directory where the file is downloaded (this is in a command prompt window inside of the GUI)

"chmod 777 <filename>" where filename is what the .bin file is called
"./filename"

This tells the OS that the file is an executable, and the second command tells the OS to run the file. Then you'll see the staroffice installer program...and all will be fine.

A tar.gz file is generaly a source code distribution of the file. To extract those, you go the directory where it is located in a command prompt and type "tar xvfz <filename>" where filename is the tar.gz file.

EDIT: Whoops! In my haste to type the message, I added a j to my tar command when there should have been a z. My mistake, its fixed now.
 
run

sh filename.bin

replace filename.bin with the actual filename and you will be all set.

for a tar.gz file, run

tar zxvf filename.tar.gz

this will ungzip the file and extract the tar file.
 
Back
Top