From owner-freebsd-questions@FreeBSD.ORG Tue Apr 10 17:13:06 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B18F916A404 for ; Tue, 10 Apr 2007 17:13:06 +0000 (UTC) (envelope-from cptsalek@gmail.com) Received: from mu-out-0910.google.com (mu-out-0910.google.com [209.85.134.187]) by mx1.freebsd.org (Postfix) with ESMTP id 3A2EC13C4C4 for ; Tue, 10 Apr 2007 17:13:06 +0000 (UTC) (envelope-from cptsalek@gmail.com) Received: by mu-out-0910.google.com with SMTP id g7so2530217muf for ; Tue, 10 Apr 2007 10:13:05 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=j6YAvrKGy4evgTJn0hbqvXnbhx9aIzlrYdzW4UzhoIgGwTKrH9BQEgjDsIW9FVIQVGQh8kjWlUVeV9jMpjk9CTbTiiWyZOmOfDue/GZQxob/IVXmKsVs4gWKZnUC5DCxOGQ/48U4yCHhOW6YszkYQcv9olREvlZYd0/qT9naH9s= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=eTy3BXA7O3G6VEigiWt0WWiaLvnLuBkdhwp1xuEmRIm6cNFmMYz7gb5CO/tcP3NtP9QzteOBfMbnj+oLS1sK4la/M6lwE9HIk38Pp91wQJmNbHRRaCF3C/JaRf6zd4EFrpQyOjlvOkM3ditVIVIYRvM9wFobRDVYVo7p7jGZEvQ= Received: by 10.82.120.14 with SMTP id s14mr9754252buc.1176225184798; Tue, 10 Apr 2007 10:13:04 -0700 (PDT) Received: by 10.82.158.7 with HTTP; Tue, 10 Apr 2007 10:13:04 -0700 (PDT) Message-ID: <14989d6e0704101013u515b8c6ag2a1d40816015784@mail.gmail.com> Date: Tue, 10 Apr 2007 17:13:04 +0000 From: "Christian Walther" To: "h t" In-Reply-To: <772773.94439.qm@web15906.mail.cnb.yahoo.com> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <772773.94439.qm@web15906.mail.cnb.yahoo.com> Cc: freebsd-questions@freebsd.org Subject: Re: Binary file not executable X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Apr 2007 17:13:06 -0000 On 10/04/07, h t wrote: > I'm freebsd beginner > I Download RealPlayer10GOLD.bin from http://www.real.com/linux/ > then chmod +x RealPlayer10GOLD.bin > run > ./RealPlayer10GOLD.bin > but broken > the message is > > ELF binary type "0" not known. > ./RealPlayer10GOLD.bin: Exec format error. Binary file not executable. As it says in the URL where you downloaded the Realplayer from, it's for Linux. But FreeBSD is not Linux. There is a Linux Emulation Layer available that allows you to execute Linux binaries. You can do a # kldload linux to enable it. But you'll need to install some additional stuff, because Linux application will need Linux libraries... > > How can I do this? > Not install in port Realplayer is in Ports: # cd /usr/ports # make search name=realplayer Port: linux-realplayer-10.0.8.805.20060718 Path: /usr/ports/multimedia/linux-realplayer Info: Linux RealPlayer 10 from RealNetworks Maint: multimedia@FreeBSD.org B-deps: R-deps: linux-atk-1.9.1 linux-expat-1.95.8 linux-fontconfig-2.2.3_6 linux-glib2-2.6.6 linux-gtk2-2.6.10 linux-jpeg-6b.34 linux-pango-1.8.1 linux-png-1.2.8_2 linux-tiff-3.7.1 linux-xorg-libs-6.8.2_5 linux_base-fc-4_9 WWW: https://player.helixcommunity.org/ AFAIK Realplayer GOLD is not freely available, you'll have to pay for it. HTH Christian