Re: X11 problem

2010-06-24 Thread Jack L.
On Tue, Jun 22, 2010 at 12:00 PM, Maciej Suszko  wrote:
> Gary Kline  wrote:
>>
>> guys,
>> what do i need to rebuild to fix this problem to get X working on my
>> server::
>>
>>
>> ethic# startx
>> xauth:  creating new authority file /root/.serverauth.1054
>>
>> /libexec/ld-elf.so.1: Shared object "libhal.so.1" not found, required
>> by "X" giving up.
>> xinit:  No such file or directory (errno 2):  unable to connect to X
>> server
>> xinit:  No such process (errno 3):  Server error.
>> ethic#
>
Or just reinstall hal
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"


Re: X11 problem

2010-06-22 Thread Maciej Suszko
Gary Kline  wrote:
> 
> guys,
> what do i need to rebuild to fix this problem to get X working on my
> server::
> 
> 
> ethic# startx
> xauth:  creating new authority file /root/.serverauth.1054
> 
> /libexec/ld-elf.so.1: Shared object "libhal.so.1" not found, required
> by "X" giving up.
> xinit:  No such file or directory (errno 2):  unable to connect to X
> server
> xinit:  No such process (errno 3):  Server error.
> ethic# 

You can use ldd to find binaries/libraries linked against nonexistent
libs:

find /usr/local -type f | xargs ldd

then check the output for "not found" string, find the file origin with
pkg_info -W /path/to/file, finally rebuild the package.
-- 
regards, Maciej Suszko.


signature.asc
Description: PGP signature


Re: X11 problem

2010-06-22 Thread Glen Barber

On 6/22/10 2:39 PM, Gary Kline wrote:


guys,
what do i need to rebuild to fix this problem to get X working on my
server::


ethic# startx
xauth:  creating new authority file /root/.serverauth.1054

/libexec/ld-elf.so.1: Shared object "libhal.so.1" not found, required by "X"
giving up.


Have you tried rebuilding sysutils/hal?

Regards,

--
Glen Barber
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"


Re: X11 problem

2010-06-22 Thread Dan Nelson
In the last episode (Jun 22), Gary Kline said:
> 
> guys,
> what do i need to rebuild to fix this problem to get X working on my
> server::
> 
> ethic# startx
> xauth:  creating new authority file /root/.serverauth.1054
> 
> /libexec/ld-elf.so.1: Shared object "libhal.so.1" not found, required by "X" 
> giving up.
> xinit:  No such file or directory (errno 2):  unable to connect to X server
> xinit:  No such process (errno 3):  Server error.
> ethic# 

Looks like you buid X with hal support, then deleted hal.  Either install
port/sysutils/hal, or run "make config" in ports/x11-servers/xorg-server,
uncheck hal support, and reinstall.

-- 
Dan Nelson
dnel...@allantgroup.com
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"