From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.org/gmane.linux.lib.musl.general/9942 Path: news.gmane.org!not-for-mail From: Natanael Copa Newsgroups: gmane.linux.lib.musl.general Subject: Re: tor web-browser doesn't work on musl Date: Mon, 25 Apr 2016 11:45:47 +0200 Message-ID: <20160425114547.36d5dc77@ncopa-desktop.alpinelinux.org> References: Reply-To: musl@lists.openwall.com NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Trace: ger.gmane.org 1461577579 23201 80.91.229.3 (25 Apr 2016 09:46:19 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Mon, 25 Apr 2016 09:46:19 +0000 (UTC) Cc: musl@lists.openwall.com To: Daniel Simon Original-X-From: musl-return-9955-gllmg-musl=m.gmane.org@lists.openwall.com Mon Apr 25 11:46:11 2016 Return-path: Envelope-to: gllmg-musl@m.gmane.org Original-Received: from mother.openwall.net ([195.42.179.200]) by plane.gmane.org with smtp (Exim 4.69) (envelope-from ) id 1aud5l-0000jy-QT for gllmg-musl@m.gmane.org; Mon, 25 Apr 2016 11:46:09 +0200 Original-Received: (qmail 30111 invoked by uid 550); 25 Apr 2016 09:46:06 -0000 Mailing-List: contact musl-help@lists.openwall.com; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-ID: Original-Received: (qmail 30093 invoked from network); 25 Apr 2016 09:46:05 -0000 In-Reply-To: X-Mailer: Claws Mail 3.13.2 (GTK+ 2.24.28; x86_64-alpine-linux-musl) Xref: news.gmane.org gmane.linux.lib.musl.general:9942 Archived-At: On Sun, 24 Apr 2016 11:01:12 -0300 Daniel Simon wrote: > Hi, I face a bug when running tor-web-browser from my new system that uses musl. > > 1) wget https://www.torproject.org/dist/torbrowser/5.5.4/tor-browser-linux64-5.5.4_en-US.tar.xz > 2) tar zxvf ./tor-browser-linux64-5.5.4_en-US.tar.xz > 3) cd tor-browser-linux64-5.5.4_en-US > 4) ./start-tor-browser.desktop > > EXPECTED: tor web browser launches as it does on glibc systems > WHAT HAPPENS: Nothing > > I assume there is a fix... > Thank you very much. You can not really expect a precompiled binary that is linked against glibc work on a musl libc system. There are 3 possible solutions: - run the pre-compiled binary on a glibc system - ask the tor browser developers to provide a binary built with musl libc - build it from source yourself -nc