Sponsored Content
Full Discussion: Problems with Xfree86
Operating Systems BSD Problems with Xfree86 Post 52904 by israel on Tuesday 29th of June 2004 01:20:47 PM
Old 06-29-2004
Computer Problems with Xfree86

Hi to all!
I'm very novice in Unix/Linux.
I installed FreeBSD 4.10 in my pentium II 450mhz 64MB 4.300GB
more than 5 times and the error continues...
In the line mode i type "startx" (to enter in X)...but show me a message :
FATAL SERVER ERROR
NO SCREENS FOUND


X CONNECTION TO :0.0 BROKEN (EXPLICIT KILL OR SERVER SHUTDOWN).
XAUTH: (ARGV):1: BAD DISPLAY NAME "FREEBSD.VISABEL:0" IN "REMOVE" COMMAND

But i've sucess to enter X when iwas installing the system, but now...
Someone help me, because i want too much to enter in the world of Unix/Linux.Smilie

Info of my bsd:
RELEASE DATE: 27 FEBRUARY 2003
X PROTOCOL VERSION 11, REVISION 0, RELEASE 6.6
BUILD OS: FREEBSD 4.10 i386 [ELF]
BUILD DATE 29 APRIL 2004
MODULE LOADER PRESENT


Thanks to all!Smilie
 

9 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

xfree86 configuration

I've been trying to configure XFree86, and the first times that I have, it will only run at 320x? resolution.. I have an ATI card, and I've tried using the /stand/sysinstall graphical configuration method, and I've tried xf86config as well, both render the same results. that was before i... (3 Replies)
Discussion started by: adn
3 Replies

2. Programming

XFree86

So where do we post questions about developing for X? Or do we just not do that here? (2 Replies)
Discussion started by: Gekko
2 Replies

3. UNIX Desktop Questions & Answers

XFREE86 4.2 question

Hi folkss... I just install Freebsd 4.5 mini disk which install only the core FREEBSD system nothing else. I then want to install KDE 3.0 so I install XFREE86 4.2 and I installed both of these programs successfully with pkg_add "filename.tgz" I also install wrapper.tgz for "startx"... (1 Reply)
Discussion started by: helpme2
1 Replies

4. UNIX Desktop Questions & Answers

Installing XFREE86 4.2 question

Hi folksss.. I will ask similiar to my previous post. Have anyone successfully install XFree86 ver. 4.2 on FREEBSD 4.5 from scratch ??? If U do, please provide step by step how U do it. Do U use graphic user interface to setup the hardware configuration or DOS configuration ? I... (2 Replies)
Discussion started by: helpme2
2 Replies

5. UNIX for Dummies Questions & Answers

compiling XFRee86 4.2.0

i am currently trying to compile XFree86 under redhat 7.3. i am used to ./configure make make install, but i know that xfree86 is very different. what are the basic steps for building it. i already have read the documentation, but it wasn't of much help. it was erroring out on the imake. i don't... (1 Reply)
Discussion started by: choasforages
1 Replies

6. UNIX Desktop Questions & Answers

X.Org and XFree86

X.Org just released a new version of their X (X11R6.7). Besides Liscense stuff, what is better about X.org then XFree? What is better about XFree then X.org? Also: Will my fglrx (ATI) or nvidia drivers (designed for XFree86 4.3) work on X.org? (2 Replies)
Discussion started by: punkrockguy318
2 Replies

7. BSD

again XFree86

hi everybody i installed FreeBSD 5.x on a box with a video card Diamond SpeedStar A90 and a Fujitsu Siemens Monitor B772-1 when i do "startx" it gives me something like this: fatal error: no devices detected no screen detected i'm lost...i don't know what to... (3 Replies)
Discussion started by: hmaiida
3 Replies

8. BSD

XFree86 4.5 problem

Hello, i have a S3 Trio64V+ card. I installed last release of XFree under FreeBSD 5.4. I do xf86config, but when i try startx i have this error: nsinternal# startx XFree86 Version 4.5.0 Release Date: 16 March 2005 X Protocol Version 11, Revision 0 Build Operating System: FreeBSD... (1 Reply)
Discussion started by: jamesf
1 Replies

9. UNIX for Advanced & Expert Users

Old XFree86 configuration error

Hello experts, I installed an old linux distribution and i'm having troubles with the XFree86 server. The thing is, when i run XF86Setup, X server and windows actually works, because i can get the graphical configuration screen, but when i'm "done" and save the changes to the config file... (1 Reply)
Discussion started by: semash!
1 Replies
ALTER 
SERVER(7) PostgreSQL 9.2.7 Documentation ALTER SERVER(7) NAME
ALTER_SERVER - change the definition of a foreign server SYNOPSIS
ALTER SERVER name [ VERSION 'new_version' ] [ OPTIONS ( [ ADD | SET | DROP ] option ['value'] [, ... ] ) ] ALTER SERVER name OWNER TO new_owner ALTER SERVER name RENAME TO new_name DESCRIPTION
ALTER SERVER changes the definition of a foreign server. The first form changes the server version string or the generic options of the server (at least one clause is required). The second form changes the owner of the server. To alter the server you must be the owner of the server. Additionally to alter the owner, you must own the server and also be a direct or indirect member of the new owning role, and you must have USAGE privilege on the server's foreign-data wrapper. (Note that superusers satisfy all these criteria automatically.) PARAMETERS
name The name of an existing server. new_version New server version. OPTIONS ( [ ADD | SET | DROP ] option ['value'] [, ... ] ) Change options for the server. ADD, SET, and DROP specify the action to be performed. ADD is assumed if no operation is explicitly specified. Option names must be unique; names and values are also validated using the server's foreign-data wrapper library. new_owner The user name of the new owner of the foreign server. new_name The new name for the foreign server. EXAMPLES
Alter server foo, add connection options: ALTER SERVER foo OPTIONS (host 'foo', dbname 'foodb'); Alter server foo, change version, change host option: ALTER SERVER foo VERSION '8.4' OPTIONS (SET host 'baz'); COMPATIBILITY
ALTER SERVER conforms to ISO/IEC 9075-9 (SQL/MED). The OWNER TO and RENAME forms are PostgreSQL extensions. SEE ALSO
CREATE SERVER (CREATE_SERVER(7)), DROP SERVER (DROP_SERVER(7)) PostgreSQL 9.2.7 2014-02-17 ALTER SERVER(7)
All times are GMT -4. The time now is 02:47 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy