PDA

View Full Version : [ubuntu] Archive manager won't read .bin files



Eldar11
December 22nd, 2008, 04:38 PM
where can I get the implementaion to be able to use .bin files to intall software?

theozzlives
December 22nd, 2008, 04:42 PM
where can I get the implementaion to be able to use .bin files to intall software?

.bin files are kinda like .iso files. I use Power ISO, I don't know if it'll run under wine.

taurus
December 22nd, 2008, 04:45 PM
You can run it from a terminal. Assuming you have saved it to your desktop,

Applications -> Accessories -> Terminal

cd ~/Desktop
chmod +x filename.bin
./filename.bin
-or-
sudo ./filename.bin <-- If you need root privilege

Eldar11
December 22nd, 2008, 04:47 PM
see well normally and with all the other systems I've worked with, the archive manager just opens the .bin no problem. I don't know whats going on, but I know I don't need to use wine to do that. To install wine itself I would need to un-archive a .bin file so I'd be stuck anyway.

Eldar11
December 22nd, 2008, 05:21 PM
ah thanks taurus!

snova
December 23rd, 2008, 12:00 AM
To install wine itself I would need to un-archive a .bin file so I'd be stuck anyway.

That shouldn't be necessary. It's in the repositories.

Eldar11
December 23rd, 2008, 12:07 AM
how would I access these repositories?

taurus
December 23rd, 2008, 12:11 AM
If you want to install wine, try running these commands from a terminal.


sudo apt-get update
sudo apt-get install wine
Once it's installed, you need to configure it before you can use it.


winecfg

Eldar11
December 23rd, 2008, 12:13 AM
sweet thanks! i'll do that

Eldar11
December 23rd, 2008, 12:17 AM
when I said to install wine using that command, it gave me this error:

ryan@ubuntu:~/Desktop$ sudo apt-get install wine
Reading package lists... Done
Building dependency tree
Reading state information... Done
Package wine is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source
E: Package wine has no installation candidate

igknighted
December 23rd, 2008, 12:18 AM
when I said to install wine using that command, it gave me this error:

ryan@ubuntu:~/Desktop$ sudo apt-get install wine
Reading package lists... Done
Building dependency tree
Reading state information... Done
Package wine is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source
E: Package wine has no installation candidate

Can you post the results of the command "cat /etc/apt/sources.list"? I think you don't have all of the repositories enabled, this should show which ones they might be.

taurus
December 23rd, 2008, 12:21 AM
Go to System -> Administration -> Synaptic Package Manager -> Settings -> Repositories and make sure there is a check mark for the first four lines (not the Source code). Then, go to Third Party Software and put a check mark on the first line. Click Close and Reload. Now in Quick Search, type wine and install it from there.

snova
December 23rd, 2008, 12:21 AM
Open System -> Administration -> Synaptic Package Manager. Settings -> Repositories, and make sure the second box is ticked (universe). Then press the Reload button, and try again.

Eldar11
December 23rd, 2008, 12:33 AM
Ah ha! There we go! That did the trick, thanks so much.