On Thu, 12 May 2011 13:10:55 +0200, Andy Wodfer <wod...@gmail.com> wrote:
> How do I install a .bin file on FreeBSD? I'm used to makefiles etc.

First off all, check _what_ kind of file it is.

        % file <filename>

If it's a Bourne shell script, run

        % sh <filename>

If it's a binary that runs on FreeBSD, run

        % chmod +x <filename>
        % ./<filename>

The .bin seems to indicate that it is a binary file,
so the 3rd method mentioned should apply. If you need
root privileges for the installation process, use su
or sudo / super / ... according to your preferences.



-- 
Polytropon
Magdeburg, Germany
Happy FreeBSD user since 4.0
Andra moi ennepe, Mousa, ...
_______________________________________________
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"

Reply via email to