Sponsored Content
Operating Systems Linux Problem with initializing DirectFB by Links Post 60349 by eugrus on Saturday 15th of January 2005 12:13:09 PM
Old 01-15-2005
Question Problem with initializing DirectFB by Links

DirectFB-0.9.20 is compiled --with-gfxdrivers=all
links-2.1pre15 is compiled with --enable-graphics

there is a problem when I am trying to run Links using DirectFB video driver
Quote:
[root@eugrus eugrus]# links -g -driver directfb
(*) parsing config file '/etc/directfbrc'.
(*) Single Application Core. (with MMX support) (2005-01-03 17:23)
(*) DirectFB/misc/memcpy: using MMXEXT optimized memcpy()
(*) DirectFB/InputDevice: IMPS/2 Mouse 0.9 (convergence integrated media GmbH)
(*) DirectFB/InputDevice: Keyboard 0.9 (convergence integrated media GmbH)
(*) MMX detected and enabled
(*) DirectFB/GraphicsDevice: MMX Software Rasterizer 0.6 (convergence integrated media GmbH)
(!) DirectFB/Core/layers: Setting default/last configuration failed!
(!) DirectFB/Core/layers: Failed to enable primary layer!
(!) DirectFB/Core: Could not initialize 'layers' core!
--> Not supported!
(!) DirectFB/core/vt: Unable to disallocate VT!
--> Device or resource busy
(!) DirectFB/Core: Error during initialization (Not supported!)
Could not initialize graphics driver directfb:
Not supported!
may be my DirectFBs config is not right?

Quote:
[eugrus@eugrus eugrus]$ more /etc/directfbrc
system=fbdev
mode=800x600
depth=16
no-banner
hardware
vt-switching
mouse-protocol=MS3
video by framebuffer or X works successfully
 

8 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Problem with Links

Hi, Someone told me that Links where useful in Unix, but when I asked them how, he couldn't tell me... All he told me was, "well you can use hard-link or symbolic link". When I asked him what were the diference, he told me that there is no real difference. Can you please tell enlighten... (3 Replies)
Discussion started by: mischiefdemon
3 Replies

2. OS X (Apple)

Problem changing owner of symbolic links?

Strangely, chown and chmod don't seem to work on symlinks. In particular, I tried this (as root): # touch foo # ln -s foo mysymlink # chown SOMEUSER mysymlink as well as changing the last line to: # chown -h someuser mysymlink where "-h" is supposed to change the UID of the actualy... (1 Reply)
Discussion started by: noahcowan
1 Replies

3. Programming

A challenging problem involving symbolic links.

Hello, I'm working on an application that bridges together several applications involved in creating a video workflow for editing with digital cinema cameras. The main platform is MacOSX. Because of the nature of some of the utilities for working with this video footage I must spoof filenames... (2 Replies)
Discussion started by: ibloom
2 Replies

4. Shell Programming and Scripting

Problem with links programm.

Problem with links programm. Hi! I write sctipt for aytomatic checking into IE stas.html -> <html> <head> <meta http-equiv="content-type" content="text/html; charset=utf-8"/> <script type="text/javascript" src="newdata.submit()"></script> </head> <body... (1 Reply)
Discussion started by: beckss
1 Replies

5. Red Hat

DirectFb installation & accelerator not recognised

Hi, I installed DirectFb on fedora 7, the machine has a Nvidia graphics card. The installation was successful and I can play the examples provided by the Direct fb website, but, I find that the accelarator is not getting recognised. when I do "fbset -i", the details shown are as below, it gives... (0 Replies)
Discussion started by: sifar
0 Replies

6. Ubuntu

How to install Directfb

Hi,, i followed some steps to install Directfb which are below,, tar -xvf DirectFB-1.2.8.tar.gz tar -xvf linux-fusion-8.1.1.tar.gz tar -xvf DirectFB-Examples-1.2.0.tar.gz cd linux-fusion-8.1.1 make && sudo make install sudo su - echo fusion >> /etc/initramfs-tools/modules ... (0 Replies)
Discussion started by: Ravikishore
0 Replies

7. Linux

Error while executing Directfb program on ubuntu

Hi , I am getting error while executing Directfb program on ubuntu ,, my program is : #include <stdio.h> #include <unistd.h> #include <directfb.h> static IDirectFB *dfb = NULL; static IDirectFBSurface *primary = NULL; static int screen_width = 0; static int screen_height... (0 Replies)
Discussion started by: Ravikishore
0 Replies

8. UNIX Desktop Questions & Answers

Difference between opengl es and directfb

i dont know in which forum to ask this question ..... :( . pardon me if it is not this forum i wanted to know difference between openGL ES and directfb as far i know directfb is alternative to x11 in linux for embedded devices. something like ... application | ... (1 Reply)
Discussion started by: alexzander18
1 Replies
SYMLINKS(8)						      System Manager's Manual						       SYMLINKS(8)

NAME
symlinks - symbolic link maintenance utility SYNOPSIS
symlinks [ -cdorstv ] dirlist DESCRIPTION
symlinks is a useful utility for maintainers of FTP sites, CDROMs, and Linux software distributions. It scans directories for symbolic links and lists them on stdout, often revealing flaws in the filesystem tree. Each link is output with a classification of relative, absolute, dangling, messy, lengthy, or other_fs. relative links are those expressed as paths relative to the directory in which the links reside, usually independent of the mount point of the filesystem. absolute links are those given as an absolute path from the root directory as indicated by a leading slash (/). dangling links are those for which the target of the link does not currently exist. This commonly occurs for absolute links when a filesystem is mounted at other than its customary mount point (such as when the normal root filesystem is mounted at /mnt after booting from alternative media). messy links are links which contain unnecessary slashes or dots in the path. These are cleaned up as well when -c is specified. lengthy links are links which use "../" more than necessary in the path (eg. /bin/vi -> ../bin/vim) These are only detected when -s is specified, and are only cleaned up when -c is also specified. other_fs are those links whose target currently resides on a different filesystem from where symlinks was run (most useful with -r ). OPTIONS
-c convert absolute links (within the same filesystem) to relative links. This permits links to maintain their validity regardless of the mount point used for the filesystem -- a desirable setup in most cases. This option also causes any messy links to be cleaned up, and, if -s was also specified, then lengthy links are also shortened. Links affected by -c are prefixed with changed in the output. -d causes dangling links to be removed. -o fix links on other filesystems encountered while recursing. Normally, other filesystems encountered are not modified by symlinks. -r recursively operate on subdirectories within the same filesystem. -s causes lengthy links to be detected. -t is used to test for what symlinks would do if -c were specified, but without really changing anything. -v show all symbolic links. By default, relative links are not shown unless -v is specified. BUGS
symlinks does not recurse or change links across filesystems. AUTHOR
symlinks has been written by Mark Lord <mlord@pobox.com>, the original developer and maintainer of the IDE Performance Package for linux, the Linux IDE Driver subsystem, hdparm, and a current day libata hacker. SEE ALSO
symlink(2) Version 1.4 October 2008 SYMLINKS(8)
All times are GMT -4. The time now is 08:52 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy