From owner-freebsd-questions@FreeBSD.ORG Mon Jan 14 06:06:26 2013 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id F2E7545A for ; Mon, 14 Jan 2013 06:06:25 +0000 (UTC) (envelope-from freebsd-questions@m.gmane.org) Received: from plane.gmane.org (plane.gmane.org [80.91.229.3]) by mx1.freebsd.org (Postfix) with ESMTP id A397436C for ; Mon, 14 Jan 2013 06:06:25 +0000 (UTC) Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1TudBt-0003AL-25 for freebsd-questions@freebsd.org; Mon, 14 Jan 2013 07:06:39 +0100 Received: from 79-139-19-75.prenet.pl ([79.139.19.75]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 14 Jan 2013 07:06:37 +0100 Received: from jb.1234abcd by 79-139-19-75.prenet.pl with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 14 Jan 2013 07:06:37 +0100 X-Injected-Via-Gmane: http://gmane.org/ To: freebsd-questions@freebsd.org From: jb Subject: Re: Reading the handbook from console Date: Mon, 14 Jan 2013 06:06:07 +0000 (UTC) Lines: 31 Message-ID: References: <20130113214801.3ce70c97.freebsd@edvax.de> <201301132258.r0DMwZNi010880@mail.r-bonomi.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Complaints-To: usenet@ger.gmane.org X-Gmane-NNTP-Posting-Host: sea.gmane.org User-Agent: Loom/3.14 (http://gmane.org/) X-Loom-IP: 79.139.19.75 (Mozilla/5.0 (X11; Linux i686; rv:10.0.12) Gecko/20130109 Firefox/10.0.12) X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 14 Jan 2013 06:06:26 -0000 Robert Bonomi mail.r-bonomi.com> writes: > ... > > The is a famous library, svgalib, a "low level console graphics > > library" which can - under _very_ specific circumstances - display > > graphics "on" the text mode console. There are few browsers, > > image viewers and even media players that can use this interface > > to display "console graphics" while _not_ needing X. > ... > Works fine on FreeBSD -- graphics-mode screen-savers (like 'fire') > use it. ... Yes, it is famous indeed ... Is that still valid ? www.svgalib.org/svgalib.user.faq.html ... Why does a programs terminate immediatelly with "svgalib: Cannot get I/O permissions."? svgalib programs need to be run as root. This means that either the user that runs them is root, or, if running by normal users is desirable, the program needs to be 'suid root', which means: the program must be owned by root (chown 0 program) and the suid bit needs to be set (chmod u+s program). ... jb